Skip to content

Commit 3ee7930

Browse files
committed
2.1.1
1 parent 92b0a9c commit 3ee7930

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ x.y.z
33

44
New features:
55

6+
Bug fixes:
7+
8+
Other:
9+
10+
2.1.1
11+
=====
12+
13+
New features:
14+
615
* Add Turkish translations
716

817
Bug fixes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 1)
28-
set(VERSION_PATCH 0)
28+
set(VERSION_PATCH 1)
2929
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
3030

3131
# Some common CPack variables

packaging/windows/dustrac.nsi

Lines changed: 1 addition & 1 deletion
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 1
13-
!define VERSIONBUILD 0
13+
!define VERSIONBUILD 1
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.1.0
5+
DUSTRAC_RELEASE_VERSION=2.1.1
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.1.0\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.1\\\"
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.1.0\\\"
7+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.1\\\"
88
QMAKE_CXXFLAGS += -O3 -fomit-frame-pointer -finline-functions -ffast-math
99

1010
# Qt version check

0 commit comments

Comments
 (0)