summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-02-16 11:32:40 +0100
committeroy <Tom_Adams@web.de>2011-02-16 11:32:40 +0100
commitb59c710ebac43c5d1aa126aa7f1eb49e9c942ac0 (patch)
tree94a54d9f14bd68d5804b12ddb1fddeb3cf2a9cee
parent818cf464e33d0b38d72c09b7e212e51db3896ad5 (diff)
changed netversion to 0.60.6-start
-rw-r--r--scripts/cmd5.py4
-rw-r--r--src/game/version.h4
2 files changed, 2 insertions, 6 deletions
diff --git a/scripts/cmd5.py b/scripts/cmd5.py
index cd4ec7436..91e22f630 100644
--- a/scripts/cmd5.py
+++ b/scripts/cmd5.py
@@ -29,8 +29,4 @@ for filename in sys.argv[1:]:
f += cstrip([l.strip() for l in open(filename, "rb")])
hash = hashlib.md5(f).hexdigest().lower()[16:]
-# TODO: refactor hash that is equal to the 0.5 hash, remove when we
-# TODO: remove when we don't need it any more
-if hash == "8755162e69711f98":
- hash = "b67d1f1a1eea234e"
print('#define GAME_NETVERSION_HASH "%s"' % hash)
diff --git a/src/game/version.h b/src/game/version.h
index 5508f9425..8cf1a7c04 100644
--- a/src/game/version.h
+++ b/src/game/version.h
@@ -3,6 +3,6 @@
#ifndef GAME_VERSION_H
#define GAME_VERSION_H
#include "generated/nethash.c"
-#define GAME_VERSION "0.5 trunk"
-#define GAME_NETVERSION "0.5 " GAME_NETVERSION_HASH
+#define GAME_VERSION "0.6 trunk"
+#define GAME_NETVERSION "0.6 " GAME_NETVERSION_HASH
#endif