diff --git a/CHANGELOG.md b/CHANGELOG.md index f28932e95..57533fdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,30 @@ This changelog includes all versions and major variants of the mod going all the > Date format: dd/mm/yyyy +#### TM:PE V[11.7.4.0](https://github.com/CitiesSkylinesMods/TMPE/compare/11.7.3.0...11.7.3.1) STABLE, 22/03/2022 + +- [Meta] Compatibility patch for the game update 1.16.1-f2 +- [New] Prevent the user from setting invalid Lane Arrows, update arrows if lane connections exist #368, #1724 (krzychu124) +- [Fixed] Mouse wheel scroll is changing values if dropdown popup is closed #1733 (krzychu124) +- [Fixed] Building Color change performance improvements #1725 (krzychu124) +- [Fixed] Reduced memory pressure/garbage generation in simulation critical paths #1731 (krzychu124) +- [Updated] Translation update for Arabic, Czech, English, French, Indonesian Italian, Korean, Polish, Portuguese, Romanian, Spanish, Thai, Turkish and Ukrainian +- [Updated] Minor improvements in storing mod default values #1702 (kianzarrin) +- [Mod] Improved compatibility with More Path Units +- [Steam] [TM:PE v11 STABLE](https://steamcommunity.com/sharedfiles/filedetails/?id=1637663252) + +#### TM:PE V11.7.4.0 TEST, 22/03/2022 + +- [Meta] Compatibility patch for the game update 1.16.1-f2 +- [New] Prevent the user from setting invalid Lane Arrows, update arrows if lane connections exist #368, #1724 (krzychu124) +- [Fixed] Mouse wheel scroll is changing values if dropdown popup is closed #1733 (krzychu124) +- [Fixed] Building Color change performance improvements #1725 (krzychu124) +- [Fixed] Reduced memory pressure/garbage generation in simulation critical paths #1731 (krzychu124) +- [Updated] Translation update for Arabic, Czech, English, French, Indonesian Italian, Korean, Polish, Portuguese, Romanian, Spanish, Thai, Turkish and Ukrainian +- [Updated] Minor improvements in storing mod default values #1702 (kianzarrin) +- [Mod] Improved compatibility with More Path Units +- [Steam] [TM:PE v11 TEST](https://steamcommunity.com/sharedfiles/filedetails/?id=2489276785) + #### TM:PE V[11.7.3.1](https://github.com/CitiesSkylinesMods/TMPE/compare/11.7.3.0...11.7.3.1) STABLE, 23/12/2022 - [Fixed] Partial detection of Bank vans as service vehicles (krzychu124) diff --git a/README.md b/README.md index 47401d08b..3750966a3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Report a Bug

- + @@ -30,6 +30,7 @@ ## Releases + - [TM:PE v11 STABLE](https://steamcommunity.com/sharedfiles/filedetails/?id=1637663252) (fully tested releases) - [TM:PE v11 TEST](https://steamcommunity.com/sharedfiles/filedetails/?id=2489276785) (latest beta test releases) - [Download Binaries](https://github.com/CitiesSkylinesMods/TMPE/releases) (for non-Steam users) diff --git a/TLM/SharedAssemblyInfo.cs b/TLM/SharedAssemblyInfo.cs index b7a4568a5..50ad677fb 100644 --- a/TLM/SharedAssemblyInfo.cs +++ b/TLM/SharedAssemblyInfo.cs @@ -20,4 +20,4 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("11.7.3.*")] +[assembly: AssemblyVersion("11.7.4.*")] diff --git a/TLM/TLM/Resources/whats_new.txt b/TLM/TLM/Resources/whats_new.txt index 80316d931..a0b1155cb 100644 --- a/TLM/TLM/Resources/whats_new.txt +++ b/TLM/TLM/Resources/whats_new.txt @@ -1,6 +1,13 @@ -[Version] 11.7.3.1 -[Released] Dec 23th 2022 -[Link] tmpe-v11731-stable-23122022 +[Version] 11.7.4.0 +[Released] Mar 22nd 2023 +[Link] tmpe-v11740-stable-22032023 [Stable] -[Fixed] Partial detection of Bank vans as service vehicle +[Meta] Compatibility patch for the game update 1.16.1-f2 +[New] Prevent the user from setting invalid Lane Arrows, update arrows if lane connections exist #368 #1724 (krzychu124) +[Fixed] Mouse wheel scroll is changing values if dropdown popup is closed #1733 (krzychu124) +[Fixed] Building Color change performance improvements #1725 (krzychu124) +[Fixed] Reduced memory pressure/garbage generation in simulation critical paths #1731 (krzychu124) +[Updated] Translation update for Arabic, Czech, English, French, Indonesian Italian, Korean, Polish, Portuguese, Romanian, Spanish, Thai, Turkish and Ukrainian +[Updated] Minor improvements in storing mod default values #1702 (kianzarrin) +[Mod] Improved compatibility with More Path Units [/Version] \ No newline at end of file diff --git a/TLM/TLM/UI/WhatsNew/WhatsNew.cs b/TLM/TLM/UI/WhatsNew/WhatsNew.cs index 58c18d521..d5e982f50 100644 --- a/TLM/TLM/UI/WhatsNew/WhatsNew.cs +++ b/TLM/TLM/UI/WhatsNew/WhatsNew.cs @@ -11,7 +11,7 @@ namespace TrafficManager.UI.WhatsNew { public class WhatsNew { // bump and update what's new changelogs when new features added - public static readonly Version CurrentVersion = new Version(11,7,3,1); + public static readonly Version CurrentVersion = new Version(11,7,4,0); private const string WHATS_NEW_FILE = "whats_new.txt"; private const string RESOURCES_PREFIX = "TrafficManager.Resources."; diff --git a/TLM/TLM/Util/VersionUtil.cs b/TLM/TLM/Util/VersionUtil.cs index 8e0bd27ac..e418f1a8f 100644 --- a/TLM/TLM/Util/VersionUtil.cs +++ b/TLM/TLM/Util/VersionUtil.cs @@ -35,10 +35,10 @@ public static class VersionUtil { // we could alternatively use BuildConfig.APPLICATION_VERSION because const values are evaluated at compile time. // but I have decided not to do this because I don't want this to happen automatically with a rebuild if // CS updates. these values should be changed manually so as to force us to acknowledge that they have changed. - public const uint EXPECTED_GAME_VERSION_U = 201450256U; + public const uint EXPECTED_GAME_VERSION_U = 201581072U; // see comments for EXPECTED_GAME_VERSION_U. - public static Version ExpectedGameVersion => new Version(1, 16, 0, 3); + public static Version ExpectedGameVersion => new Version(1, 16, 1, 2); public static string ExpectedGameVersionString => BuildConfig.VersionToString(EXPECTED_GAME_VERSION_U, false);