From fe01d8c55ffa5803e71838820f4af20988e8ebad Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 19 Jan 2008 04:54:09 +0000 Subject: [PATCH] version updates and todo/changelog update --- ChangeLog | 11 +++++++---- TODO | 5 +---- setup.py | 2 +- src/common.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4c09e99db..030d6f118 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,13 @@ -Deluge 0.5.9 (xx Januarary 2007) +Deluge 0.5.8.1 (18 Januarary 2007) + * 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 + * Attempt to fix issue where all the columns start very small * Change how we handle fastresume - should prevent rechecking * New theme for windows - * Built with Visual Studio 2005 on windows, which should prevent a lot of those - runtime errors that some people were having * Performance enhancements by removing needless casts - * Search & Anonymizing Browser are now plugins + * Search is now a plugin + * Browser removed Deluge 0.5.8 (29 December 2007) * Fix handling of corrupt torrent files diff --git a/TODO b/TODO index f23610cd4..8b1378917 100644 --- a/TODO +++ b/TODO @@ -1,4 +1 @@ -fix multiple trackers with torrent creator -remember last used search engine on restart -finish up tab support in browser -add peer + diff --git a/setup.py b/setup.py index 08b9f8ddb..73867a211 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ NAME = "deluge" FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.8" +VERSION = "0.5.8.1" 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 37494e9ef..e35141e87 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" +PROGRAM_VERSION = "0.5.8.1" CLIENT_CODE = "DE" CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))