Skip to content

Commit 6979c6e

Browse files
committed
Codechange: Version and documentation bumps for v0.5
1 parent 235cf82 commit 6979c6e

File tree

8 files changed

+26
-8
lines changed

8 files changed

+26
-8
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# OpenGFX2 Changelog
22

3+
## v0.5
4+
Base set:
5+
* All GUI icons at 1x and 2x zoom, with some at 4x.
6+
* Improved cursors, all at 1x and 2x zoom.
7+
* Additional cursor styles.
8+
* Build sprite font from TTFs, for full sprite font at 2x and 4x zoom.
9+
* TTD-style custom monospaced sprite font, from TTF.
10+
* Extended sprite font range to also cover Cyrillic and Greek alphabets.
11+
* Prototype/first 4x rail vehicle sprites.
12+
* Various additional bug fixes, including:
13+
* Fix bridge colour, recolour and leg glitches.
14+
* Fix/tweak town tree graphics.
15+
* Fix Various rock and slope shading glitches.
16+
17+
NewGRFs:
18+
* New standalone objects NewGRF, with fields, forests, rocks and building objects.
19+
* Fix tree NewGRF to also replace cacti and palm trees.
20+
321
## v0.4
422
Base set:
523
* 4x zoom trees for normal climates, including improved growth/death stages.

baseset/baseset_generate_obg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def pad(string, length, character=" ", pad_left=True):
155155
pad_length = 12
156156
obg.write(pad("name", pad_length, pad_left=False) + "= OpenGFX2 " + namesuffix + "\n")
157157
obg.write(pad("shortname", pad_length, pad_left=False) + "= " + namelookup[typeshort] + "\n")
158-
obg.write(pad("version", pad_length, pad_left=False) + "= 4" + "\n")
158+
obg.write(pad("version", pad_length, pad_left=False) + "= 5" + "\n")
159159
obg.write(pad("palette", pad_length, pad_left=False) + "= DOS" + "\n")
160160
obg.write(pad("blitter", pad_length, pad_left=False) + "= "+str(blitter)+"bpp" + "\n")
161161
# write all non-default languages with translations available

baseset/nml/extra/extra-header.pnml

+2-2
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: 4;
7+
version: 5;
88
min_compatible_version: version_openttd(1, 3, 0);
99
param 1 {
1010
param_cursors_ {
@@ -304,7 +304,7 @@ if (openttd_version < version_openttd(14, 0)) {
304304
if (grf_future_status("OGZ\1")==1) {
305305
//error(WARNING, string(STR_WARN_SETTINGSGRF_SETTINGSGRFPARAM));
306306
// Check settings grf version, and warn if it's not the expected version to match this version of the base set
307-
if (param["OGZ\1", 254]!=4) {
307+
if (param["OGZ\1", 254]!=5) {
308308
error(WARNING, string(STR_WARN_SETTINGSGRF_VERSIONMISMATCH));
309309
}
310310
// 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

+1-1
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: 4;
6+
version: 5;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 2 {
99
param_gridlines {

newgrf/nml/objects/objects-header.pnml

+1-1
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: 4;
6+
version: 5;
77
min_compatible_version: version_openttd(1, 3, 0);
88
}
99

newgrf/nml/settings/settings-header.pnml

+1-1
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: 4;
6+
version: 5;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 1 {
99
param_cursors_ {

newgrf/nml/stations/stations-header.pnml

+1-1
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: 4;
6+
version: 5;
77
min_compatible_version: version_openttd(1, 3, 0);
88
}
99

newgrf/nml/trees/trees-header.pnml

+1-1
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: 4;
6+
version: 5;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 12 {
99
param_trees_temperate {

0 commit comments

Comments
 (0)