preping v# for rc

This commit is contained in:
Zach Tibbitts 2007-03-05 22:38:22 +00:00
parent 93174f2721
commit 8b7de9583d
3 changed files with 6 additions and 3 deletions

View File

@ -29,6 +29,9 @@ import msgfmt
pythonVersion = platform.python_version()[0:3] pythonVersion = platform.python_version()[0:3]
APP_VERSION = "0.4.99.0"
# #
# NOTE: The following "hack" removes the -g and -Wstrict-prototypes # 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/*'): for plugin in glob.glob('plugins/*'):
data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) ) 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="Zach Tibbitts, Alon Zakai",
author_email="zach@collegegeek.org, kripkensteiner@gmail.com", author_email="zach@collegegeek.org, kripkensteiner@gmail.com",
description="A bittorrent client written in PyGTK", description="A bittorrent client written in PyGTK",

View File

@ -24,7 +24,7 @@ import xdg, xdg.BaseDirectory
import gettext import gettext
PROGRAM_NAME = "Deluge" PROGRAM_NAME = "Deluge"
PROGRAM_VERSION = "0.4.90.3" PROGRAM_VERSION = "0.5"
CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge') CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge')

View File

@ -52,7 +52,7 @@ class DelugeGTK:
f.close() f.close()
#Start the Deluge Manager: #Start the Deluge Manager:
p = "DE" p = "DE"
v = "0490" v = "0500"
s = "%s %s"%(dcommon.PROGRAM_NAME, dcommon.PROGRAM_VERSION) s = "%s %s"%(dcommon.PROGRAM_NAME, dcommon.PROGRAM_VERSION)
try: try:
self.manager = deluge.Manager(p, v, s, dcommon.CONFIG_DIR) self.manager = deluge.Manager(p, v, s, dcommon.CONFIG_DIR)