Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juzzlin committed Feb 21, 2021
1 parent 92b0a9c commit 3ee7930
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ x.y.z

New features:

Bug fixes:

Other:

2.1.1
=====

New features:

* Add Turkish translations

Bug fixes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ endif()
# Global game version
set(VERSION_MAJOR 2)
set(VERSION_MINOR 1)
set(VERSION_PATCH 0)
set(VERSION_PATCH 1)
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")

# Some common CPack variables
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/dustrac.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
!define DESCRIPTION "A traditional top-down racing game."
!define VERSIONMAJOR 2
!define VERSIONMINOR 1
!define VERSIONBUILD 0
!define VERSIONBUILD 1
!define HELPURL "http://juzzlin.github.io/DustRacing2D/"
!define UPDATEURL "https://github.com/juzzlin/DustRacing2D/releases"
!define ABOUTURL "http://juzzlin.github.io/DustRacing2D/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-windows-installer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Builds NSIS installer for Windows in Docker

DUSTRAC_RELEASE_VERSION=2.1.0
DUSTRAC_RELEASE_VERSION=2.1.1

CMD="export LANG=en_US.UTF-8 && \
export LC_ALL=en_US.UTF-8 && \
Expand Down
2 changes: 1 addition & 1 deletion src/editor/editor.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TEMPLATE = app
TARGET = dustrac-editor

CONFIG += c++14
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.0\\\"
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.1\\\"

# Qt version check
contains(QT_VERSION, ^5\\..*) {
Expand Down
2 changes: 1 addition & 1 deletion src/game/game.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TEMPLATE = app
TARGET = dustrac-game

CONFIG += c++14
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.0\\\"
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.1.1\\\"
QMAKE_CXXFLAGS += -O3 -fomit-frame-pointer -finline-functions -ffast-math

# Qt version check
Expand Down

0 comments on commit 3ee7930

Please sign in to comment.