فهرست منبع

Increment vcmi version

nordsoft 3 سال پیش
والد
کامیت
2c7198a01a
2فایلهای تغییر یافته به همراه20 افزوده شده و 2 حذف شده
  1. 19 1
      ChangeLog
  2. 1 1
      lib/GameConstants.cpp

+ 19 - 1
ChangeLog

@@ -1,4 +1,22 @@
-0.99 -> 1.0
+1.0.0 -> 1.1.0
+
+GENERAL:
+* Mods and their versions and serialized into save files. Game checks mod compatibility before loading
+* Logs are stored in system default logs directory
+* LUA/ERM libs are not compiled by default
+* FFMpeg dependency is optional now
+
+MODS:
+* Supported rewardable objects customization
+* Battleground obstacles are extendable now with VLC mechanism
+* Introduced "compatibility" section into mods settings
+
+LAUNCHER:
+* Fixed problem with duplicated mods in the list
+* Launcher shows compatible mods only
+* Uninstall button was moved to the left of layout
+
+0.99 -> 1.0.0
 
 GENERAL:
 * Spectator mode was implemented through command-line options

+ 1 - 1
lib/GameConstants.cpp

@@ -52,7 +52,7 @@ const TeamID TeamID::NO_TEAM = TeamID(255);
 namespace GameConstants
 {
 	const int VCMI_VERSION_MAJOR = 1;
-	const int VCMI_VERSION_MINOR = 0;
+	const int VCMI_VERSION_MINOR = 1;
 	const int VCMI_VERSION_PATCH = 0;
 
 	const std::string VCMI_VERSION_STRING = std::to_string(VCMI_VERSION_MAJOR) + "." +