Skip to content

Commit

Permalink
Update version numbers to 2.4.16.
Browse files Browse the repository at this point in the history
  • Loading branch information
blast007 committed Sep 24, 2018
1 parent 7baac79 commit 4b38779
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
BZFlag Release Notes
====================

BZFlag 2.4.15
-------------
BZFlag 2.4.16 "Reduce, Reuse, Replay" (2018-09-23)
---------------------------------------------------

* Send MsgFlagGrab before API event is called - Jeff Myers, Vladimir Jimenez
* Fix muted when paused and killed by server - Alfredo Tupone
* Correctly unmuted when paused and killed by server - Alfredo Tupone
* Format codebase to allman style - Jeff Myers, Scott Wichser
* Use GLEW for obtaining OpenGL entry points and checking for extensions
- Alfredo Tupone
Expand Down
8 changes: 4 additions & 4 deletions MSVC/Version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,4,15,0
PRODUCTVERSION 2,4,15,0
FILEVERSION 2,4,16,0
PRODUCTVERSION 2,4,16,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -32,12 +32,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Tim Riker"
VALUE "FileDescription", "BZFlag"
VALUE "FileVersion", "2.4.15.0"
VALUE "FileVersion", "2.4.16.0"
VALUE "InternalName", "version.rc"
VALUE "LegalCopyright", "Copyright (c) 1993-2018 Tim Riker"
VALUE "OriginalFilename", "version.rc"
VALUE "ProductName", "BZFlag"
VALUE "ProductVersion", "2.4.15.0"
VALUE "ProductVersion", "2.4.16.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BZFlag 2.4.15
BZFlag 2.4.16
http://BZFlag.org/
Copyright (c) 1993-2018 Tim Riker

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dnl Minimum version of autoconf required. Should coincide with the
dnl setting in the autogen.sh script.
AC_PREREQ([2.68])

AC_INIT([BZFlag],[2.4.15],[http://BZFlag.org/],[bzflag])
AC_INIT([BZFlag],[2.4.16],[http://BZFlag.org/],[bzflag])
AC_CONFIG_SRCDIR(src/bzflag/bzflag.cxx)
AC_CONFIG_MACRO_DIR([m4])

Expand Down
6 changes: 3 additions & 3 deletions package/win32/nsis/BZFlag.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

!define VER_MAJOR 2
!define VER_MINOR 4
!define VER_REVISION 15
!define VER_REVISION 16

;!define TYPE "release"
!define TYPE "release"
;!define TYPE "alpha"
;!define TYPE "beta"
!define TYPE "devel"
;!define TYPE "devel"
;!define TYPE "RC"

!define TYPE_REVISION "0"
Expand Down
4 changes: 2 additions & 2 deletions src/date/buildDate.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
#endif

#ifndef BZ_REV
# define BZ_REV 15
# define BZ_REV 16
#endif

// DEVEL | RC# | STABLE | MAINT
#ifndef BZ_BUILD_TYPE
# define BZ_BUILD_TYPE "DEVEL"
# define BZ_BUILD_TYPE "MAINT"
#endif

const char *bzfcopyright = "Copyright (c) 1993-2018 Tim Riker";
Expand Down

0 comments on commit 4b38779

Please sign in to comment.