comparison orpg/orpg_version.py @ 59:5aff3ef1ae46 ornery-dev

New dev branch for Ornery Orc. Adds CSS styling to chat messages. Updates Update Manager to 0.7.1. Fixes problem with gametree and names. Adds a multi- line text entry, grows as you type more lines; not reactive to Shift-Enter, yet.
author sirebral
date Tue, 11 Aug 2009 17:48:30 -0500
parents 27e58b0483e7
children 3b2cfa13b610
comparison
equal deleted inserted replaced
58:27e58b0483e7 59:5aff3ef1ae46
1 VERSION = "1.8.0" 1 VERSION = "1.8.0"
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 = "Ornery Orc"
7 BUILD = "090807-02" 7 BUILD = "090811-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 + '}'
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 = 5 19 NEEDS_PYTHON_MINOR = 5
20 NEEDS_PYTHON_MICRO = 4 20 NEEDS_PYTHON_MICRO = 2