# HG changeset patch # User sirebral # Date 1254961383 18000 # Node ID e8b93e5f3721176399ea1dba95fb66b99e30349f # Parent ded1e7a25f8dfafeb319967e66fdad168120c379 Traipse Alpha 'OpenRPG' {091007-02} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary: {091006} 00: Adds Bookmarks (Alpha) with cool Smiley Star and Plus Symbol images! 03: Changes made to the map for increased portability. SnowDog has changes planned in Core, though. Added an initial push to the BCG. Not much to see, just shows off how it is re-writing Main code. {091007} 00: New images added to Plugin Control Panel for Auto Start. 01: Attempting to fix Deprecation warning from Main. 02: Second attempt, problem in gsclient with "s. diff -r ded1e7a25f8d -r e8b93e5f3721 orpg/networking/gsclient.py --- a/orpg/networking/gsclient.py Wed Oct 07 19:12:53 2009 -0500 +++ b/orpg/networking/gsclient.py Wed Oct 07 19:23:03 2009 -0500 @@ -657,7 +657,8 @@ else: ### Alpha ### Should fix the depricated module in Main #msg = "%s is creating room \'%s.\'" % (self.session.name, name) #Old Method - msg = " %s is creating room \'%s.\' " % (self.session.name, name) #new method + msg = "%s is creating room \'%s.\'" % (self.session.name, name) + msg = ''+msg+'' % (self.session.name, name) #new method self.session.send( msg ) self.session.send_create_group(name,pwd,boot_pwd,minversion) self.set_lobbybutton(1); #enable the Lobby quickbutton diff -r ded1e7a25f8d -r e8b93e5f3721 orpg/orpg_version.py --- a/orpg/orpg_version.py Wed Oct 07 19:12:53 2009 -0500 +++ b/orpg/orpg_version.py Wed Oct 07 19:23:03 2009 -0500 @@ -4,7 +4,7 @@ #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed) DISTRO = "Traipse Alpha" DIS_VER = "Ornery Orc" -BUILD = "091007-01" +BUILD = "091007-02" # This version is for network capability. PROTOCOL_VERSION = "1.2"