Skip to content

Commit 34e5524

Browse files
committed
Codechange: Version bumps and documentation updates for v0.4
1 parent 0b86b63 commit 34e5524

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44
Base set:
55
* 4x zoom trees for normal climates, including improved growth/death stages.
66
* 4x zoom tree/plantation industries.
7-
* Improved pixel art detailing of terrain.
7+
* 4x zoom improved pixel art detailing of terrain.
88
* Improved maglev level crossings.
99
* Various bug fixes.
1010

1111
NewGRFs:
1212
* New standalone trees NewGRF.
1313

14+
Known issues:
15+
* If you're using a nightly, make sure you're using one from later than 29/10/2023, otherwise all climates will end up looking like temperate!
16+
1417
## v0.3
1518
Base set:
1619
* Baseset parameters, for baseset parameter support when OpenTTD 14.0 arrives.

baseset/baseset_generate_obg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def pad(string, length, character=" ", pad_left=True):
5252
pad_length = 12
5353
obg.write(pad("name", pad_length, pad_left=False) + "= OpenGFX2 " + namesuffix + "\n")
5454
obg.write(pad("shortname", pad_length, pad_left=False) + "=" + namelookup[typeshort] + "\n")
55-
obg.write(pad("version", pad_length, pad_left=False) + "= 3" + "\n")
55+
obg.write(pad("version", pad_length, pad_left=False) + "= 4" + "\n")
5656
obg.write(pad("palette", pad_length, pad_left=False) + "= DOS" + "\n")
5757
obg.write(pad("blitter", pad_length, pad_left=False) + "= "+str(blitter)+"bpp" + "\n")
5858
obg.write(pad("description", pad_length, pad_left=False) + "= OpenGFX2, a pixel art style base graphics set for OpenTTD. "+description+". Freely available under the terms of the GNU General Public License version 2." + "\n")

baseset/nml/extra/extra-header.pnml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ grf {
44
name: string(STR_GRF_NAME);
55
desc: string(STR_GRF_DESCRIPTION);
66
url: string(STR_GRF_URL);
7-
version: 3;
7+
version: 4;
88
min_compatible_version: version_openttd(1, 3, 0);
99
param 1 {
1010
param_cursors_ {
@@ -302,7 +302,7 @@ if (openttd_version < version_openttd(14, 0)) {
302302
if (grf_future_status("OGZ\1")==1) {
303303
//error(WARNING, string(STR_WARN_SETTINGSGRF_SETTINGSGRFPARAM));
304304
// Check settings grf version, and warn if it's not the expected version to match this version of the base set
305-
if (param["OGZ\1", 254]!=3) {
305+
if (param["OGZ\1", 254]!=4) {
306306
error(WARNING, string(STR_WARN_SETTINGSGRF_VERSIONMISMATCH));
307307
}
308308
// Check OpenTTD version, and warn if it's recommended to use base set parameters instead of the settings grf

newgrf/nml/landscape/landscape-header.pnml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ grf {
33
name: string(STR_GRF_NAME);
44
desc: string(STR_GRF_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 3;
6+
version: 4;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 2 {
99
param_gridlines {

newgrf/nml/settings/settings-header.pnml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ grf {
33
name: string(STR_GRF_NAME);
44
desc: string(STR_GRF_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 3;
6+
version: 4;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 1 {
99
param_cursors_ {

newgrf/nml/stations/stations-header.pnml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ grf {
33
name: string(STR_GRF_NAME);
44
desc: string(STR_GRF_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 3;
6+
version: 4;
77
min_compatible_version: version_openttd(1, 3, 0);
88
}
99

newgrf/nml/trees/trees-header.pnml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ grf {
33
name: string(STR_GRF_NAME);
44
desc: string(STR_GRF_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 3;
6+
version: 4;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 12 {
99
param_trees_temperate {

0 commit comments

Comments
 (0)