mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
only allow QuickLook of folders or finished downloads; update NEWS
This commit is contained in:
parent
64e328a741
commit
958f2447da
2 changed files with 5 additions and 1 deletions
1
NEWS
1
NEWS
|
@ -3,6 +3,7 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
|
|||
1.30 (2008/mm/dd)
|
||||
http://trac.transmissionbt.com/query?group=component&milestone=1.30
|
||||
- Mac
|
||||
+ QuickLook integration in the main window and inspector's file tab
|
||||
+ Transfers can be dragged to different groups
|
||||
+ Status strings are toggled from the action button (they are no longer clickable)
|
||||
|
||||
|
|
|
@ -4026,7 +4026,10 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
|
|||
Torrent * torrent;
|
||||
|
||||
while ((torrent = [enumerator nextObject]))
|
||||
[urlArray addObject: [NSURL fileURLWithPath: [torrent dataLocation]]];
|
||||
{
|
||||
if ([torrent folder] || [torrent isComplete])
|
||||
[urlArray addObject: [NSURL fileURLWithPath: [torrent dataLocation]]];
|
||||
}
|
||||
|
||||
return urlArray;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue