Skip to content

Commit 887778c

Browse files
committed
Codechange: Version bumps and documentation for v0.8
1 parent d2a68dc commit 887778c

File tree

9 files changed

+51
-9
lines changed

9 files changed

+51
-9
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# OpenGFX2 Changelog
22

3+
## v0.8
4+
Base set:
5+
6+
* Sprites for new OpenTTD features
7+
* Bridge deck overlays
8+
* City and town icons for sprite font
9+
* Left-pointing arrow to sprite font
10+
* Vertical ellipsis used for badges menu (#196)
11+
* Graphics improvements
12+
* Less repetitive toyland terrain style
13+
* Sharper gridlines (#169)
14+
* Revamped and 4x zoom underground-style logo
15+
* 4x zoom streamliner logo
16+
* Clearer NewGRF download list checkmark (#188)
17+
* Toyland river slope rocks
18+
* Improve water strobing and snow dither zoom out optimisations (#158)
19+
* Translation
20+
* Numerous translations via eints
21+
* More gracefully handle unknown language IDs and add Maori
22+
* Consolidate string definitions to allow future NewGRF translation (#187)
23+
* Avoid string concatenation for baseset description for better translation (#174)
24+
* Minor fixes
25+
* Set background of endgame graphics to 0x69 dark brown
26+
* Make cargo icons 10px tall to match normal font
27+
* Correct sprite font offset and clipping errors
28+
* Add missing baseset obg file url metadata
29+
* Add missing tall office block ground tiles (#185)
30+
* Add toyland rail tunnel icon (#182)
31+
* Fix track orientation for monorail level crossing (#183)
32+
* Fix cursors, caps lock and backspace on-screen keyboard icons (#166)
33+
* Tidy river tile shapes
34+
* Include 2x zoom tunnel icons in Classic baseset (#157)
35+
* Farm field fence/hedge offsets to remain within tile
36+
* Remove whole-tile flicker in toyland canal water animation
37+
* Improve internal graphics and coding docs
38+
* Incorrect image for 4x zoom 8bpp sprite for spr1545 (#168)
39+
40+
High Def base set:
41+
* Graphics improvements
42+
* Fix 4x zoom water gridlines
43+
* Add various 4x zoom temperate town buildings
44+
345
## v0.7
446
Base set:
547
* Redrawn 1x zoom train, monorail and maglev wagons.

baseset/baseset_generate_obg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def generate_obg(base_path, type_string):
158158

159159
# general, non-translateable, version string
160160
# version, never translated
161-
descriptionversion = "OpenGFX2 0.7 " + typeshort
161+
descriptionversion = "OpenGFX2 0.8 " + typeshort
162162
# used for the origin string
163163
descriptionorigin = "Available from the in-game content download system (BaNaNaS) or https://github.com/OpenTTD/OpenGFX2/"
164164
# fallback description for non-standard zoom and bit depth combinations, should never be in player-facing standard builds

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: 7;
7+
version: 8;
88
min_compatible_version: version_openttd(1, 3, 0);
99
param 1 {
1010
param_cursors_ {
@@ -305,7 +305,7 @@ if (openttd_version < version_openttd(14, 0)) {
305305
if (grf_future_status("OGZ\1")==1) {
306306
//error(WARNING, string(STR_WARN_SETTINGSGRF_SETTINGSGRFPARAM));
307307
// Check settings grf version, and warn if it's not the expected version to match this version of the base set
308-
if (param["OGZ\1", 254]!=7) {
308+
if (param["OGZ\1", 254]!=8) {
309309
error(WARNING, string(STR_WARN_SETTINGSGRF_VERSIONMISMATCH));
310310
}
311311
// 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_LANDSCAPE_NAME);
44
desc: string(STR_GRF_LANDSCAPE_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 2 {
99
param_gridlines {

newgrf/nml/objects/objects-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_OBJECTS_NAME);
44
desc: string(STR_GRF_OBJECTS_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
77
min_compatible_version: version_openttd(1, 3, 0);
88
}
99

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_SETTINGS_NAME);
44
desc: string(STR_GRF_SETTINGS_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
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_STATIONS_NAME);
44
desc: string(STR_GRF_STATIONS_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
77
min_compatible_version: version_openttd(1, 3, 0);
88
}
99

newgrf/nml/trams/trams-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_TRAMS_NAME);
44
desc: string(STR_GRF_TRAMS_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
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_TREES_NAME);
44
desc: string(STR_GRF_TREES_DESCRIPTION);
55
url: string(STR_GRF_URL);
6-
version: 7;
6+
version: 8;
77
min_compatible_version: version_openttd(1, 3, 0);
88
param 12 {
99
param_trees_temperate {

0 commit comments

Comments
 (0)