version updates and todo/changelog update
This commit is contained in:
parent
263387c6c9
commit
fe01d8c55f
11
ChangeLog
11
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
|
* Change how we handle fastresume - should prevent rechecking
|
||||||
* New theme for windows
|
* 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
|
* 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)
|
Deluge 0.5.8 (29 December 2007)
|
||||||
* Fix handling of corrupt torrent files
|
* Fix handling of corrupt torrent files
|
||||||
|
|
5
TODO
5
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
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
NAME = "deluge"
|
NAME = "deluge"
|
||||||
FULLNAME = "Deluge BitTorrent Client"
|
FULLNAME = "Deluge BitTorrent Client"
|
||||||
VERSION = "0.5.8"
|
VERSION = "0.5.8.1"
|
||||||
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
|
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"
|
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++"
|
DESCRIPTION = "A GTK BitTorrent client written in Python and C++"
|
||||||
|
|
|
@ -32,7 +32,7 @@ import os
|
||||||
import xdg.BaseDirectory
|
import xdg.BaseDirectory
|
||||||
|
|
||||||
PROGRAM_NAME = "Deluge"
|
PROGRAM_NAME = "Deluge"
|
||||||
PROGRAM_VERSION = "0.5.8"
|
PROGRAM_VERSION = "0.5.8.1"
|
||||||
|
|
||||||
CLIENT_CODE = "DE"
|
CLIENT_CODE = "DE"
|
||||||
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))
|
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))
|
||||||
|
|
Loading…
Reference in New Issue