up version number

This commit is contained in:
Marcos Pinto 2008-06-02 10:15:10 +00:00
parent 53a5999462
commit aaf6d8128d
3 changed files with 6 additions and 2 deletions

View File

@ -28,7 +28,7 @@
NAME = "deluge" NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client" FULLNAME = "Deluge BitTorrent Client"
VERSION = "0.5.9.1" VERSION = "0.5.9.2"
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul" AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com" EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com"
DESCRIPTION = "A GTK BitTorrent client written in Python and C++" DESCRIPTION = "A GTK BitTorrent client written in Python and C++"

View File

@ -32,7 +32,7 @@ import os
import xdg.BaseDirectory import xdg.BaseDirectory
PROGRAM_NAME = "Deluge" PROGRAM_NAME = "Deluge"
PROGRAM_VERSION = "0.5.9.1" PROGRAM_VERSION = "0.5.9.2"
CLIENT_CODE = "DE" CLIENT_CODE = "DE"
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.'))) CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))

View File

@ -40,6 +40,7 @@ class WizardGTK:
def __init__(self): def __init__(self):
import gtk import gtk
import gobject
import gtk.glade import gtk.glade
import os import os
import deluge import deluge
@ -120,7 +121,10 @@ class WizardGTK:
#show wizard #show wizard
self.window.show() self.window.show()
gobject.threads_init()
gtk.gdk.threads_enter()
gtk.main() gtk.main()
gtk.gdk.threads_leave()
def toggle(self, *args): def toggle(self, *args):
""" """