Skip to content

Commit d00ced7

Browse files
committed
Bump version number to 2.4.14.
1 parent e96bcb4 commit d00ced7

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

ChangeLog

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
BZFlag Release Notes
22
====================
33

4-
BZFlag 2.4.13
5-
-------------
4+
BZFlag 2.4.14 "Hello Motto" (2018-05-02)
5+
-----------------------------------------
66

77
* Add new bz_eAllowServerShotFiredEvent to the API - Vladimir Jimenez
88
* Fix antialiasing when starting the client windowed - Joshua Bodine
@@ -31,8 +31,8 @@ BZFlag 2.4.13
3131
* Disallow -helpmsg from world files - Vladimir Jimenez
3232

3333

34-
BZFlag 2.4.12 "Silence is Golden" (2017-10-29)
35-
----------------------------------------------
34+
BZFlag 2.4.12 "Silence is Golden" (2017-10-29)
35+
-----------------------------------------------
3636

3737
* Allow API to trigger CTF capture event - Vladimir Jimenez
3838
* Allow setting default values for BZDB from API - Vladimir Jimenez
@@ -60,8 +60,8 @@ BZFlag 2.4.12 "Silence is Golden" (2017-10-29)
6060
* Fix the /silence and /unsilence client commands - Scott Wichser
6161

6262

63-
BZFlag 2.4.10 "This is How We Roll" (2017-03-12)
64-
------------------------------------------------
63+
BZFlag 2.4.10 "This is How We Roll" (2017-03-12)
64+
-------------------------------------------------
6565

6666
* Fix high DPI handling on Windows (again) - Scott Wichser
6767
* Custom slash commands respect double quotes when tokenizing - Vladimir Jimenez
@@ -79,8 +79,8 @@ BZFlag 2.4.10 "This is How We Roll" (2017-03-12)
7979
* Multisampling support under SDL 2 on macOS - Joshua Bodine
8080

8181

82-
BZFlag 2.4.8 "Sixteen" (2016-10-10)
83-
-----------------------------------
82+
BZFlag 2.4.8 "Sixteen" (2016-10-10)
83+
------------------------------------
8484

8585
* Add Russian transliteration - Ruslan Hihin, Aleksandr Lahin
8686
* Fix a regression in 2.4.6 where the client would not reduce CPU usage when
@@ -98,8 +98,8 @@ BZFlag 2.4.8 "Sixteen" (2016-10-10)
9898
* Increase the range of the volume slider - Konstantinos Kanavouras
9999

100100

101-
BZFlag 2.4.6 "Eight, Our Codebase is Overweight" (2016-06-26)
102-
-------------------------------------------------------------
101+
BZFlag 2.4.6 "Eight, Our Codebase is Overweight" (2016-06-26)
102+
--------------------------------------------------------------
103103

104104
* regFlag plugin now uses bz_eAllowFlagGrab event - Scott Wichser
105105
* RogueGenocide plugin defaults to ignoring rogue self-kills - Scott Wichser

MSVC/Version.rc

Lines changed: 4 additions & 4 deletions
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,13,0
18-
PRODUCTVERSION 2,4,13,0
17+
FILEVERSION 2,4,14,0
18+
PRODUCTVERSION 2,4,14,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.13.0"
35+
VALUE "FileVersion", "2.4.14.0"
3636
VALUE "InternalName", "version.rc"
3737
VALUE "LegalCopyright", "Copyright (c) 1993-2018 Tim Riker"
3838
VALUE "OriginalFilename", "version.rc"
3939
VALUE "ProductName", "BZFlag"
40-
VALUE "ProductVersion", "2.4.13.0"
40+
VALUE "ProductVersion", "2.4.14.0"
4141
END
4242
END
4343
BLOCK "VarFileInfo"

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BZFlag 2.4.13
1+
BZFlag 2.4.14
22
http://BZFlag.org/
33
Copyright (c) 1993-2018 Tim Riker
44

configure.ac

Lines changed: 1 addition & 1 deletion
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.13],[http://BZFlag.org/],[bzflag])
47+
AC_INIT([BZFlag],[2.4.14],[http://BZFlag.org/],[bzflag])
4848
AC_CONFIG_SRCDIR(src/bzflag/bzflag.cxx)
4949
AC_CONFIG_MACRO_DIR([m4])
5050

package/win32/nsis/BZFlag.nsi

Lines changed: 3 additions & 3 deletions
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 13
10+
!define VER_REVISION 14
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
#endif
4747

4848
#ifndef BZ_REV
49-
# define BZ_REV 13
49+
# define BZ_REV 14
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-2018 Tim Riker";

0 commit comments

Comments
 (0)