Skip to content

Commit 5764c94

Browse files
committed
Prepared for version 2.4.0
1 parent 8cb016a commit 5764c94

12 files changed

+27
-13
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project (blockattack)
33
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${blockattack_SOURCE_DIR}/source/misc/cmake")
44
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)
55

6-
SET(CPACK_PACKAGE_VERSION "2.4.0-SNAPSHOT")
6+
SET(CPACK_PACKAGE_VERSION "2.4.0")
77
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
88
SET(CPACK_PACKAGE_VERSION_MINOR "4")
99
SET(CPACK_PACKAGE_VERSION_PATCH "0")

ReleaseNotes-2.4.0.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
This is Block Attack - Rise of the Blocks - version 2.4.0
2+
Changes since 2.3.0:
3+
Different starting speeds for Endless
4+
Minor code cleanup
5+
Improved "About" page with technical information
6+
Also dumps the about page info to "about.txt" when viewed
7+
Default player 1 name is now fetched from the OS
8+
9+
Windows specific:
10+
Improved unicode support (--homepath can now be used with Unicode chars)
11+
Windows 7 is now required
12+
Build against SDL 2.0.9 fixing some scaling problems and improving gamepad support
13+
14+
Feedback can be given on https://blockattack.net or https://github.com/blockattack/blockattack-game

man/blockattack.man

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
2-
.TH BLOCKATTACK "6" "July 2018" "blockattack 2.4.0-SNAPSHOT" "Games"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2+
.TH BLOCKATTACK "6" "March 2019" "blockattack 2.4.0" "Games"
33
.SH NAME
44
blockattack \- a puzzle game inspired by Tetris Attack
55
.SH SYNOPSIS
66
.B blockattack
77
[\fI\,OPTION\/\fR]...
88
.SH DESCRIPTION
9-
Block Attack \- Rise of the blocks 2.4.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.4.0
1010
.PP
1111
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
1212
.PP

source/code/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Source information and contacts persons can be found at
3030
#define GAMENAME "blockattack"
3131

3232
#ifndef VERSION_NUMBER
33-
#define VERSION_NUMBER "2.4.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.4.0"
3434
#endif

source/misc/docker/Dockerfile.Fedora25build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ zip \
1515

1616
COPY . /staging/blockattack-game
1717

18-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.4.0
1919

2020
RUN cd /staging/blockattack-game && \
2121
./packdata.sh && \

source/misc/docker/Dockerfile.Fedora29build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ zip \
1515

1616
COPY . /staging/blockattack-game
1717

18-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.4.0
1919

2020
RUN cd /staging/blockattack-game && \
2121
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu12.04build_Standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN /compile_requirements.sh
1616

1717
COPY . /staging/blockattack-game
1818

19-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
19+
ENV BLOCKATTACK_VERSION 2.4.0
2020

2121
RUN cd /staging/blockattack-game && \
2222
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN mkdir -p /staging/blockattack-game
66

77
COPY . /staging/blockattack-game
88

9-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.4.0
1010

1111
RUN cd /staging/blockattack-game && \
1212
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build_Standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN /compile_requirements.sh
77

88
COPY . /staging/blockattack-game
99

10-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.4.0
1111

1212
RUN cd /staging/blockattack-game && \
1313
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build_Standalone32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN /compile_requirements.sh
77

88
COPY . /staging/blockattack-game
99

10-
ENV BLOCKATTACK_VERSION 2.4.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.4.0
1111

1212
RUN cd /staging/blockattack-game && \
1313
./packdata.sh && \

0 commit comments

Comments
 (0)