Deluge 0.5 Beta 1

This commit is contained in:
Zach Tibbitts 2007-02-19 23:26:19 +00:00
parent 902c3ccf73
commit d6abd0ecb9
3 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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')

View file

@ -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)