changeset 29:72f7c5904fbf traipse_dev

Update Manager moves into Beta 0.2 as the code is cleaned up some. The Update Manager is nearly ready to be placed into Grumpy Goblin, though it is not functioning 100%. It will provide users an opportunity to skip the update process, grab new repos, and update by choice.
author sirebral
date Sun, 02 Aug 2009 00:37:23 -0500
parents 6ef4bb8ee8ca
children 90900aa3e944
files orpg/orpg_version.py start_tester.py
diffstat 2 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/orpg/orpg_version.py	Sat Aug 01 14:38:19 2009 -0500
+++ b/orpg/orpg_version.py	Sun Aug 02 00:37:23 2009 -0500
@@ -4,7 +4,7 @@
 #BUILD NUMBER FORMAT: "YYMMDD-##" where ## is the incremental daily build index (if needed)
 DISTRO = "Traipse Dev"
 DIS_VER = "Grumpy Goblin"
-BUILD = "090801-00"
+BUILD = "090802-00"
 
 # This version is for network capability.
 PROTOCOL_VERSION = "1.2"
--- a/start_tester.py	Sat Aug 01 14:38:19 2009 -0500
+++ b/start_tester.py	Sun Aug 02 00:37:23 2009 -0500
@@ -9,7 +9,7 @@
 pyver.checkPyVersion()
 
 #os.system(HG + ' pull "http://hg.assembla.com/traipse"')
-os.system(HG + ' pull "http://hg.assembla.com/traipse_dev"')
+#os.system(HG + ' pull "http://hg.assembla.com/traipse_dev"')
 #os.system(HG + ' pull "http://hg.assembla.com/openrpg"')
 #os.system(HG + ' pull "http://hg.assembla.com/openrpg_dev"')
 
@@ -19,13 +19,14 @@
 
 from orpg.orpg_wx import *
 import orpg.main
+import orpg.tools.updater
+app = orpg.tools.updater.updateApp(0)
+app.MainLoop()
 
+"""
 if WXLOADED:
-    import orpg.tools.updater
-    app = orpg.tools.updater.updateApp(0)
-    app.MainLoop()
-
     mainapp = orpg.main.orpgApp(0)
     mainapp.MainLoop()
 else:
     print "You really really need wx!"
+"""