Skip to content

Commit

Permalink
Bump to 10.0 (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
F1rrel authored May 12, 2024
1 parent 30ca3f2 commit 8078579
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -60,4 +61,6 @@ Thanks to contributors:
- fmang
- Elarcis
- lezzano000
- WenSimEHRP
- WenSimEHRP
- Shkarlatov
- JGRennison
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 3 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -302,6 +302,8 @@ Contributors:
- Elarcis
- lezzano000
- WenSimEHRP
- Shkarlatov
- JGRennison

6. FAQ

Expand Down
10 changes: 5 additions & 5 deletions version.nut
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8078579

Please sign in to comment.