up version for fix release and update chnagelog
This commit is contained in:
parent
34b1726178
commit
7406b1cd7d
|
@ -1,4 +1,11 @@
|
|||
Deluge 0.5.8.1 (18 Januarary 2007)
|
||||
Deluge 0.5.8.2 (24 janurary 2008)
|
||||
* Fix column width saving
|
||||
* Option to download new blocklist after certain number of days - Patch from Mark Stahler
|
||||
* Fix ui-locking when tracker responded in non-utf8 encoding
|
||||
* Remove Extra Stats plugin
|
||||
* Prevent Scheduler plugin from setting an invalid 'max_active_torrents'
|
||||
|
||||
Deluge 0.5.8.1 (18 Januarary 2008)
|
||||
* Catch various exceptions from possibly corrupted persistent.state
|
||||
* Use pieces wanted instead of total pieces to draw adv progress bar
|
||||
* Properly catch 'address already in use' error when trying to use a port that is in use
|
||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@
|
|||
|
||||
NAME = "deluge"
|
||||
FULLNAME = "Deluge BitTorrent Client"
|
||||
VERSION = "0.5.8.1"
|
||||
VERSION = "0.5.8.2"
|
||||
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.8.1"
|
||||
PROGRAM_VERSION = "0.5.8.2"
|
||||
|
||||
CLIENT_CODE = "DE"
|
||||
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))
|
||||
|
|
Loading…
Reference in New Issue