Skip to content

Commit

Permalink
Update build versions
Browse files Browse the repository at this point in the history
Set to release builds
Bump netcode version
  • Loading branch information
vexed committed Jul 17, 2011
1 parent 4c5628b commit 665e9b5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion autorevision.conf
@@ -1 +1 @@
wc_uri=master
wc_uri=master_20110717
4 changes: 2 additions & 2 deletions configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.56])
AC_INIT([Warzone 2100],[master],[http://wz2100.net/],[warzone2100])
AC_INIT([Warzone 2100],[master_20110717],[http://wz2100.net/],[warzone2100])

AM_INIT_AUTOMAKE([1.10 tar-ustar])

Expand Down Expand Up @@ -247,7 +247,7 @@ AS_IF([test "x$enable_ssl" != "xyes"],[
# Add later for stricter checking: -Wextra -Wmissing-declarations -Wstrict-prototypes
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug[=yes/relaxed/profile/debugprofile/optimised/no]],[Compile debug version [[yes]]]),
[ enable_debug=${enableval} ], [ enable_debug=yes ])
[ enable_debug=${enableval} ], [ enable_debug=no ])
AC_MSG_CHECKING([whether to compile in debug mode])
AC_MSG_RESULT([${enable_debug}])

Expand Down
6 changes: 3 additions & 3 deletions lib/netplay/netplay.cpp
Expand Up @@ -152,9 +152,9 @@ unsigned NET_PlayerConnectionStatus[CONNECTIONSTATUS_NORMAL][MAX_PLAYERS];
** ie ("trunk", "2.1.3", "3.0", ...)
************************************************************************************
**/
char VersionString[VersionStringSize] = "master, netcode 4.1012";
static int NETCODE_VERSION_MAJOR = 4;
static int NETCODE_VERSION_MINOR = 1012;
char VersionString[VersionStringSize] = "master_20110717, netcode 5.0";
static int NETCODE_VERSION_MAJOR = 5;
static int NETCODE_VERSION_MINOR = 0;

// The Lobby Client - declared external in netplay.h
Lobby::Client lobbyclient;
Expand Down
4 changes: 2 additions & 2 deletions win32/warzone2100.rc
Expand Up @@ -22,12 +22,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Warzone 2100 Project"
VALUE "FileDescription", "Warzone 2100"
VALUE "FileVersion", "master"
VALUE "FileVersion", "master_20110717"
VALUE "InternalName", "Warzone 2100"
VALUE "LegalCopyright", "Copyright � 2005-2010 Warzone 2100 Project"
VALUE "OriginalFilename", "warzone2100.exe"
VALUE "ProductName", "Warzone 2100"
VALUE "ProductVersion", "master"
VALUE "ProductVersion", "master_20110717"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 665e9b5

Please sign in to comment.