Skip to content

Commit 0730d4c

Browse files
committed
2.0.5
1 parent b3bd288 commit 0730d4c

File tree

6 files changed

+23
-9
lines changed

6 files changed

+23
-9
lines changed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,25 @@ New features:
55

66
Bug fixes:
77

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+
819
* Fix GitHub Issue #87: Improve off-track detection accuracy on curves
920
* Fix GitHub Issue #83: Car dots in minimap are too small on very large tracks
1021

1122
Other:
1223

24+
* Editor: Write processing instruction
25+
* Add processing instructions to all existing tracks
26+
1327
2.0.4
1428
=====
1529

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ if(POLICY CMP0043)
2323
endif()
2424

2525
# 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)
2929
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
3030

3131
# Some common CPack variables

packaging/windows/dustrac.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
!define APPNAME-EDITOR "Dust Racing 2D Level Editor"
99
!define COMPANYNAME "Jussi Lind"
1010
!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
1414
!define HELPURL "http://juzzlin.github.io/DustRacing2D/"
1515
!define UPDATEURL "https://github.com/juzzlin/DustRacing2D/releases"
1616
!define ABOUTURL "http://juzzlin.github.io/DustRacing2D/"

scripts/build-windows-installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Builds NSIS installer for Windows in Docker
44

5-
DUSTRAC_RELEASE_VERSION=2.0.4
5+
DUSTRAC_RELEASE_VERSION=2.0.5
66

77
CMD="export LANG=en_US.UTF-8 && \
88
export LC_ALL=en_US.UTF-8 && \

src/editor/editor.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TEMPLATE = app
44
TARGET = dustrac-editor
55

66
CONFIG += c++14
7-
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.4\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.5\\\"
88

99
# Qt version check
1010
contains(QT_VERSION, ^5\\..*) {

src/game/game.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TEMPLATE = app
44
TARGET = dustrac-game
55

66
CONFIG += c++14
7-
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.4\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.5\\\"
88
QMAKE_CXXFLAGS += -O3 -fomit-frame-pointer -finline-functions -ffast-math
99

1010
# Qt version check

0 commit comments

Comments
 (0)