File tree Expand file tree Collapse file tree 6 files changed +23
-9
lines changed Expand file tree Collapse file tree 6 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,25 @@ New features:
5
5
6
6
Bug fixes:
7
7
8
+ Other:
9
+
10
+ 2.0.5
11
+ =====
12
+
13
+ New features:
14
+
15
+ * Show the actual car color in minimap
16
+
17
+ Bug fixes:
18
+
8
19
* Fix GitHub Issue #87: Improve off-track detection accuracy on curves
9
20
* Fix GitHub Issue #83: Car dots in minimap are too small on very large tracks
10
21
11
22
Other:
12
23
24
+ * Editor: Write processing instruction
25
+ * Add processing instructions to all existing tracks
26
+
13
27
2.0.4
14
28
=====
15
29
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ if(POLICY CMP0043)
23
23
endif ()
24
24
25
25
# Global game version
26
- set (VERSION_MAJOR "2" )
27
- set (VERSION_MINOR "0" )
28
- set (VERSION_PATCH "4" )
26
+ set (VERSION_MAJOR 2 )
27
+ set (VERSION_MINOR 0 )
28
+ set (VERSION_PATCH 5 )
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 8
8
!define APPNAME-EDITOR " Dust Racing 2D Level Editor"
9
9
!define COMPANYNAME " Jussi Lind"
10
10
!define DESCRIPTION " A traditional top-down racing game."
11
- !define VERSIONMAJOR 2
12
- !define VERSIONMINOR 0
13
- !define VERSIONBUILD 4
11
+ !define VERSIONMAJOR 2
12
+ !define VERSIONMINOR 0
13
+ !define VERSIONBUILD 5
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.4
5
+ DUSTRAC_RELEASE_VERSION=2.0.5
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.4 \\\"
7
+ DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.5 \\\"
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.4 \\\"
7
+ DEFINES += DATA_PATH =\ \\"./data\\\" VERSION=\\\"2.0.5 \\\"
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