- 
Fly and FLYING_MOVEMENT still not work. As I remember they were turned off for vcmi 0.95. Are they buggy? Or just forgotten to be turned back? 
- 
Spells are remade in animation part. I hoped there will be summon spells modding, but there is none, still. 
- 
I also hoped for adventure spells to be added. I looked and it is as it was earlier. 
Still great release.
PS As for adventure spells, I hope to see spells adding hero bonuses for map (with duration to end of the day for example).
I have Army Haste spell buy which I test availability of Adv. map spells:
{
	"armyHaste":
	{
		"type": "adventure", 
		"name": "Army Haste",
		"school":
		{
			"air": true,
			"earth": false,
			"fire": false,
			"water": false
		},
		"level": 2,
		"power": 10,
		
		"defaultGainChance": 3, 
		"gainChance":
		{
			"castle": 5
		},
 
	
 
		"flags" : {"indifferent": true},
 
		//graphics - OPTIONAL; object;
		"graphics":
		{
			"iconBook": "FlyingBoots/back0.bmp",
			"iconScroll": "FlyingBoots/back1.bmp",
			"iconScenarioBonus": "FlyingBoots/back2.bmp",
			"iconEffect": "FlyingBoots/back3.bmp"
		},
		
		"targetType": "HERO",
 
		"levels":
		{
			"none":
			{
				"description": "Gives hero +1 land movement",
	 
				"cost": 8,
				"power": 10,
				"aiValue": 5,
				"range": "X",
	
				"targetModifier":{"smart":true},
	 
				"effects":
				{
					"attacks":
					{
						"type": "LAND_MOVEMENT",
						"val": 100,
						"duration": "ONE_DAY",
						"propagator":"HERO"
					}
				}
			},
			"basic":
			{
				"description": "Gives hero +1 land movement",
	 
				"cost": 8,
				"power": 10,
				"aiValue": 5,
				"range": "X",
	
				"targetModifier":{"smart":true},
	 
				"effects":
				{
					"attacks":
					{
						"type": "LAND_MOVEMENT",
						"val": 100,
						"duration": "ONE_DAY",
						"propagator":"HERO"
					}
				}
			},
			"advanced":
			{
				"description": "Gives hero +2 land movement",
	 
				"cost": 9,
				"power": 10,
				"aiValue": 5,
				"range": "X",
	
				"targetModifier":{"smart":true},
	 
				"effects":
				{
					"attacks":
					{
						"type": "LAND_MOVEMENT",
						"val": 200,
						"duration": "ONE_DAY",
						"propagator":"HERO"
					}
				}
			},
			"expert":
			{
				"description": "Gives hero +3 land movement",
	 
				"cost": 10,
				"power": 10,
				"aiValue": 5,
				"range": "X",
	
				"targetModifier":{"smart":true},
	 
				"effects":
				{
					"attacks":
					{
						"type": "LAND_MOVEMENT",
						"val": 300,
						"duration": "ONE_DAY",
						"propagator":"HERO"
					}
				}
			}
		}
	}
 
}