up version numbers and update changelog
This commit is contained in:
parent
cfbb5692cf
commit
5bbb7a526d
|
@ -1,7 +1,9 @@
|
||||||
Deluge 0.5.8.7 (xx March 2008)
|
Deluge 0.5.8.7 (25 March 2008)
|
||||||
* UPnP fixes
|
* UPnP fixes
|
||||||
* Bandwidth limiter fix
|
* Bandwidth limiter fix
|
||||||
* DHT routing table fix
|
* Various DHT fixes
|
||||||
|
* Fix upload ratio not saving
|
||||||
|
* Fix WebUI crash (ticket #89)
|
||||||
* Fix keyboard scrolling of plugins
|
* Fix keyboard scrolling of plugins
|
||||||
* Scheduler can now handle number of active torrents, upload slots and max connections - Ben
|
* Scheduler can now handle number of active torrents, upload slots and max connections - Ben
|
||||||
|
|
||||||
|
|
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.6"
|
VERSION = "0.5.8.7"
|
||||||
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.6"
|
PROGRAM_VERSION = "0.5.8.7"
|
||||||
|
|
||||||
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