Prep for release

This commit is contained in:
Andrew Resch 2008-10-30 16:57:19 +00:00
commit bacb57a795
3 changed files with 14 additions and 7 deletions

View file

@ -1,11 +1,18 @@
Deluge 1.0.4 (In Development) Deluge 1.0.4 (31 October 2008)
Core: Core:
* Fix #560 force an int value for global max connections * Fix #560 force an int value for global max connections
* Fix #545 use proper values in ratio calculation * Fix #545 use proper values in ratio calculation
* Fix UPnP again..
GtkUI: GtkUI:
* Fix #565 wait for the deluged process to start to prevent defunct processes * 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) Deluge 1.0.3 (18 October 2008)
Core: Core:
* Fix upnp - it should work on more routers now too * Fix upnp - it should work on more routers now too

6
debian/changelog vendored
View file

@ -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) <andrewresch@gmail.com> Sat, 18 Oct 2008 02:10:00 -0000 -- Andrew Resch (andar) <andrewresch@gmail.com> Fri, 31 Oct 2008 02:10:00 -0000

View file

@ -156,7 +156,7 @@ else:
_lib_extensions = ['-mt-1_36', '-mt-1_35', '-mt'] _lib_extensions = ['-mt-1_36', '-mt-1_35', '-mt']
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib'] _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: for lib in _libraries:
if lib[:6] == "boost_": if lib[:6] == "boost_":
for lib_prefix in _library_dirs: 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, library_dirs = _library_dirs,
sources = _sources sources = _sources
) )
_ext_modules = [libtorrent] _ext_modules = [libtorrent]
class build_trans(cmd.Command): class build_trans(cmd.Command):
@ -329,5 +329,5 @@ setup(
]}, ]},
packages = find_packages(exclude=["plugins"]), packages = find_packages(exclude=["plugins"]),
url = "http://deluge-torrent.org", url = "http://deluge-torrent.org",
version = "1.0.3", version = "1.0.4",
) )