diff --git a/setup.py b/setup.py index 988576b5f..d157d8938 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,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.4.90.0", +setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.4.90.1", 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 e9946d3b2..0c1fcfe68 100644 --- a/src/dcommon.py +++ b/src/dcommon.py @@ -24,7 +24,7 @@ import xdg, xdg.BaseDirectory import gettext PROGRAM_NAME = "Deluge" -PROGRAM_VERSION = "0.4.90.0" +PROGRAM_VERSION = "0.4.90.1" CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge') diff --git a/src/delugegtk.py b/src/delugegtk.py index 77442e9f3..60174ea23 100644 --- a/src/delugegtk.py +++ b/src/delugegtk.py @@ -60,7 +60,7 @@ class DelugeGTK(dbus.service.Object): f.flush() f.close() #Start the Deluge Manager: - self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.90", dcommon.CONFIG_DIR) + self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.90.1", dcommon.CONFIG_DIR) self.plugins = delugeplugins.PluginManager(self.manager, self) self.plugins.add_plugin_dir(dcommon.PLUGIN_DIR)