# HG changeset patch # User sirebral # Date 1264232786 21600 # Node ID 477b646a39f43733553e3406472b7a8895ea6ddf # Parent dd9eeaa22d146962744ebda7d4af31d79fc889cd Traipse Beta 'OpenRPG' {100123-00} 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 (Beta) New Features: Added Bookmarks 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 New TrueDebug Class in orpg_log (See documentation for usage) Portable Mercurial Tip of the Day added, from Core and community New Reference Syntax added for custom PC sheets New Child Reference for gametree New Parent Reference for gametree New Gametree Recursion method, mapping, context sensitivity, and effeciency.. New Features node with bonus nodes and Node Referencing help added Dieroller structure from Core New DieRoller portability for odd Dice Added 7th Sea die roller; ie [7k3] = [7d10.takeHighest(3).open(10)] New 'Mythos' System die roller added Added new vs. die roller method for WoD; ie [3v3] = [3d10.vs(3)]. Included for Mythos roller also New Warhammer FRPG Die Roller (Special thanks to Puu-san for the support) New EZ_Tree Reference system. Push a button, Traipse the tree, get a reference (Beta!) Fixes: Fix to Text based Server Fix to Remote Admin Commands Fix to Pretty Print, from Core Fix to Splitter Nodes not being created Fix to massive amounts of images loading, from Core Fix to Map from gametree not showing to all clients Fix to gametree about menus Fix to Password Manager check on startup Fix to PC Sheets from tool nodes. They now use the tabber_panel Fix to Whiteboard ID to prevent random line or text deleting. Fixes to Server, Remote Server, and Server GUI Fix to Update Manager; cleaner clode for saved repositories Fixes made to Settings Panel and now reactive settings when Ok is pressed Fixes to Alternity roller's attack roll. Uses a simple Tuple instead of a Splice Fix to Use panel of Forms and Tabbers. Now longer enters design mode Fix made Image Fetching. New fetching image and new failed image Modified ID's to prevent non updated clients from ruining the fix. default_manifest.xml renamed to default_upmana.xml diff -r dd9eeaa22d14 -r 477b646a39f4 orpg/networking/mplay_server_gui.py --- a/orpg/networking/mplay_server_gui.py Tue Jan 19 01:36:53 2010 -0600 +++ b/orpg/networking/mplay_server_gui.py Sat Jan 23 01:46:26 2010 -0600 @@ -556,24 +556,22 @@ def OnStart(self, event = None): """ Start server. """ if self.STATUS == SERVER_STOPPED: - # see if we already have name specified + ## Set name and admin password as empty + self.serverName = '' + self.bootPwd = '' + # see if we already have serverName and bootPwd specified try: validate.config_file( "server_ini.xml", "default_server_ini.xml" ) configDoc = parse(dir_struct["user"] + 'server_ini.xml').getroot() - if configDoc.get("name"): self.serverName = configDoc.get("name") + self.serverName = configDoc.get("name") + if configDoc.get("admin"): self.bootPwd = configDoc.get("admin") + elif configDoc.get("boot"): self.bootPwd = configDoc.get("boot") except: pass if self.serverName == '': self.serverName = 'Server Name' serverNameEntry = wx.TextEntryDialog(self, "Please Enter The Server Name You Wish To Use:", "Server's Name", self.serverName, wx.OK|wx.CANCEL|wx.CENTRE ) if serverNameEntry.ShowModal() == wx.ID_OK: self.serverName = serverNameEntry.GetValue() - # see if we already have password specified - try: - validate.config_file( "server_ini.xml", "default_server_ini.xml" ) - configDoc = parse(dir_struct["user"] + 'server_ini.xml').getroot() - if configDoc.get("admin"): self.bootPwd = configDoc.get("admin") - elif configDoc.get("boot"): self.bootPwd = configDoc.get("boot") - except: pass if self.bootPwd == '': serverPasswordEntry = wx.TextEntryDialog(self, "Please Enter The Server Admin Password:", "Server's Password", diff -r dd9eeaa22d14 -r 477b646a39f4 orpg/orpg_version.py --- a/orpg/orpg_version.py Tue Jan 19 01:36:53 2010 -0600 +++ b/orpg/orpg_version.py Sat Jan 23 01:46:26 2010 -0600 @@ -4,7 +4,7 @@ #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed) DISTRO = "Traipse Beta" DIS_VER = "Ornery Orc" -BUILD = "100118-00" +BUILD = "100123-00" # This version is for network capability. PROTOCOL_VERSION = "1.2" diff -r dd9eeaa22d14 -r 477b646a39f4 orpg/templates/default_LobbyMessage.html --- a/orpg/templates/default_LobbyMessage.html Tue Jan 19 01:36:53 2010 -0600 +++ b/orpg/templates/default_LobbyMessage.html Sat Jan 23 01:46:26 2010 -0600 @@ -21,7 +21,7 @@ Chris Davis, Michael Edwards, Andrew Ettinger, Dj Gilcrease, Todd Faris, Christopher Hickman, Paul Hosking, Scott Mackay, Brian Manning, Jesse McConnell, Brian Osman, Rome Reginelli, Christopher Rouse, Dave Sanders, Mark Tarrabain, - David Byron, and Tyler Starke. + David Byron, David, Vrabel, and Tyler Starke.