Sevenfourforty / transmission-remote-dotnet

Automatically exported from code.google.com/p/transmission-remote-dotnet
0 stars 0 forks source link

Download Files Location in Torrent List #329

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Is it possible to add the download-files location to the torrent list?
- /media/torrent/incomplete/filename.xyz
- /media/torrent/finished/filename.xyz
- /media/mystorage/filename.xyz

i want to continue sharing the downloaded file after i have sorted them to 
other directories(otr-movies, podcasts, linux-isos) via the "move torrent data" 
function.
but if i do that its hard find unsorted downloads in the torrent list. if the 
location could be added to this list, it would be easyly possible to find 
unsorted downloads by sorting the torrentlist by location.

Original issue reported on code.google.com by FlorianH...@gmail.com on 3 Oct 2010 at 11:53

GoogleCodeExporter commented 8 years ago
just added this feature:

TorrentListView: 
- added column "torrentDownloadDirCol" with name "DownloadDir"

Torrent.cs
- after "SetText(14, this.FirstTrackerTrimmed);"
--> add "base.SubItems[15].Tag = this.DownloadDir;SetText(15, 
this.DownloadDir.ToString());"
- change "for (int i = 0; i < 14; i++)" to "for (int i = 0; i < 15; i++)"

tried to create a diff, but it is 98kb large(vs2010 & german conversion).

would be great if you could add this feature!
Thanks!

Original comment by FlorianH...@gmail.com on 3 Oct 2010 at 12:55

GoogleCodeExporter commented 8 years ago
Currently i dont want to add a new column to torrentlist. Maybe after i added 
the column hide/unhide feature.

Original comment by elso.and...@gmail.com on 4 Oct 2010 at 10:43