Skip to content

Commit a8ef4e0

Browse files
committed
Prepared for version 2.6.0 release
1 parent 50c81b4 commit a8ef4e0

13 files changed

+30
-14
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.6.0-SNAPSHOT")
6+
SET(CPACK_PACKAGE_VERSION "2.6.0")
77
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
88
SET(CPACK_PACKAGE_VERSION_MINOR "6")
99
SET(CPACK_PACKAGE_VERSION_PATCH "0")

ReleaseNotes-2.6.0.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
This is Block Attack - Rise of the Blocks - version 2.6.0
2+
3+
The main focus of this release is improved controller support.
4+
5+
Changes since 2.5.0:
6+
7+
Modified the controller keybind. "B" is now Cancel instead of "Y"
8+
There is a virtual keyboard on the enter name screen allowing using a mouse or a gamepad to type.
9+
Added patch by bmwiedemann for sorting in the data file
10+
Update embedded Cerial from 1.2.2 to 1.3.0
11+
Update library versions for the compiled Linux version:
12+
* SDL2: 2.0.9 to 2.0.12
13+
* SDL2_image: 2.0.4 to 2.0.5
14+
* SDL2_ttf: 2.0.14 to 2.0.15
15+
* physfs: 2.0.3 to 3.0.2
16+

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.6.
2-
.TH BLOCKATTACK "6" "June 2019" "blockattack 2.6.0-SNAPSHOT" "Games"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
2+
.TH BLOCKATTACK "6" "September 2020" "blockattack 2.6.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.6.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.6.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.6.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.6.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.6.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.6.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.6.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.6.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.6.0-SNAPSHOT
19+
ENV BLOCKATTACK_VERSION 2.6.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.6.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.6.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.6.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.6.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.6.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.6.0
1111

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

0 commit comments

Comments
 (0)