changed netversion to 0.7

This commit is contained in:
oy 2012-02-15 01:39:02 +01:00
parent 44a47d4253
commit 3d4a8cf4c9
2 changed files with 2 additions and 4 deletions

View file

@ -30,6 +30,4 @@ for filename in sys.argv[1:]:
hash = hashlib.md5(f).hexdigest().lower()[16:]
#TODO 0.7: improve nethash creation
if hash == "3dc531e4296de555":
hash = "626fce9a778df4d4"
print('#define GAME_NETVERSION_HASH "%s"' % hash)

View file

@ -3,7 +3,7 @@
#ifndef GAME_VERSION_H
#define GAME_VERSION_H
#include "generated/nethash.cpp"
#define GAME_VERSION "0.6 trunk"
#define GAME_NETVERSION "0.6 " GAME_NETVERSION_HASH
#define GAME_VERSION "0.7 trunk"
#define GAME_NETVERSION "0.7 " GAME_NETVERSION_HASH
static const char GAME_RELEASE_VERSION[8] = {'0', '.', '6', '1', 0};
#endif