Mercurial > traipse_dev
comparison orpg/orpg_version.py @ 56:c7f04d3c76f5 traipse_dev
Major update to Server GUI. Basically makes it functional.
author | sirebral |
---|---|
date | Fri, 07 Aug 2009 21:53:14 -0500 |
parents | 0b79d5dbbe9e |
children | 9014d7861bb3 |
comparison
equal
deleted
inserted
replaced
55:0b79d5dbbe9e | 56:c7f04d3c76f5 |
---|---|
2 SERVER_MIN_CLIENT_VERSION = "1.7.1" | 2 SERVER_MIN_CLIENT_VERSION = "1.7.1" |
3 | 3 |
4 #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed) | 4 #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed) |
5 DISTRO = "Traipse Dev" | 5 DISTRO = "Traipse Dev" |
6 DIS_VER = "Grumpy Goblin" | 6 DIS_VER = "Grumpy Goblin" |
7 BUILD = "090806-08" | 7 BUILD = "090807-00" |
8 | 8 |
9 # This version is for network capability. | 9 # This version is for network capability. |
10 PROTOCOL_VERSION = "1.2" | 10 PROTOCOL_VERSION = "1.2" |
11 | 11 |
12 CLIENT_STRING = DISTRO + ' {' + BUILD + '}' | 12 CLIENT_STRING = DISTRO + ' {' + BUILD + '}' |
14 | 14 |
15 # These two are used in pyver.py to ensure a minimum python is available | 15 # These two are used in pyver.py to ensure a minimum python is available |
16 # If the minimum version you want doesn't have a micro (e.g. 2.0), use zero | 16 # If the minimum version you want doesn't have a micro (e.g. 2.0), use zero |
17 # for the micro | 17 # for the micro |
18 NEEDS_PYTHON_MAJOR = 2 | 18 NEEDS_PYTHON_MAJOR = 2 |
19 NEEDS_PYTHON_MINOR = 3 | 19 NEEDS_PYTHON_MINOR = 5 |
20 NEEDS_PYTHON_MICRO = 0 | 20 NEEDS_PYTHON_MICRO = 4 |