diff --git a/glade/dgtkpref.glade b/glade/dgtkpref.glade index 6ce72d743..5a8450b84 100644 --- a/glade/dgtkpref.glade +++ b/glade/dgtkpref.glade @@ -622,7 +622,7 @@ their share ratio reaches: 480 5 - Preferences Dialog + Plugin Manager 583 431 False @@ -634,6 +634,7 @@ their share ratio reaches: True + False True @@ -659,16 +660,6 @@ their share ratio reaches: - - - True - gtk-apply - True - - - 1 - - 1 @@ -718,18 +709,12 @@ their share ratio reaches: True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK GTK_BUTTONBOX_END - - - True gtk-close True - - 1 - diff --git a/scripts/deluge b/scripts/deluge index dcc42dc11..3b5900a85 100755 --- a/scripts/deluge +++ b/scripts/deluge @@ -28,7 +28,7 @@ from optparse import OptionParser import sys import os, os.path -parser = OptionParser(usage="%prog [options] [actions]", version="%prog 0.5.0") +parser = OptionParser(usage="%prog [options] [actions]", version="%prog 0.4.90.0") parser.add_option("--tray", dest="tray", help="start Deluge hidden in system tray", metavar="TRAY", action="store_true") diff --git a/setup.py b/setup.py index 5ac647f39..ebb467d61 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ data = [('share/deluge/glade', glob.glob('glade/*.glade')), for plugin in glob.glob('plugins/*'): data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) ) -setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.5.0", +setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.4.90.0", author="Zach Tibbitts, Alon Zakai", author_email="zach@collegegeek.org, kripkensteiner@gmail.com", description="A bittorrent client written in PyGTK", diff --git a/src/dcommon.py b/src/dcommon.py index 440bf5908..f6288a945 100644 --- a/src/dcommon.py +++ b/src/dcommon.py @@ -22,7 +22,7 @@ import sys, os, os.path, webbrowser import xdg, xdg.BaseDirectory PROGRAM_NAME = "Deluge" -PROGRAM_VERSION = "0.4.9.0" +PROGRAM_VERSION = "0.4.90.0" CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge-svn') diff --git a/src/delugegtk.py b/src/delugegtk.py index 0f78ed77f..e6a975b18 100755 --- a/src/delugegtk.py +++ b/src/delugegtk.py @@ -65,7 +65,7 @@ class DelugeGTK(dbus.service.Object): self.load_default_settings() self.pref.load_from_file(self.conf_file) #Start the Deluge Manager: - self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.9", dcommon.CONFIG_DIR) + self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.90", dcommon.CONFIG_DIR) #Set up the interface: self.wtree = gtk.glade.XML(dcommon.get_glade_file("delugegtk.glade")) self.window = self.wtree.get_widget("main_window")