# HG changeset patch # User sirebral # Date 1255405737 18000 # Node ID d078a8cdc1e4e4810c156517640fa5209ede8a08 # Parent 17b64e9133e952cde82b2f1eae1f37822830d112 Traipse Alpha 'OpenRPG' {091012-01} 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: Adds Bookmarks (Alpha) with cool Smiley Star and Plus Symbol images! 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. Fix to remote admin commands Minor fix to texted based server, works in /System/ folder Some Core changes to gametree to correctly disply Pretty Print, thanks David! Fix to Splitter Nodes not being created. Added images to Plugin Control panel for Autostart feature Fix to massive amounts of images loading; from Core {091011} fix to gsclient so with_statement imports Added 'boot' command to remote admin Prep work in Pass tool for remote admin rankings and different passwords, ei, Server, Admin, Moderator, etc. {091012} 00: Remote Admin Commands more organized, more prep work. Added Confirmation window for sent nodes. 01: Un remarks Update Manager from main.py diff -r 17b64e9133e9 -r d078a8cdc1e4 orpg/main.py --- a/orpg/main.py Mon Oct 12 01:11:10 2009 -0500 +++ b/orpg/main.py Mon Oct 12 22:48:57 2009 -0500 @@ -133,10 +133,10 @@ logger.debug("plugins reloaded and startup plugins launched") self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) - #Load Update Manager# Un remark if you have Mercurial installed - #component.add('updatemana', self.updateMana) - #logger.debug("update manager reloaded") - #self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + #Load Update Manager + component.add('updatemana', self.updateMana) + logger.debug("update manager reloaded") + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) #Load Debug Console component.add('debugconsole', self.debugger) @@ -265,10 +265,10 @@ self.traipseSuite = wx.Menu() self.mainmenu.Insert(5, self.traipseSuite, "&Traipse Suite") - #Update Manager# Un remark if you have Mercurial installed - #mana = wx.MenuItem(self.traipseSuite, wx.ID_ANY, "Update Manager", "Update Manager") - #self.Bind(wx.EVT_MENU, self.OnMB_UpdateManagerPanel, mana) - #self.traipseSuite.AppendItem(mana) + #Update Manager + mana = wx.MenuItem(self.traipseSuite, wx.ID_ANY, "Update Manager", "Update Manager") + self.Bind(wx.EVT_MENU, self.OnMB_UpdateManagerPanel, mana) + self.traipseSuite.AppendItem(mana) self.debugConsole = wx.MenuItem(self.traipseSuite, -1, "Debug Console", "Debug Console") self.Bind(wx.EVT_MENU, self.OnMB_DebugConsole, self.debugConsole) @@ -640,18 +640,18 @@ self.SetDimensions(posx, posy, w, h) logger.debug("Dimensions Set") - # Update Manager # Un remark if you have Mercurial installed - #self.manifest = manifest.ManifestChanges() - #self.updateMana = upmana.updatemana.updaterFrame(self, - # "OpenRPG Update Manager Beta 0.8", component, self.manifest, True) - #logger.debug("Menu Created") - #h = int(xml_dom.getAttribute("height")) - #w = int(xml_dom.getAttribute("width")) - #posx = int(xml_dom.getAttribute("posx")) - #posy = int(xml_dom.getAttribute("posy")) - #maximized = int(xml_dom.getAttribute("maximized")) - #self.SetDimensions(posx, posy, w, h) - #logger.debug("Dimensions Set") + # Update Manager + self.manifest = manifest.ManifestChanges() + self.updateMana = upmana.updatemana.updaterFrame(self, + "OpenRPG Update Manager Beta 0.8", component, self.manifest, True) + logger.debug("Menu Created") + h = int(xml_dom.getAttribute("height")) + w = int(xml_dom.getAttribute("width")) + posx = int(xml_dom.getAttribute("posx")) + posy = int(xml_dom.getAttribute("posy")) + maximized = int(xml_dom.getAttribute("maximized")) + self.SetDimensions(posx, posy, w, h) + logger.debug("Dimensions Set") # Debug Console self.debugger = orpg.tools.orpg_log.DebugConsole(self) @@ -1230,8 +1230,8 @@ logger._set_log_level = int(settings.get_setting('LoggingLevel')) logger._set_log_to_console(False) - #Update Manager# Un remark if you have Mercurial installed - #self.manifest = manifest.ManifestChanges() + Update Manager + self.manifest = manifest.ManifestChanges() self.called = False wx.InitAllImageHandlers() diff -r 17b64e9133e9 -r d078a8cdc1e4 orpg/orpg_version.py --- a/orpg/orpg_version.py Mon Oct 12 01:11:10 2009 -0500 +++ b/orpg/orpg_version.py Mon Oct 12 22:48:57 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 = "091012-00" +BUILD = "091012-01" # This version is for network capability. PROTOCOL_VERSION = "1.2"