diff --git a/docs/server_setup_howto.txt b/docs/server_setup_howto.txt index 49678bea..7b25867b 100644 --- a/docs/server_setup_howto.txt +++ b/docs/server_setup_howto.txt @@ -25,12 +25,13 @@ is run on a vserver with very limited memory. The following packages are required to compile the server: * qmake (Qt development tools) -* boost 1.34.1, 1.36.0 recommended +* boost 1.36, 1.38 recommended - boost-thread - boost-filesystem - boost-datetime - boost-program_options - boost-iostreams + - boost-asio * GnuTLS (any version should be fine) The following packages are optional but recommended: diff --git a/src/game_defs.h b/src/game_defs.h index 31b67067..57190be5 100644 --- a/src/game_defs.h +++ b/src/game_defs.h @@ -29,11 +29,11 @@ #define DEBUG_MODE 0 #define POKERTH_VERSION_MAJOR 0 -#define POKERTH_VERSION_MINOR 62 +#define POKERTH_VERSION_MINOR 64 #define POKERTH_VERSION ((POKERTH_VERSION_MAJOR << 8) | POKERTH_VERSION_MINOR) #define POKERTH_BETA_REVISION 0 -#define POKERTH_BETA_RELEASE_STRING "0.6.3" +#define POKERTH_BETA_RELEASE_STRING "0.6.4" enum ServerNetworkMode { NETWORK_MODE_TCP = 1, diff --git a/src/net/netpacket.h b/src/net/netpacket.h index 533d6167..3c4e25c0 100644 --- a/src/net/netpacket.h +++ b/src/net/netpacket.h @@ -31,7 +31,7 @@ #include #define NET_VERSION_MAJOR 5 -#define NET_VERSION_MINOR 0 +#define NET_VERSION_MINOR 1 #define MIN_PACKET_SIZE 4 #define MAX_PACKET_SIZE 268