diff --git a/ChangeLog b/ChangeLog index 7a44ca92c..714ec05d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,18 @@ -Deluge 1.0.4 (In Development) +Deluge 1.0.4 (31 October 2008) Core: * Fix #560 force an int value for global max connections * Fix #545 use proper values in ratio calculation + * Fix UPnP again.. GtkUI: * Fix #565 wait for the deluged process to start to prevent defunct processes + OS X: + * Fix issues with gettext + + Windows: + * Fix starting on non-English versions of Windows + Deluge 1.0.3 (18 October 2008) Core: * Fix upnp - it should work on more routers now too diff --git a/debian/changelog b/debian/changelog index 8f4aa4b45..abf5f9fc4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -deluge-torrent (1.0.3-1) unstable; urgency=low +deluge-torrent (1.0.4-1) unstable; urgency=low - * 1.0.3 + * 1.0.4 - -- Andrew Resch (andar) Sat, 18 Oct 2008 02:10:00 -0000 + -- Andrew Resch (andar) Fri, 31 Oct 2008 02:10:00 -0000 diff --git a/setup.py b/setup.py index 8df6ca94b..78a522c47 100644 --- a/setup.py +++ b/setup.py @@ -156,7 +156,7 @@ else: _lib_extensions = ['-mt-1_36', '-mt-1_35', '-mt'] _library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib'] - # Modify the libs if necessary for systems with only -mt boost libs + # Modify the libs if necessary for systems with only -mt boost libs for lib in _libraries: if lib[:6] == "boost_": for lib_prefix in _library_dirs: @@ -192,7 +192,7 @@ if windows_check() or not os.path.exists(os.path.join(sysconfig.get_config_var(" library_dirs = _library_dirs, sources = _sources ) - + _ext_modules = [libtorrent] class build_trans(cmd.Command): @@ -329,5 +329,5 @@ setup( ]}, packages = find_packages(exclude=["plugins"]), url = "http://deluge-torrent.org", - version = "1.0.3", + version = "1.0.4", )