preping v# for rc
This commit is contained in:
parent
93174f2721
commit
8b7de9583d
5
setup.py
5
setup.py
|
@ -29,6 +29,9 @@ import msgfmt
|
|||
pythonVersion = platform.python_version()[0:3]
|
||||
|
||||
|
||||
APP_VERSION = "0.4.99.0"
|
||||
|
||||
|
||||
|
||||
#
|
||||
# NOTE: The following "hack" removes the -g and -Wstrict-prototypes
|
||||
|
@ -241,7 +244,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.3",
|
||||
setup(name="deluge", fullname="Deluge BitTorrent Client", version=APP_VERSION,
|
||||
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.3"
|
||||
PROGRAM_VERSION = "0.5"
|
||||
|
||||
CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge')
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ class DelugeGTK:
|
|||
f.close()
|
||||
#Start the Deluge Manager:
|
||||
p = "DE"
|
||||
v = "0490"
|
||||
v = "0500"
|
||||
s = "%s %s"%(dcommon.PROGRAM_NAME, dcommon.PROGRAM_VERSION)
|
||||
try:
|
||||
self.manager = deluge.Manager(p, v, s, dcommon.CONFIG_DIR)
|
||||
|
|
Loading…
Reference in New Issue