Skip to content

Commit 92c25c4

Browse files
committed
Bump version to 2.4.22.
1 parent f29aa93 commit 92c25c4

File tree

8 files changed

+15
-13
lines changed

8 files changed

+15
-13
lines changed

ChangeLog

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
BZFlag Release Notes
22
====================
33

4-
BZFlag 2.4.21
5-
-------------
4+
BZFlag 2.4.22 "Eyes are windows to your SDL" (2021-02-27)
5+
----------------------------------------------------------
6+
67
* Fix many issues with SDL 2 window management - Joshua Bodine, Scott Wichser
78
* The playHistoryTracker plugin now tracks kills correctly - Scott Wichser
89
* Local shotID was not being set in bz_eShotFiredEvent - Agatha
910
* Send active autopilot statuses to a joining player - Scott Wichser
1011
* Fix solo bots being kicked when rejoining to a server - Scott Wichser
12+
* Fix the backspace key not working on the bzadmin Curses menu - Scott Wichser
1113

1214

1315
BZFlag 2.4.20 "Do You See What I See?" (2020-04-24)

MSVC/Version.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
1414
//
1515

1616
VS_VERSION_INFO VERSIONINFO
17-
FILEVERSION 2,4,21,0
18-
PRODUCTVERSION 2,4,21,0
17+
FILEVERSION 2,4,22,0
18+
PRODUCTVERSION 2,4,22,0
1919
FILEFLAGSMASK 0x3fL
2020
#ifdef _DEBUG
2121
FILEFLAGS 0x1L
@@ -32,12 +32,12 @@ BEGIN
3232
BEGIN
3333
VALUE "CompanyName", "Tim Riker"
3434
VALUE "FileDescription", "BZFlag"
35-
VALUE "FileVersion", "2.4.21.0"
35+
VALUE "FileVersion", "2.4.22.0"
3636
VALUE "InternalName", "version.rc"
3737
VALUE "LegalCopyright", "Copyright (c) 1993-2021 Tim Riker"
3838
VALUE "OriginalFilename", "version.rc"
3939
VALUE "ProductName", "BZFlag"
40-
VALUE "ProductVersion", "2.4.21.0"
40+
VALUE "ProductVersion", "2.4.22.0"
4141
END
4242
END
4343
BLOCK "VarFileInfo"

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BZFlag 2.4.21
1+
BZFlag 2.4.22
22
http://BZFlag.org/
33
Copyright (c) 1993-2021 Tim Riker
44

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dnl Minimum version of autoconf required. Should coincide with the
4444
dnl setting in the autogen.sh script.
4545
AC_PREREQ([2.68])
4646

47-
AC_INIT([BZFlag],[2.4.21],[http://BZFlag.org/],[bzflag])
47+
AC_INIT([BZFlag],[2.4.22],[http://BZFlag.org/],[bzflag])
4848
AC_CONFIG_SRCDIR(src/bzflag/bzflag.cxx)
4949
AC_CONFIG_MACRO_DIR([m4])
5050

data/title.png

343 Bytes
Loading

misc/art/title.psd

-37 Bytes
Binary file not shown.

package/win32/nsis/BZFlag.nsi

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
!define VER_MAJOR 2
99
!define VER_MINOR 4
10-
!define VER_REVISION 21
10+
!define VER_REVISION 22
1111

12-
;!define TYPE "release"
12+
!define TYPE "release"
1313
;!define TYPE "alpha"
1414
;!define TYPE "beta"
15-
!define TYPE "devel"
15+
;!define TYPE "devel"
1616
;!define TYPE "RC"
1717

1818
!define TYPE_REVISION "0"

src/date/buildDate.cxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
#endif
4747

4848
#ifndef BZ_REV
49-
# define BZ_REV 21
49+
# define BZ_REV 22
5050
#endif
5151

5252
// DEVEL | RC# | STABLE | MAINT
5353
#ifndef BZ_BUILD_TYPE
54-
# define BZ_BUILD_TYPE "DEVEL"
54+
# define BZ_BUILD_TYPE "MAINT"
5555
#endif
5656

5757
const char *bzfcopyright = "Copyright (c) 1993-2021 Tim Riker";

0 commit comments

Comments
 (0)