Bump protocol version and add new version info to game server
authorunc0rr
Mon, 13 Nov 2017 20:45:11 +0100
changeset 12834 148c9524f38d
parent 12833 8cc3b6373351
child 12835 71cdc02ccca6
Bump protocol version and add new version info to game server
CMakeLists.txt
gameServer/CoreTypes.hs
gameServer/Utils.hs
--- a/CMakeLists.txt	Sun Nov 12 21:41:06 2017 +0100
+++ b/CMakeLists.txt	Mon Nov 13 20:45:11 2017 +0100
@@ -81,7 +81,7 @@
 set(CPACK_PACKAGE_VERSION_MAJOR 0)
 set(CPACK_PACKAGE_VERSION_MINOR 9)
 set(CPACK_PACKAGE_VERSION_PATCH 23)
-set(HEDGEWARS_PROTO_VER 52)
+set(HEDGEWARS_PROTO_VER 53)
 set(HEDGEWARS_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
 include(${CMAKE_MODULE_PATH}/revinfo.cmake)
 
--- a/gameServer/CoreTypes.hs	Sun Nov 12 21:41:06 2017 +0100
+++ b/gameServer/CoreTypes.hs	Mon Nov 13 20:45:11 2017 +0100
@@ -311,8 +311,8 @@
         True
         False
         "<h2><p align=center><a href=\"http://www.hedgewars.org/\">http://www.hedgewars.org/</a></p></h2>"
-        "<font color=yellow><h3 align=center>Hedgewars 0.9.22 is out! Please update.</h3><p align=center><a href=http://hedgewars.org/download.html>Download page here</a></font>"
-        51 -- latestReleaseVersion
+        "<font color=yellow><h3 align=center>Hedgewars 0.9.23 is out! Please update.</h3><p align=center><a href=http://hedgewars.org/download.html>Download page here</a></font>"
+        53 -- latestReleaseVersion
         41 -- earliestCompatibleVersion
         46631
         ""
--- a/gameServer/Utils.hs	Sun Nov 12 21:41:06 2017 +0100
+++ b/gameServer/Utils.hs	Mon Nov 13 20:45:11 2017 +0100
@@ -116,6 +116,8 @@
             , (50, "0.9.22-dev")
             , (51, "0.9.22")
             , (52, "0.9.23-dev")
+            , (53, "0.9.23")
+            , (54, "0.9.24-dev")
             ]
 
 askFromConsole :: B.ByteString -> IO B.ByteString