Skip to content

Commit bbd397a

Browse files
committed
Version 2.5.0 release
1 parent 44c9ace commit bbd397a

13 files changed

+28
-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.5.0-SNAPSHOT")
6+
SET(CPACK_PACKAGE_VERSION "2.5.0")
77
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
88
SET(CPACK_PACKAGE_VERSION_MINOR "5")
99
SET(CPACK_PACKAGE_VERSION_PATCH "0")

ReleaseNotes-2.5.0.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
This is Block Attack - Rise of the Blocks - version 2.5.0
2+
3+
Changes since 2.4.0:
4+
Added option to always use the software renderer
5+
Automatically start in software render the first time after a crash
6+
Fixed the search order in archives
7+
Added widescreen support. Only used in fullscreen by default.
8+
Added appstream metadata
9+
Screenshot feature no longer crashes in hardware acceleration. Still only works in software mode
10+
11+
Feedback can be given on https://blockattack.net or https://github.com/blockattack/blockattack-game

man/blockattack.man

Lines changed: 6 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" "March 2019" "blockattack 2.5.0-SNAPSHOT" "Games"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.10.
2+
.TH BLOCKATTACK "6" "May 2019" "blockattack 2.5.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.5.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.5.0
1010
.PP
1111
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
1212
.PP
@@ -43,6 +43,9 @@ Prints the search path and quits
4343
\fB\-\-no\-auto\-scale\fR
4444
Do not automatically auto scale
4545
.TP
46+
\fB\-\-always\-sixteen\-nine\fR
47+
Use 16:9 format even in Window mode
48+
.TP
4649
\fB\-\-puzzle\-level\-file\fR arg
4750
Sets the default puzzle file to load
4851
.TP

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.5.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.5.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.5.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.5.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.5.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.5.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.5.0-SNAPSHOT
19+
ENV BLOCKATTACK_VERSION 2.5.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.5.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.5.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.5.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.5.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.5.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.5.0
1111

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

0 commit comments

Comments
 (0)