File tree 6 files changed +21
-5
lines changed
6 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,21 @@ New features:
5
5
6
6
Bug fixes:
7
7
8
+ Other:
9
+
10
+ 2.0.4
11
+ =====
12
+
13
+ Mostly a bug fix and code refactoring release.
14
+
15
+ One new track Crossroads (by Wuzzy) added.
16
+
17
+ New features:
18
+
19
+ * Fix GitHub Issue #67: New track: Crossroads
20
+
21
+ Bug fixes:
22
+
8
23
* Fix GitHub Issue #59: Regression: Bridge is broken due to changes in collision detection
9
24
* Fix GitHub Issue #72: Apostrophe character is broken
10
25
- The font is now initialized with the full ASCII table
19
34
20
35
* Fix GitHub Issue #74: Twister track has no pit stop
21
36
* Skip bridge tiles when placing car into start grid
37
+ * Require C++14
22
38
23
39
2.0.3
24
40
=====
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ endif()
25
25
# Global game version
26
26
set (VERSION_MAJOR "2" )
27
27
set (VERSION_MINOR "0" )
28
- set (VERSION_PATCH "3 " )
28
+ set (VERSION_PATCH "4 " )
29
29
set (VERSION "${VERSION_MAJOR} .${VERSION_MINOR} .${VERSION_PATCH} " )
30
30
31
31
# Some common CPack variables
Original file line number Diff line number Diff line change 10
10
!define DESCRIPTION " A traditional top-down racing game."
11
11
!define VERSIONMAJOR 2
12
12
!define VERSIONMINOR 0
13
- !define VERSIONBUILD 3
13
+ !define VERSIONBUILD 4
14
14
!define HELPURL " http://juzzlin.github.io/DustRacing2D/"
15
15
!define UPDATEURL " https://github.com/juzzlin/DustRacing2D/releases"
16
16
!define ABOUTURL " http://juzzlin.github.io/DustRacing2D/"
Original file line number Diff line number Diff line change 2
2
3
3
# Builds NSIS installer for Windows in Docker
4
4
5
- DUSTRAC_RELEASE_VERSION=2.0.3
5
+ DUSTRAC_RELEASE_VERSION=2.0.4
6
6
7
7
CMD=" export LANG=en_US.UTF-8 && \
8
8
export LC_ALL=en_US.UTF-8 && \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ TEMPLATE = app
4
4
TARGET = dustrac-editor
5
5
6
6
CONFIG += c++14
7
- DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.3 \\\"
7
+ DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.4 \\\"
8
8
9
9
# Qt version check
10
10
contains (QT_VERSION, ^5\\..* ) {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ TEMPLATE = app
4
4
TARGET = dustrac-game
5
5
6
6
CONFIG += c++14
7
- DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.3 \\\"
7
+ DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.4 \\\"
8
8
QMAKE_CXXFLAGS += -O3 -fomit-frame-pointer -finline-functions -ffast-math
9
9
10
10
# Qt version check
You can’t perform that action at this time.
0 commit comments