diff options
| -rw-r--r-- | scripts/cmd5.py | 4 | ||||
| -rw-r--r-- | src/game/version.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/scripts/cmd5.py b/scripts/cmd5.py index cd4ec743..91e22f63 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 5508f942..8cf1a7c0 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 |