Skip to content

Commit 34503a0

Browse files
committed
Prepare for next iteration
1 parent 7dfed73 commit 34503a0

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.5.1...4.1.0)
22
project (blockattack)
33
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)
44

5-
SET(CPACK_PACKAGE_VERSION "2.10.0-SNAPSHOT")
5+
SET(CPACK_PACKAGE_VERSION "2.11.0-SNAPSHOT")
66
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
7-
SET(CPACK_PACKAGE_VERSION_MINOR "10")
7+
SET(CPACK_PACKAGE_VERSION_MINOR "11")
88
SET(CPACK_PACKAGE_VERSION_PATCH "0")
99
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Block Attack - Rise of the Blocks ${CPACK_PACKAGE_VERSION}")
1010
SET(CPACK_PACKAGE_VENDOR "Poul Sander")

man/blockattack.man

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
2-
.TH BLOCKATTACK "6" "May 2024" "blockattack 2.10.0-SNAPSHOT" "Games"
2+
.TH BLOCKATTACK "6" "October 2025" "blockattack 2.11.0-SNAPSHOT" "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.10.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.11.0\-SNAPSHOT
1010
.PP
1111
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
1212
.PP
@@ -46,6 +46,12 @@ Do not automatically auto scale
4646
\fB\-\-always\-sixteen\-nine\fR
4747
Use 16:9 format even in Window mode
4848
.TP
49+
\fB\-\-editor\fR
50+
Start the sprite editor/browser
51+
.TP
52+
\fB\-\-puzzle\-editor\fR
53+
Start the build in puzzle editor
54+
.TP
4955
\fB\-\-puzzle\-level\-file\fR arg
5056
Sets the default puzzle file to load
5157
.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.10.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.11.0-SNAPSHOT"
3434
#endif

source/misc/docker/Dockerfile.Fedora42build

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.10.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1919

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

source/misc/docker/Dockerfile.Ubuntu18.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.10.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1010

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

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

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

1616
COPY . /staging/blockattack-game
1717

18-
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1919

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

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

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

1212
COPY . /staging/blockattack-game
1313

14-
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT
14+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1515

1616
RUN cd /staging/blockattack-game && \
1717
./packdata.sh && \

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

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

1212
COPY . /staging/blockattack-game
1313

14-
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT
14+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1515

1616
RUN cd /staging/blockattack-game && \
1717
./packdata.sh && \

source/misc/docker/Dockerfile.WindoesBuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN mkdir -p /output
88

99
COPY . /staging/blockattack-game
1010

11-
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT
11+
ENV BLOCKATTACK_VERSION 2.11.0-SNAPSHOT
1212

1313
RUN cd /staging/blockattack-game && \
1414
./packdata.sh && ls -lrt source/misc/embedded_libs/fmt-11.0.2 && \

windows installer/install_script.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
; HM NIS Edit Wizard helper defines
44
!define PRODUCT_NAME "Block Attack - Rise Of the Blocks"
5-
!define PRODUCT_VERSION "2.10.0-SNAPSHOT"
5+
!define PRODUCT_VERSION "2.11.0-SNAPSHOT"
66
!define PRODUCT_PUBLISHER "Poul Sander"
77
!define PRODUCT_WEB_SITE "http://www.blockattack.net"
88
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\blockattack.exe"

0 commit comments

Comments
 (0)