Skip to content

Commit

Permalink
Bump to 9.1 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
F1rrel authored Apr 2, 2023
1 parent efd9132 commit 71d7bae
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 152 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ BaNaNaS: https://bananas.openttd.org/package/game-script/52455649
## Translations
Currently available languages:
- English
- French (rmnvgr)
- French (rmnvgr, Elarcis)
- Slovak
- Czech
- Simplified Chinese (SuperCirno)
- Polish (qamil95)
- Galician (pvillaverde)
- German (pnkrtz)
- Japanese (fmang)

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.

Expand All @@ -54,4 +55,6 @@ Thanks to contributors:
- qamil95
- 2TallTyler
- pvillaverde
- pnkrtz
- pnkrtz
- fmang
- Elarcis
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 9.1 (2023/04/02)
- new: Japanese translation (fmang)
- mod: Updated french translation (Elarcis)
- mod: Updated slovak and czech translations
- fix: STR_SB_WELCOME_LIMIT_GROWTH_DELAY substitution (fmang)
- fix: Is raw cargo categorization

Version 9.0 (2023/02/11)
- new: German translation (pnkrtz)
- new: Probability to use nearby cargo types
Expand Down
8 changes: 4 additions & 4 deletions info.nut
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ class MainClass extends GSInfo

AddSetting({ name = "cargo_randomization",
description = "Randomization: Type",
easy_value = 7,
medium_value = 2,
hard_value = 4,
custom_value = 11,
easy_value = 1,
medium_value = 7,
hard_value = 10,
custom_value = 10,
flags = CONFIG_INGAME, min_value = 1, max_value = 15 });
AddLabels("cargo_randomization", {
_1 = "None",
Expand Down
71 changes: 0 additions & 71 deletions lang.txt

This file was deleted.

71 changes: 0 additions & 71 deletions lang_files/simplified_chinese.txt

This file was deleted.

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.0
Version: 9.1

Usefull URL's:
- forum topic: https://www.tt-forums.net/viewtopic.php?f=65&t=87052
Expand Down Expand Up @@ -298,6 +298,8 @@ Contributors:
- 2TallTyler
- pvillaverde
- pnkrtz
- fmang
- Elarcis

6. FAQ

Expand Down
6 changes: 3 additions & 3 deletions version.nut
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SELF_VERSION <- 90 // integer version of the GS, needs to be increased with each release
SELF_VERSION <- 91 // 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 <- 0 // minor version of the GS, incremental subreleases of the major version, saveload compatible
SELF_DATE <- "2023-02-11" // release date
SELF_MINORVERSION <- 1 // minor version of the GS, incremental subreleases of the major version, saveload compatible
SELF_DATE <- "2023-04-02" // release date
SELF_MAX_TOWNS <- 1400 // maximum number of towns that can be successfully saved in this release

0 comments on commit 71d7bae

Please sign in to comment.