1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00

only allow QuickLook of folders or finished downloads; update NEWS

This commit is contained in:
Mitchell Livingston 2008-05-21 15:49:37 +00:00
parent 64e328a741
commit 958f2447da
2 changed files with 5 additions and 1 deletions

1
NEWS
View file

@ -3,6 +3,7 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
1.30 (2008/mm/dd) 1.30 (2008/mm/dd)
http://trac.transmissionbt.com/query?group=component&milestone=1.30 http://trac.transmissionbt.com/query?group=component&milestone=1.30
- Mac - Mac
+ QuickLook integration in the main window and inspector's file tab
+ Transfers can be dragged to different groups + Transfers can be dragged to different groups
+ Status strings are toggled from the action button (they are no longer clickable) + Status strings are toggled from the action button (they are no longer clickable)

View file

@ -4026,7 +4026,10 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
Torrent * torrent; Torrent * torrent;
while ((torrent = [enumerator nextObject])) while ((torrent = [enumerator nextObject]))
{
if ([torrent folder] || [torrent isComplete])
[urlArray addObject: [NSURL fileURLWithPath: [torrent dataLocation]]]; [urlArray addObject: [NSURL fileURLWithPath: [torrent dataLocation]]];
}
return urlArray; return urlArray;
} }