diff --git a/ChangeLog b/ChangeLog index 55c35e1d8..b4f750482 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,16 @@ -Deluge 1.0.5 (In Development) +Deluge 1.0.5 (09 November 2008) GtkUI: * Increase the per-torrent stop share ratio max to 99999.0 * Fix #528 make sure gtkui config file is written before exiting + * Fix UDP tracker support WebUi: * Javascript auto refresh for both templates. Windows: * Fix #577 adding torrents by drag n' drop + * Fix association in Vista + * Fix WebUI launch Deluge 1.0.4 (31 October 2008) Core: diff --git a/debian/changelog b/debian/changelog index abf5f9fc4..7cb7c6a0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -deluge-torrent (1.0.4-1) unstable; urgency=low +deluge-torrent (1.0.5-1) unstable; urgency=low - * 1.0.4 + * 1.0.5 - -- Andrew Resch (andar) Fri, 31 Oct 2008 02:10:00 -0000 + -- Andrew Resch (andar) Sun, 09 Nov 2008 02:10:00 -0000 diff --git a/setup.py b/setup.py index 5311fce8b..067f14342 100644 --- a/setup.py +++ b/setup.py @@ -73,8 +73,8 @@ if windows_check(): "-D_WIN32_WINNT=0x0500", "-D_WIN32", "-DWIN32_LEAN_AND_MEAN", - "-DBOOST_ALL_NO_LIB", - "-DBOOST_ALL_DYN_LINK", + "-DBOOST_ALL_NO_LIB", + "-DBOOST_ALL_DYN_LINK", "-DBOOST_THREAD_USE_LIB", "-DBOOST_WINDOWS", "-DBOOST_WINDOWS_API", @@ -327,5 +327,5 @@ setup( ]}, packages = find_packages(exclude=["plugins"]), url = "http://deluge-torrent.org", - version = "1.0.4", + version = "1.0.5", )