tweak version

This commit is contained in:
Marcos Pinto 2007-12-31 10:43:37 +00:00
parent 2d27cede5f
commit 42f4d55db2
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Deluge 0.5.8 (29 December 2007)
* Fix handling of corrupt torrent files
* Fix having two instances of Deluge running on Ubuntu
Deluge 0.5.8RC2 (25 December 2007)
* Change add torrent to ctrl+n
* Change notification plugin to not show the file list, but only the torrent

View File

@ -28,7 +28,7 @@
NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client"
VERSION = "0.5.7.98"
VERSION = "0.5.8"
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com"
DESCRIPTION = "A GTK BitTorrent client written in Python and C++"

View File

@ -32,7 +32,7 @@ import os
import xdg.BaseDirectory
PROGRAM_NAME = "Deluge"
PROGRAM_VERSION = "0.5.7.98"
PROGRAM_VERSION = "0.5.8"
CLIENT_CODE = "DE"
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))