version updates and todo/changelog update

This commit is contained in:
Marcos Pinto 2008-01-19 04:54:09 +00:00
parent 263387c6c9
commit fe01d8c55f
4 changed files with 10 additions and 10 deletions

View File

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

5
TODO
View File

@ -1,4 +1 @@
fix multiple trackers with torrent creator
remember last used search engine on restart
finish up tab support in browser
add peer

View File

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

View File

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