From c75e39405282928491e0f1a01319bea4ef50b721 Mon Sep 17 00:00:00 2001 From: krzychu124 Date: Fri, 23 Dec 2022 20:54:39 +0100 Subject: [PATCH] Changelog, what's new panel update, version bump (cherry picked from commit 0599ee30e2ddeba288978ba1cdaf4e0ed9152d98) --- CHANGELOG.md | 10 ++++++++++ TLM/TLM/Resources/whats_new.txt | 14 ++++---------- TLM/TLM/UI/WhatsNew/WhatsNew.cs | 2 +- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0442515fc..f28932e95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,16 @@ This changelog includes all versions and major variants of the mod going all the > Date format: dd/mm/yyyy +#### 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) +- [Steam] [TM:PE v11 STABLE](https://steamcommunity.com/sharedfiles/filedetails/?id=1637663252) + +#### TM:PE V11.7.3.1 TEST, 23/12/2022 + +- [Fixed] Partial detection of Bank vans as service vehicles (krzychu124) +- [Steam] [TM:PE v11 TEST](https://steamcommunity.com/sharedfiles/filedetails/?id=2489276785) + #### TM:PE V[11.7.3.0](https://github.com/CitiesSkylinesMods/TMPE/compare/11.7.2.0...11.7.3.0) STABLE, 13/12/2022 - [Meta] Compatibility patch for the game update 1.16.0-f3 (krzychu124) diff --git a/TLM/TLM/Resources/whats_new.txt b/TLM/TLM/Resources/whats_new.txt index 919312d54..80316d931 100644 --- a/TLM/TLM/Resources/whats_new.txt +++ b/TLM/TLM/Resources/whats_new.txt @@ -1,12 +1,6 @@ -[Version] 11.7.3.0 -[Released] Dec 13th 2022 -[Link] tmpe-v11730-stable-13122022 +[Version] 11.7.3.1 +[Released] Dec 23th 2022 +[Link] tmpe-v11731-stable-23122022 [Stable] -[Meta] Compatibility patch for the game update 1.16.0-f3 (krzychu124) -[New] Improved bus/trolleybus stop path (pull to side earlier and use more of available space) #1688, #1690 (kianzarrin) -[Fixed] Cargo truck pathfinding via CargoVehicle networks (cargo stations/terminals) #1701, #1703 (krzychu124) -[Fixed] Lane connector on overlapping lanes #1706 (kianzarrin) -[Fixed] Parking signs on lanes with bus stop #1707 (kianzarrin) -[Updated] Minor changes in debug tools #1696, #1697 (kianzarrin) -[Updated] TMPE API Updates compatibility with other mods #1689 #1692 (kianzarrin) +[Fixed] Partial detection of Bank vans as service vehicle [/Version] \ No newline at end of file diff --git a/TLM/TLM/UI/WhatsNew/WhatsNew.cs b/TLM/TLM/UI/WhatsNew/WhatsNew.cs index a73e2ee1c..58c18d521 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,0); + public static readonly Version CurrentVersion = new Version(11,7,3,1); private const string WHATS_NEW_FILE = "whats_new.txt"; private const string RESOURCES_PREFIX = "TrafficManager.Resources.";