Mercurial > traipse_dev
comparison orpg/main.py @ 134:82c47d583493 alpha
Traipse Alpha 'OpenRPG' {091010-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 (Cleaning up for Beta)
Added Bookmarks
Fix to Remote Admin Commands
Minor fix to text based Server
Fix to Pretty Print, from Core
Fix to Splitter Nodes not being created
Fix to massive amounts of images loading, from Core
Added 'boot' command to remote admin
Added confirmation window for sent nodes
Minor changes to allow for portability to an OpenSUSE linux OS
Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG
Zoom Mouse plugin added
Images added to Plugin UI
Switching to Element Tree
Map efficiency, from FlexiRPG
Added Status Bar to Update Manager
default_manifest.xml renamed to default_upmana.xml
Cleaner clode for saved repositories
New TrueDebug Class in orpg_log (See documentation for usage)
Mercurial's hgweb folder is ported to upmana
**Pretty important update that can help remove thousands of dead children from your gametree.
**Children, <forms />, <group_atts />, <horizontal />, <cols />, <rows />, <height />, etc... are all tags now.
Check your gametree and look for dead children!!
**New Gamtree Recusion method, mapping, and context sensitivity. !!Alpha - Watch out for infinite loops!!
Dead Node Children, now that's a
O O
-v-v- Happy Halloween!
author | sirebral |
---|---|
date | Tue, 10 Nov 2009 13:32:07 -0600 |
parents | 37d26a98883f |
children | 1ed2feab0db9 |
comparison
equal
deleted
inserted
replaced
133:37d26a98883f | 134:82c47d583493 |
---|---|
278 self.traipseSuite.AppendItem(self.debugConsole) | 278 self.traipseSuite.AppendItem(self.debugConsole) |
279 | 279 |
280 def TraipseSuiteWarn(self, menuitem): | 280 def TraipseSuiteWarn(self, menuitem): |
281 ### Beta ### Allows for the reuse of the 'Attention' menu. | 281 ### Beta ### Allows for the reuse of the 'Attention' menu. |
282 ### component.get('frame').TraipseSuiteWarn('item') ### Portable | 282 ### component.get('frame').TraipseSuiteWarn('item') ### Portable |
283 self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite!') | 283 self.mainmenu.Remove(8) |
284 self.mainmenu.Insert(8, self.traipseSuite, "&Traipse Suite!") | |
285 #self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite!') | |
284 if menuitem == 'debug': | 286 if menuitem == 'debug': |
285 if self.debugger.IsShown() == True: | 287 if self.debugger.IsShown() == True: |
286 self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite') | 288 self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite') |
287 else: | 289 else: |
288 self.debugConsole.SetBitmap(wx.Bitmap(dir_struct["icon"] + 'spotlight.png')) | 290 self.debugConsole.SetBitmap(wx.Bitmap(dir_struct["icon"] + 'spotlight.png')) |
290 self.traipseSuite.AppendItem(self.debugConsole) | 292 self.traipseSuite.AppendItem(self.debugConsole) |
291 | 293 |
292 def TraipseSuiteWarnCleanup(self, menuitem): | 294 def TraipseSuiteWarnCleanup(self, menuitem): |
293 ### Beta ### Allows for portable cleanup of the 'Attention' menu. | 295 ### Beta ### Allows for portable cleanup of the 'Attention' menu. |
294 ### component.get('frame').TraipseSuiteWarnCleanup('item') ### Portable | 296 ### component.get('frame').TraipseSuiteWarnCleanup('item') ### Portable |
295 self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite') | 297 self.mainmenu.Remove(8) |
298 self.mainmenu.Insert(8, self.traipseSuite, "&Traipse Suite") | |
299 #self.mainmenu.Replace(8, self.traipseSuite, '&Traipse Suite') | |
296 if menuitem == 'debug': | 300 if menuitem == 'debug': |
297 self.traipseSuite.RemoveItem(self.debugConsole) | 301 self.traipseSuite.RemoveItem(self.debugConsole) |
298 self.debugConsole.SetBitmap(wx.Bitmap(dir_struct["icon"] + 'clear.gif')) | 302 self.debugConsole.SetBitmap(wx.Bitmap(dir_struct["icon"] + 'clear.gif')) |
299 self.traipseSuite.AppendItem(self.debugConsole) | 303 self.traipseSuite.AppendItem(self.debugConsole) |
300 | 304 |