This is an automated email from the git hooks/post-receive script. apo pushed a commit to branch master in repository blockattack.
commit e652ecfd32e12ab4e8091e5708dfff1296463f85 Author: Markus Koschany <[email protected]> Date: Sun Aug 20 03:14:43 2017 +0200 New upstream version 2.1.2 --- CMakeLists.txt | 4 ++-- ReleaseNotes-2.1.2.txt | 4 ++++ man/blockattack.man | 4 ++-- source/code/os.cpp | 1 + source/code/version.h | 2 +- source/misc/docker/Dockerfile.WindoesBuild | 2 +- windows installer/install_script.nsi | 2 +- 7 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ced9f75..ea0efe3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,10 +3,10 @@ project (blockattack) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${blockattack_SOURCE_DIR}/source/misc/cmake") set(BIN_DIR ${blockattack_SOURCE_DIR}/Game) -SET(CPACK_PACKAGE_VERSION "2.1.1") +SET(CPACK_PACKAGE_VERSION "2.1.2") SET(CPACK_PACKAGE_VERSION_MAJOR "2") SET(CPACK_PACKAGE_VERSION_MINOR "1") -SET(CPACK_PACKAGE_VERSION_PATCH "1") +SET(CPACK_PACKAGE_VERSION_PATCH "2") SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Block Attack - Rise of the Blocks ${CPACK_PACKAGE_VERSION}") SET(CPACK_PACKAGE_VENDOR "Poul Sander") INCLUDE(CPack) diff --git a/ReleaseNotes-2.1.2.txt b/ReleaseNotes-2.1.2.txt new file mode 100644 index 0000000..f727907 --- /dev/null +++ b/ReleaseNotes-2.1.2.txt @@ -0,0 +1,4 @@ +This is Block Attack - Rise of the Blocks - version 2.1.2 + +This version only fixes one single bug. The Windows version would not save correctly if "My Games" did not already exist in the Documents folder. +No changes to anything else diff --git a/man/blockattack.man b/man/blockattack.man index d3ad6eb..b00b0ff 100644 --- a/man/blockattack.man +++ b/man/blockattack.man @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.TH BLOCKATTACK "6" "April 2017" "blockattack 2.1.1" "Games" +.TH BLOCKATTACK "6" "July 2017" "blockattack 2.1.2" "Games" .SH NAME blockattack \- a puzzle game inspired by Tetris Attack .SH SYNOPSIS .B blockattack [\fI\,OPTION\/\fR]... .SH DESCRIPTION -Block Attack \- Rise of the blocks 2.1.1 +Block Attack \- Rise of the blocks 2.1.2 .PP Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES. .PP diff --git a/source/code/os.cpp b/source/code/os.cpp index 77e58ed..55145bc 100644 --- a/source/code/os.cpp +++ b/source/code/os.cpp @@ -64,6 +64,7 @@ void OsCreateSaveFolder() { } #elif defined(_WIN32) //Now for Windows NT/2k/xp/2k3 etc. + CreateDirectory(pf.getSaveGamesFolder1().c_str(), nullptr); std::string tempA = getPathToSaveFiles(); CreateDirectory(tempA.c_str(),nullptr); #endif diff --git a/source/code/version.h b/source/code/version.h index 595ede9..98403b1 100644 --- a/source/code/version.h +++ b/source/code/version.h @@ -22,5 +22,5 @@ http://www.blockattack.net */ #ifndef VERSION_NUMBER -#define VERSION_NUMBER "2.1.1" +#define VERSION_NUMBER "2.1.2" #endif diff --git a/source/misc/docker/Dockerfile.WindoesBuild b/source/misc/docker/Dockerfile.WindoesBuild index 55fed20..7d3a4af 100644 --- a/source/misc/docker/Dockerfile.WindoesBuild +++ b/source/misc/docker/Dockerfile.WindoesBuild @@ -8,7 +8,7 @@ RUN mkdir -p /output COPY . /staging/blockattack-game -ENV BLOCKATTACK_VERSION 2.1.1 +ENV BLOCKATTACK_VERSION 2.1.2 RUN cd /staging/blockattack-game && \ ./packdata.sh && \ diff --git a/windows installer/install_script.nsi b/windows installer/install_script.nsi index 442e190..cc7af1e 100644 --- a/windows installer/install_script.nsi +++ b/windows installer/install_script.nsi @@ -2,7 +2,7 @@ ; HM NIS Edit Wizard helper defines !define PRODUCT_NAME "Block Attack - Rise Of the Blocks" -!define PRODUCT_VERSION "2.1.1" +!define PRODUCT_VERSION "2.1.2" !define PRODUCT_PUBLISHER "Poul Sander" !define PRODUCT_WEB_SITE "http://www.blockattack.net" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\blockattack.exe" -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/blockattack.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

