ioshomebrew / iTransmission-3

The new and improved iTransmission
19 stars 14 forks source link

Torrent Folder to appear in file list #1

Open NorrinRadd opened 11 years ago

NorrinRadd commented 11 years ago

Torrent Folder to appear in file list, so it can be opened using the UIDocumentInteractionController, and sent to other applications for opening.

Scenario: send to an SCP app for transferring to a storage server/media center/etc.

NorrinRadd commented 11 years ago

For example, I added the following at line 1749 of Torrent.m. It shows in the list fine. At the moment, when the external application is selected from the InteractionController, nothing happens. The path may be wrong, I can't tell without debugging working.... (https://github.com/ioshomebrew/iTransmission-3/issues/2)

FileListNode * node = [[FileListNode alloc] initWithFileName: [self name] path: [self dataLocation] size: [self size] index: count torrent: self]; [fileList addObject: node]; [flatFileList addObject: node]; [node release];

ioshomebrew commented 11 years ago

Can you debug it on the simulator

Sent from my iPod

On Feb 9, 2013, at 1:04 AM, NorrinRadd notifications@github.com wrote:

For example, I added the following at line 1749 of Torrent.m. It shows in the list fine. At the moment, when the external application is selected from the InteractionController, nothing happens. The path may be wrong, I can't tell without debugging working.... (#2)

FileListNode * node = [[FileListNode alloc] initWithFileName: [self name] path: [self dataLocation] size: [self size] index: count torrent: self]; [fileList addObject: node]; [flatFileList addObject: node]; [node release];

— Reply to this email directly or view it on GitHub..

NorrinRadd commented 11 years ago

Due to Issue https://github.com/ioshomebrew/iTransmission-3/issues/2 , Xcode can't even open the simulator with this project file.