small tweaks

This commit is contained in:
Mitchell Livingston 2010-02-16 03:29:31 +00:00
parent 653537f8d7
commit b65ead918f
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
Copyright 2005-2009. All code is copyrighted by the respective authors.
Copyright 2005-2010. All code is copyrighted by the respective authors.
The OS X client, CLI client, and parts of libtransmission are licensed
under the terms of the MIT license.

4
NEWS
View File

@ -2,11 +2,11 @@
[http://trac.transmissionbt.com/query?milestone=1.90&group=component&groupdesc=1&order=severity All tickets closed by this release]
==== All Platforms ====
* Add an option to disable the .part suffix for incomplete files
* Add priority selector to GUI clients' add torrent windows
* Fix 1.81 bug that broke HTTP requests to sites that gave HTTP 301 redirects
* Fix 1.8x bug in announcing when finishing downloading and stopping at the same time
* Fix 1.8x bug in announcing "finished downloading" and "stopping" at the same time
* Fix 1.8x bug in announcing partial seeds
* Try harder to make announces finish, even if the tracker responds slowly
* Add priority selector to GUI clients' add torrent windows
* Fix bug that didn't honor download speed limits of 0
* Use fallocate64() for fast file preallocation on systems that support it
* Magnet link improvements

View File

@ -1552,7 +1552,7 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
if ([NSApp isOnSnowLeopardOrBetter])
{
NSMutableArray * paths = [NSMutableArray arrayWithCapacity: [selected count]];
for (Torrent * torrent in [fTableView selectedTorrents])
for (Torrent * torrent in selected)
{
NSString * location = [torrent dataLocation];
if (location)