diff --git a/ChangeLog b/ChangeLog index 9327d1f6d..b1f85d1bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Deluge 0.5.8RC2 (25 December 2007) + * Change add torrent to ctrl+n + * Change notification plugin to not show the file list, but only the torrent + name + * Allow removal of browser icon from toolbar + * Add buttons to browser to launch the main and footer frames into an + external browser + * Fix removing torrents from deluge template of webui - vonck7 + * Set the advanced webui template as default + * Wish everyone a happy holiday :) + + Deluge 0.5.8RC1 (22 December 2007) * Key bindings: ctrl+a adds a torrent diff --git a/setup.py b/setup.py index 4edb2e2b4..f8b58c8e2 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ NAME = "deluge" FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.7.95" +VERSION = "0.5.7.98" 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 831b475e6..f7f68d465 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.7.95" +PROGRAM_VERSION = "0.5.7.98" CLIENT_CODE = "DE" CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))