Skip to content

Commit 461a049

Browse files
committed
2.0.4
1 parent 94657c1 commit 461a049

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

CHANGELOG

+16
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ New features:
55

66
Bug fixes:
77

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+
823
* Fix GitHub Issue #59: Regression: Bridge is broken due to changes in collision detection
924
* Fix GitHub Issue #72: Apostrophe character is broken
1025
- The font is now initialized with the full ASCII table
@@ -19,6 +34,7 @@ Other:
1934

2035
* Fix GitHub Issue #74: Twister track has no pit stop
2136
* Skip bridge tiles when placing car into start grid
37+
* Require C++14
2238

2339
2.0.3
2440
=====

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ endif()
2525
# Global game version
2626
set(VERSION_MAJOR "2")
2727
set(VERSION_MINOR "0")
28-
set(VERSION_PATCH "3")
28+
set(VERSION_PATCH "4")
2929
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
3030

3131
# Some common CPack variables

packaging/windows/dustrac.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
!define DESCRIPTION "A traditional top-down racing game."
1111
!define VERSIONMAJOR 2
1212
!define VERSIONMINOR 0
13-
!define VERSIONBUILD 3
13+
!define VERSIONBUILD 4
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/buildWindowsInstaller.sh

+1-1
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.3
5+
DUSTRAC_RELEASE_VERSION=2.0.4
66

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

src/editor/editor.pro

+1-1
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.3\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.4\\\"
88

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

src/game/game.pro

+1-1
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.3\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.4\\\"
88
QMAKE_CXXFLAGS += -O3 -fomit-frame-pointer -finline-functions -ffast-math
99

1010
# Qt version check

0 commit comments

Comments
 (0)