view start_release.py @ 81:65c212e9a5b4 ornery-dev

Controls panel is completed. Users cannot delete branches nicely without a Merc upgrade, so that feature will appear in Pious Paladin. Crash report is being tested on windows.
author sirebral
date Wed, 26 Aug 2009 23:24:45 -0500
parents 0b79d5dbbe9e
children bf799efe7a8a
line wrap: on
line source

#!/usr/bin/env python

import pyver
pyver.checkPyVersion()

#Update Manager
from orpg.orpg_wx import *
import upmana.updatemana
app = upmana.updatemana.updateApp(0)
app.MainLoop()

#Main Program
from orpg.orpg_wx import *
import orpg.main

if WXLOADED:
    mainapp = orpg.main.orpgApp(0)
    mainapp.MainLoop()
else:
    print "You really really need wx!"