1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-21 19:19:26 +02:00

Preparation for 1.3.2 release

This commit is contained in:
Ivan Savenko 2023-09-08 15:19:08 +03:00
parent e2e4168966
commit 115c30f42c
4 changed files with 45 additions and 2 deletions

View File

@ -1,3 +1,45 @@
# 1.3.1 -> 1.3.2
### GENERAL
* VCMI now uses new application icon
* Fixed freeze in Launcher on repository checkout and on mod install
* Added option to open hero backpack window in hero screen
* Context popup for adventure map monsters will now show creature icon
* It is no longer possible to stop movement while moving over water with Water Walk
* Fixed crash on loading VCMI map with placed Abandoned Mine
* Fixed crash on loading VCMI map with neutral towns
* Fixed crash on attempting to visit unknown object, such as Market of Time
* Added "vcmiartifacts angelWings" form to "give artifacts" cheat
### CAMPAIGNS
* Fixed reorderging of hero primary skills after moving to next scenario in campaigns
### BATTLES
* Fixed invisible creatures from SUMMON_GUARDIANS bonus
* Added option to toggle spell usage by AI in quick combat
* Fixed updating of spell point of enemy hero in game interface after spell cast
* Fixed wrong creature spellcasting shortcut (now set to "F")
* It is now possible to perform melee attack by creatures with spells, especially area spells
* Right-click will now properly end spellcast mode
* Fixed crash on attempting to teleport unit that is immune to a spell
* Fixed cursor preview when casting spell using touchscreen
* Long tap during spell casting will now properly abort the spell
### INTERFACE
* Added "Fill all empty slots with 1 creature" option to radial wheel in garrison windows
* Fixed incorrect display of number of owned Sawmills in Kingdom Overview window
* Fixed incorrect color of resource bar in hotseat mode
* Add yellow border to selected commander grandmaster ability
* Always use bonus description for commander abilities instead of not provided wog-specific translation
* Fix scrolling when commander has large number of grandmaster abilities
* Fixed corrupted message on another player defeat
* Fixed unavailable Quest Log button on maps with quests
* Fixed incorrect values on a difficulty selector in save load screen
* Removed invalid error message on attempting to move non-existing unit in exchange window
### RANDOM MAP GENERATOR:
* Fixed bug leading to unreachable resources around mines
# 1.3.0 -> 1.3.1
### GENERAL:

View File

@ -10,7 +10,7 @@ android {
applicationId "is.xyz.vcmi"
minSdk 19
targetSdk 33
versionCode 1310
versionCode 1320
versionName "1.3.1"
setProperty("archivesBaseName", "vcmi")
}

View File

@ -1,6 +1,6 @@
set(VCMI_VERSION_MAJOR 1)
set(VCMI_VERSION_MINOR 3)
set(VCMI_VERSION_PATCH 1)
set(VCMI_VERSION_PATCH 2)
add_definitions(
-DVCMI_VERSION_MAJOR=${VCMI_VERSION_MAJOR}
-DVCMI_VERSION_MINOR=${VCMI_VERSION_MINOR}

View File

@ -51,6 +51,7 @@
<category>StrategyGame</category>
</categories>
<releases>
<release version="1.3.2" date="2023-09-15" />
<release version="1.3.1" date="2023-08-18" />
<release version="1.3.0" date="2023-08-04" />
<release version="1.2.1" date="2023-04-28" />