update version and changelog
This commit is contained in:
parent
3ba8ba710d
commit
e513c4a46d
|
@ -1,3 +1,8 @@
|
||||||
|
Deluge 0.5.9.0 (30 April 2008)
|
||||||
|
* Fix ratio
|
||||||
|
* Fix opening folers/files on windows
|
||||||
|
* Move all packages to use Python 2.5
|
||||||
|
|
||||||
Deluge 0.5.8.9 (14 April 2008)
|
Deluge 0.5.8.9 (14 April 2008)
|
||||||
* Fix segfault caused in 0.5.8.8 when adding torrents
|
* Fix segfault caused in 0.5.8.8 when adding torrents
|
||||||
* Change fast resume to use is_finished
|
* Change fast resume to use is_finished
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
NAME = "deluge"
|
NAME = "deluge"
|
||||||
FULLNAME = "Deluge BitTorrent Client"
|
FULLNAME = "Deluge BitTorrent Client"
|
||||||
VERSION = "0.5.8.9"
|
VERSION = "0.5.9.0"
|
||||||
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
|
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"
|
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++"
|
DESCRIPTION = "A GTK BitTorrent client written in Python and C++"
|
||||||
|
|
|
@ -32,7 +32,7 @@ import os
|
||||||
import xdg.BaseDirectory
|
import xdg.BaseDirectory
|
||||||
|
|
||||||
PROGRAM_NAME = "Deluge"
|
PROGRAM_NAME = "Deluge"
|
||||||
PROGRAM_VERSION = "0.5.8.9"
|
PROGRAM_VERSION = "0.5.9.0"
|
||||||
|
|
||||||
CLIENT_CODE = "DE"
|
CLIENT_CODE = "DE"
|
||||||
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))
|
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))
|
||||||
|
|
Loading…
Reference in New Issue