up version for fix release and update chnagelog

This commit is contained in:
Marcos Pinto 2008-01-24 23:19:28 +00:00
parent 34b1726178
commit 7406b1cd7d
3 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -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++"

View File

@ -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('.')))