diff --git a/ChangeLog b/ChangeLog index 030d6f118..805b06c1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/setup.py b/setup.py index 73867a211..116310327 100644 --- a/setup.py +++ b/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++" diff --git a/src/common.py b/src/common.py index e35141e87..945d04749 100644 --- a/src/common.py +++ b/src/common.py @@ -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('.')))