mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Deluge 0.5 Beta 1
This commit is contained in:
parent
902c3ccf73
commit
d6abd0ecb9
3 changed files with 3 additions and 3 deletions
2
setup.py
2
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",
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue