mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
remove cache file when removing a transfer
This commit is contained in:
parent
4456c2dd90
commit
d4eb3c018e
2 changed files with 3 additions and 2 deletions
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
||||||
NEWS file for Transmission <http://www.transmissionbt.com/>
|
NEWS file for Transmission <http://www.transmissionbt.com/>
|
||||||
|
|
||||||
1.10 (2008/xx/yy)
|
1.10 (2008/xx/yy)
|
||||||
|
- All Platforms:
|
||||||
|
+ Removing transfers will remove the associated cache file
|
||||||
- Mac:
|
- Mac:
|
||||||
+ Window when adding torrents to select files and other settings
|
+ Window when adding torrents to select files and other settings
|
||||||
+ Leopard: Group dividers
|
+ Leopard: Group dividers
|
||||||
|
|
|
@ -202,8 +202,7 @@ void completenessChangeCallback(tr_torrent * torrent, cp_status_t status, void *
|
||||||
//allow the file to be index by Time Machine
|
//allow the file to be index by Time Machine
|
||||||
[self setTimeMachineExclude: NO forPath: [[self downloadFolder] stringByAppendingPathComponent: [self name]]];
|
[self setTimeMachineExclude: NO forPath: [[self downloadFolder] stringByAppendingPathComponent: [self name]]];
|
||||||
|
|
||||||
tr_torrentRemoveSaved(fHandle);
|
tr_torrentDelete(fHandle);
|
||||||
tr_torrentClose(fHandle);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) changeIncompleteDownloadFolder: (NSString *) folder
|
- (void) changeIncompleteDownloadFolder: (NSString *) folder
|
||||||
|
|
Loading…
Reference in a new issue