diff --git a/README.md b/README.md index cdbd327..32517dd 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ BaNaNaS: https://bananas.openttd.org/package/game-script/52455649 ## Requirements -- OpenTTD, v. 1.10.x or newer. +- OpenTTD, v. 12.x or newer. - GS SuperLib v. 40, ToyLib v. 1, Script Communication for GS v. 45 (you can find it on BaNaNaS, also accessible through OTTD's "Online Content"). - Industry sets: you can use any industry NewGRF @@ -31,8 +31,9 @@ Currently available languages: - German (pnkrtz) - Japanese (fmang) - Traditional Chinese (WenSimEHRP) +- Russian (Shkarlatov) -If you want to contribute to a translation, you can do it by modifying a file [english.txt](lang/english.txt) and posting it to the forum topic or creating a new issue/pull request with this file included. +If you want to contribute to a translation, you can do it by modifying a file [english.txt](lang/english.txt) and posting it to the forum topic or creating a new issue/pull request with this file included. All instances of `{STRING[number]}` need to be replaced by `{STRING}` in all other languages. ## License @@ -60,4 +61,6 @@ Thanks to contributors: - fmang - Elarcis - lezzano000 -- WenSimEHRP \ No newline at end of file +- WenSimEHRP +- Shkarlatov +- JGRennison \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index 94395c2..baa2267 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,12 @@ *** Renewed Village Growth GS Changelog *** +Version 10.0 (2024/05/12) +- new: Russian translation (Shkarlatov) +- mod: Improve performance of GetNearbyIndustriesToTowns (JGRennison) +- mod: Growth label based on timekeeping +- mod: Optimized save/load functions, now 2000 towns can be on the map +- fix: Misspelling of "Passenger" in subsidy type setting (2TallTyler) + Version 9.3 (2023/12/03) - new: Traditional Chinese translation (WenSimEHRP) - new: OTIS 05 support (lezzano000) diff --git a/readme.txt b/readme.txt index 4d04441..41f18ce 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ * A GameScript for OpenTTD * ****************************** -Version: 9.3 +Version: 10.0 Usefull URL's: - forum topic: https://www.tt-forums.net/viewtopic.php?f=65&t=87052 @@ -302,6 +302,8 @@ Contributors: - Elarcis - lezzano000 - WenSimEHRP +- Shkarlatov +- JGRennison 6. FAQ diff --git a/version.nut b/version.nut index 28841b9..f02edd2 100644 --- a/version.nut +++ b/version.nut @@ -1,6 +1,6 @@ -SELF_VERSION <- 93 // integer version of the GS, needs to be increased with each release -SELF_MINLOADVERSION <- 90 // minimum integer version of GS that can load this version, increased when major version is increased -SELF_MAJORVERSION <- 9 // main version of the GS, releases with same major version should be saveload compatible -SELF_MINORVERSION <- 3 // minor version of the GS, incremental subreleases of the major version, saveload compatible -SELF_DATE <- "2023-12-03" // release date +SELF_VERSION <- 100 // integer version of the GS, needs to be increased with each release +SELF_MINLOADVERSION <- 100 // minimum integer version of GS that can load this version, increased when major version is increased +SELF_MAJORVERSION <- 10 // main version of the GS, releases with same major version should be saveload compatible +SELF_MINORVERSION <- 0 // minor version of the GS, incremental subreleases of the major version, saveload compatible +SELF_DATE <- "2024-05-12" // release date [YYYY-MM-DD] SELF_MAX_TOWNS <- 2000 // maximum number of towns that can be successfully saved in this release \ No newline at end of file