comparison orpg/main.py @ 94:118fbe111922 beta

Traipse Beta 'OpenRPG' {090919-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: 00: Adds menu changes to draw attention to important updates, errors, or other events. (image info coming soon) Traipse URL is not included in the repos tab and is set as default. Fixes Copy for Windows and Linux (finally!!) users. Fixes incomplete update to Grid and List nodes. Fixes incomplete update to Chat Commands. Fixes problems with Remote Image Upload. Fixes Drop and Drag of Minis to Map. CherryPy can now use any image in the webfiles/ folder and sub-folders. CherryPy can now Drop and Drag Minis to the Map. Minor changes to Update Manager's GUI. Expert recommendation warning added to Revision Update. Step down compatibility with open_rpg & component added to orpgCore. Using majority of 'Grumpy' network folder to correct server lag. 01: Where is the update? 02: Fixes CherryPit misspelling. Makes Traipse Suite 'Attention' item portable, and executes it on 'Critical' debug notices. Adds incomplete Shift + Enter to Text Entry, currently creates a 'Critical' warning.
author sirebral
date Sat, 19 Sep 2009 12:17:06 -0500
parents 68c7bd272f27
children 7ed4979cc1cf
comparison
equal deleted inserted replaced
93:04a6bf54f258 94:118fbe111922
269 self.traipseSuite.AppendItem(mana) 269 self.traipseSuite.AppendItem(mana)
270 270
271 self.debugConsole = wx.MenuItem(self.traipseSuite, -1, "Debug Console", "Debug Console") 271 self.debugConsole = wx.MenuItem(self.traipseSuite, -1, "Debug Console", "Debug Console")
272 self.Bind(wx.EVT_MENU, self.OnMB_DebugConsole, self.debugConsole) 272 self.Bind(wx.EVT_MENU, self.OnMB_DebugConsole, self.debugConsole)
273 self.traipseSuite.AppendItem(self.debugConsole) 273 self.traipseSuite.AppendItem(self.debugConsole)
274
275 def TraipseSuiteWarn(self, menuitem):
276 ### Beta ### Allows for the reuse of the 'Attention' menu.
277 ### component.get('frame').TraipseSuiteWarn('item') ### Portable
278 self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite!')
279 if menuitem == 'debug':
280 self.debugConsole.SetBitmap(wx.Bitmap(dir_struct["icon"] + 'spotlight.png'))
281 self.traipseSuite.RemoveItem(self.debugConsole)
282 self.traipseSuite.AppendItem(self.debugConsole)
274 283
275 284
276 ################################# 285 #################################
277 ## All Menu Events 286 ## All Menu Events
278 ################################# 287 #################################