up version number
This commit is contained in:
parent
53a5999462
commit
aaf6d8128d
2
setup.py
2
setup.py
|
@ -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++"
|
||||||
|
|
|
@ -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('.')))
|
||||||
|
|
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue