Skip to content

Commit be227b0

Browse files
committed
Update the version numbers to 2.4.12.
1 parent 3b06b7f commit be227b0

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

ChangeLog

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
BZFlag Release Notes
22
====================
33

4-
BZFlag 2.4.11
4+
BZFlag 2.4.12 "Silence is Golden" (2017-10-29)
55
-------------
66

7+
* Allow API to trigger CTF capture event - Vladimir Jimenez
8+
* Allow setting default values for BZDB from API - Vladimir Jimenez
9+
* Add bzu_getTeamFromFlag() convenience function - Vladimir Jimenez
710
* Add new functions to the bz_APIStringList - Vladimir Jimenez
811
* Add string utility functions to the API and TextUtils - Vladimir Jimenez
912
* Fixed an issue with ASCII characters from modified non-ASCII keys in SDL 2
@@ -12,6 +15,7 @@ BZFlag 2.4.11
1215
* Don't send client queries on behalf of players - Vladimir Jimenez
1316
* Removed pollSet as a default perm in bzfs - Vladimir Jimenez
1417
* Player records canSpawn value no longer always returns true - Vladimir Jimenez
18+
* bz_addURLJob() now supports setting HTTP headers - Vladimir Jimenez
1519
* Made multisampling work on all platforms with SDL 1.2/2 - Joshua Bodine
1620
* Add bz_eMuteEvent and bz_eUnmuteEvent to the API - Vladimir Jimenez
1721
* Add configure --disable-server option - Jeff Makey

DEVINFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ cannot proceed. A checklist of items to be completed follows:
436436

437437
- Version numbers are updated to the next expected release number.
438438
This minimally includes updating README, ChangeLog, configure.ac,
439-
buildDate.cxx, bzflag.rc, and the title.png image. Version numbers in all
439+
buildDate.cxx, Version.rc, and the title.png image. Version numbers in all
440440
other platform-specific README.* files should also be verified.
441441

442442
- Edit updateConfigFile in clientConfig.cxx to update any necessary

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,11,0
18-
PRODUCTVERSION 2,4,11,0
17+
FILEVERSION 2,4,12,0
18+
PRODUCTVERSION 2,4,12,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.11.0"
35+
VALUE "FileVersion", "2.4.12.0"
3636
VALUE "InternalName", "version.rc"
3737
VALUE "LegalCopyright", "Copyright (c) 1993-2017 Tim Riker"
3838
VALUE "OriginalFilename", "version.rc"
3939
VALUE "ProductName", "BZFlag"
40-
VALUE "ProductVersion", "2.4.11.0"
40+
VALUE "ProductVersion", "2.4.12.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.11
1+
BZFlag 2.4.12
22
http://BZFlag.org/
33
Copyright (c) 1993-2017 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.58])
4646

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

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 11
10+
!define VER_REVISION 12
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 11
49+
# define BZ_REV 12
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-2017 Tim Riker";

0 commit comments

Comments
 (0)