tweak version
This commit is contained in:
parent
2d27cede5f
commit
42f4d55db2
|
@ -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
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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++"
|
||||
|
|
|
@ -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('.')))
|
||||
|
|
Loading…
Reference in New Issue