├── .gitignore ├── .gitmodules ├── SwarmLoader ├── AboutViewController.h ├── AboutViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── BlacklistViewController.h ├── BlacklistViewController.m ├── ColorTheme.h ├── ColorTheme.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── FileBrowserViewController.h ├── FileBrowserViewController.m ├── FileDownloader.h ├── FileDownloader.m ├── Icon.png ├── Icon@2x.png ├── ImageViewController.h ├── ImageViewController.m ├── KxTableViewController.h ├── KxTableViewController.m ├── LogViewController.h ├── LogViewController.m ├── ProbePort.h ├── ProbePort.m ├── SettingsViewController.h ├── SettingsViewController.m ├── SwarmLoader-Info.plist ├── SwarmLoader-Prefix.pch ├── TextViewController.h ├── TextViewController.m ├── TorrentCell.h ├── TorrentCell.m ├── TorrentCell.xib ├── TorrentDetailViewController.h ├── TorrentDetailViewController.m ├── TorrentPeerCell.h ├── TorrentPeerCell.m ├── TorrentPeerCell.xib ├── TorrentPeersViewController.h ├── TorrentPeersViewController.m ├── TorrentPiecesViewController.h ├── TorrentPiecesViewController.m ├── TorrentPiecesViewController.xib ├── TorrentSwarmViewController.h ├── TorrentSwarmViewController.m ├── TorrentsViewController.h ├── TorrentsViewController.m ├── WebBrowserViewController.h ├── WebBrowserViewController.m ├── category │ ├── UIColor+Kolyvan.h │ ├── UIColor+Kolyvan.m │ ├── UIFont+Kolyvan.h │ ├── UIFont+Kolyvan.m │ ├── UITabBarController+Kolyvan.h │ └── UITabBarController+Kolyvan.m ├── en.lproj │ └── InfoPlist.strings ├── helpers.h ├── helpers.m └── main.m ├── SwarmLoaderTests ├── SwarmLoaderTests-Info.plist ├── SwarmLoaderTests.h ├── SwarmLoaderTests.m ├── TorrentFilesTests.h ├── TorrentFilesTests.m └── en.lproj │ └── InfoPlist.strings ├── kxtorrent.xcodeproj └── project.pbxproj ├── kxtorrent ├── TorrentClient.h ├── TorrentClient.m ├── TorrentErrors.h ├── TorrentErrors.m ├── TorrentFiles.h ├── TorrentFiles.m ├── TorrentMetaInfo.h ├── TorrentMetaInfo.m ├── TorrentMeter.h ├── TorrentMeter.m ├── TorrentPeer.h ├── TorrentPeer.m ├── TorrentPeerWire.h ├── TorrentPeerWire.m ├── TorrentPiece.h ├── TorrentPiece.m ├── TorrentServer.h ├── TorrentServer.m ├── TorrentSettings.h ├── TorrentSettings.m ├── TorrentTracker.h ├── TorrentTracker.m ├── TorrentUtils.h ├── TorrentUtils.m ├── bencode.h ├── bencode.m └── kxtorrent-Prefix.pch ├── kxtorrentTests ├── en.lproj │ └── InfoPlist.strings ├── kxtorrentTests-Info.plist ├── kxtorrentTests.h └── kxtorrentTests.m ├── lgpl-3.0.txt ├── readme.md ├── resources ├── firstrun │ ├── 0e876ce2a1a504f849ca72a5e2bc07347b3bc957 │ ├── 29ffc066911f625f4c0788acd85b3319.bookmark │ ├── 2c075e9a7d85e6f9b249865f6702ece4.bookmark │ ├── 82ca4f56ecd05f229208e37645544235.bookmark │ ├── a1f2a7aee29db1bbc78fa80a75599623.bookmark │ └── d627c79691ce344c9746a897f5add9184c566946 ├── icons │ ├── Icon-Small.png │ ├── Icon1024.png │ ├── Icon1024.tiff │ ├── Icon114.tiff │ ├── Icon29.tiff │ └── Icon57.tiff ├── images │ ├── 1pix.png │ ├── background.png │ ├── browser_cancel.png │ ├── browser_refresh.png │ ├── checkmark_small.png │ ├── checkmark_small@2x.png │ ├── collapse.png │ ├── delete_small.png │ ├── delete_small@2x.png │ ├── expand.png │ ├── fileimages │ │ ├── download.png │ │ ├── download@2x.png │ │ ├── empty.png │ │ ├── empty@2x.png │ │ ├── folder.png │ │ ├── folder@2x.png │ │ ├── movie.png │ │ ├── movie@2x.png │ │ ├── music.png │ │ ├── music@2x.png │ │ ├── picture.png │ │ ├── picture@2x.png │ │ ├── text.png │ │ ├── text@2x.png │ │ ├── unknown.png │ │ └── unknown@2x.png │ ├── globe.png │ ├── globe@2x.png │ ├── home.png │ ├── home@2x.png │ ├── pause.png │ ├── prev.png │ ├── prev@2x.png │ ├── reload.png │ ├── reload@2x.png │ ├── resume.png │ ├── settings.png │ ├── settings@2x.png │ ├── star.png │ ├── star@2x.png │ ├── star_empty.png │ ├── star_empty@2x.png │ ├── star_empty_small.png │ ├── star_empty_small@2x.png │ ├── star_small.png │ └── star_small@2x.png ├── start.css ├── start.html └── torrents │ └── test.torrent └── screenshots ├── detail.png ├── downloadtorrentfile.png ├── filebrowser.png ├── main.png ├── pieces.png ├── settings.png └── webbrowser.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/.gitmodules -------------------------------------------------------------------------------- /SwarmLoader/AboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/AboutViewController.h -------------------------------------------------------------------------------- /SwarmLoader/AboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/AboutViewController.m -------------------------------------------------------------------------------- /SwarmLoader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/AppDelegate.h -------------------------------------------------------------------------------- /SwarmLoader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/AppDelegate.m -------------------------------------------------------------------------------- /SwarmLoader/BlacklistViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/BlacklistViewController.h -------------------------------------------------------------------------------- /SwarmLoader/BlacklistViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/BlacklistViewController.m -------------------------------------------------------------------------------- /SwarmLoader/ColorTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ColorTheme.h -------------------------------------------------------------------------------- /SwarmLoader/ColorTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ColorTheme.m -------------------------------------------------------------------------------- /SwarmLoader/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/Default-568h@2x.png -------------------------------------------------------------------------------- /SwarmLoader/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/Default.png -------------------------------------------------------------------------------- /SwarmLoader/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/Default@2x.png -------------------------------------------------------------------------------- /SwarmLoader/FileBrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/FileBrowserViewController.h -------------------------------------------------------------------------------- /SwarmLoader/FileBrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/FileBrowserViewController.m -------------------------------------------------------------------------------- /SwarmLoader/FileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/FileDownloader.h -------------------------------------------------------------------------------- /SwarmLoader/FileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/FileDownloader.m -------------------------------------------------------------------------------- /SwarmLoader/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/Icon.png -------------------------------------------------------------------------------- /SwarmLoader/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/Icon@2x.png -------------------------------------------------------------------------------- /SwarmLoader/ImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ImageViewController.h -------------------------------------------------------------------------------- /SwarmLoader/ImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ImageViewController.m -------------------------------------------------------------------------------- /SwarmLoader/KxTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/KxTableViewController.h -------------------------------------------------------------------------------- /SwarmLoader/KxTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/KxTableViewController.m -------------------------------------------------------------------------------- /SwarmLoader/LogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/LogViewController.h -------------------------------------------------------------------------------- /SwarmLoader/LogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/LogViewController.m -------------------------------------------------------------------------------- /SwarmLoader/ProbePort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ProbePort.h -------------------------------------------------------------------------------- /SwarmLoader/ProbePort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/ProbePort.m -------------------------------------------------------------------------------- /SwarmLoader/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/SettingsViewController.h -------------------------------------------------------------------------------- /SwarmLoader/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/SettingsViewController.m -------------------------------------------------------------------------------- /SwarmLoader/SwarmLoader-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/SwarmLoader-Info.plist -------------------------------------------------------------------------------- /SwarmLoader/SwarmLoader-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/SwarmLoader-Prefix.pch -------------------------------------------------------------------------------- /SwarmLoader/TextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TextViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TextViewController.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentCell.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentCell.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentCell.xib -------------------------------------------------------------------------------- /SwarmLoader/TorrentDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentDetailViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentDetailViewController.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentPeerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPeerCell.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentPeerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPeerCell.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentPeerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPeerCell.xib -------------------------------------------------------------------------------- /SwarmLoader/TorrentPeersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPeersViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentPeersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPeersViewController.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentPiecesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPiecesViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentPiecesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPiecesViewController.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentPiecesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentPiecesViewController.xib -------------------------------------------------------------------------------- /SwarmLoader/TorrentSwarmViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentSwarmViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentSwarmViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentSwarmViewController.m -------------------------------------------------------------------------------- /SwarmLoader/TorrentsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentsViewController.h -------------------------------------------------------------------------------- /SwarmLoader/TorrentsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/TorrentsViewController.m -------------------------------------------------------------------------------- /SwarmLoader/WebBrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/WebBrowserViewController.h -------------------------------------------------------------------------------- /SwarmLoader/WebBrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/WebBrowserViewController.m -------------------------------------------------------------------------------- /SwarmLoader/category/UIColor+Kolyvan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UIColor+Kolyvan.h -------------------------------------------------------------------------------- /SwarmLoader/category/UIColor+Kolyvan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UIColor+Kolyvan.m -------------------------------------------------------------------------------- /SwarmLoader/category/UIFont+Kolyvan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UIFont+Kolyvan.h -------------------------------------------------------------------------------- /SwarmLoader/category/UIFont+Kolyvan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UIFont+Kolyvan.m -------------------------------------------------------------------------------- /SwarmLoader/category/UITabBarController+Kolyvan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UITabBarController+Kolyvan.h -------------------------------------------------------------------------------- /SwarmLoader/category/UITabBarController+Kolyvan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/category/UITabBarController+Kolyvan.m -------------------------------------------------------------------------------- /SwarmLoader/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SwarmLoader/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/helpers.h -------------------------------------------------------------------------------- /SwarmLoader/helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/helpers.m -------------------------------------------------------------------------------- /SwarmLoader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoader/main.m -------------------------------------------------------------------------------- /SwarmLoaderTests/SwarmLoaderTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoaderTests/SwarmLoaderTests-Info.plist -------------------------------------------------------------------------------- /SwarmLoaderTests/SwarmLoaderTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoaderTests/SwarmLoaderTests.h -------------------------------------------------------------------------------- /SwarmLoaderTests/SwarmLoaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoaderTests/SwarmLoaderTests.m -------------------------------------------------------------------------------- /SwarmLoaderTests/TorrentFilesTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoaderTests/TorrentFilesTests.h -------------------------------------------------------------------------------- /SwarmLoaderTests/TorrentFilesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/SwarmLoaderTests/TorrentFilesTests.m -------------------------------------------------------------------------------- /SwarmLoaderTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /kxtorrent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /kxtorrent/TorrentClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentClient.h -------------------------------------------------------------------------------- /kxtorrent/TorrentClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentClient.m -------------------------------------------------------------------------------- /kxtorrent/TorrentErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentErrors.h -------------------------------------------------------------------------------- /kxtorrent/TorrentErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentErrors.m -------------------------------------------------------------------------------- /kxtorrent/TorrentFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentFiles.h -------------------------------------------------------------------------------- /kxtorrent/TorrentFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentFiles.m -------------------------------------------------------------------------------- /kxtorrent/TorrentMetaInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentMetaInfo.h -------------------------------------------------------------------------------- /kxtorrent/TorrentMetaInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentMetaInfo.m -------------------------------------------------------------------------------- /kxtorrent/TorrentMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentMeter.h -------------------------------------------------------------------------------- /kxtorrent/TorrentMeter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentMeter.m -------------------------------------------------------------------------------- /kxtorrent/TorrentPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPeer.h -------------------------------------------------------------------------------- /kxtorrent/TorrentPeer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPeer.m -------------------------------------------------------------------------------- /kxtorrent/TorrentPeerWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPeerWire.h -------------------------------------------------------------------------------- /kxtorrent/TorrentPeerWire.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPeerWire.m -------------------------------------------------------------------------------- /kxtorrent/TorrentPiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPiece.h -------------------------------------------------------------------------------- /kxtorrent/TorrentPiece.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentPiece.m -------------------------------------------------------------------------------- /kxtorrent/TorrentServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentServer.h -------------------------------------------------------------------------------- /kxtorrent/TorrentServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentServer.m -------------------------------------------------------------------------------- /kxtorrent/TorrentSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentSettings.h -------------------------------------------------------------------------------- /kxtorrent/TorrentSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentSettings.m -------------------------------------------------------------------------------- /kxtorrent/TorrentTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentTracker.h -------------------------------------------------------------------------------- /kxtorrent/TorrentTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentTracker.m -------------------------------------------------------------------------------- /kxtorrent/TorrentUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentUtils.h -------------------------------------------------------------------------------- /kxtorrent/TorrentUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/TorrentUtils.m -------------------------------------------------------------------------------- /kxtorrent/bencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/bencode.h -------------------------------------------------------------------------------- /kxtorrent/bencode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/bencode.m -------------------------------------------------------------------------------- /kxtorrent/kxtorrent-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrent/kxtorrent-Prefix.pch -------------------------------------------------------------------------------- /kxtorrentTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /kxtorrentTests/kxtorrentTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrentTests/kxtorrentTests-Info.plist -------------------------------------------------------------------------------- /kxtorrentTests/kxtorrentTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrentTests/kxtorrentTests.h -------------------------------------------------------------------------------- /kxtorrentTests/kxtorrentTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/kxtorrentTests/kxtorrentTests.m -------------------------------------------------------------------------------- /lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/lgpl-3.0.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/readme.md -------------------------------------------------------------------------------- /resources/firstrun/0e876ce2a1a504f849ca72a5e2bc07347b3bc957: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/0e876ce2a1a504f849ca72a5e2bc07347b3bc957 -------------------------------------------------------------------------------- /resources/firstrun/29ffc066911f625f4c0788acd85b3319.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/29ffc066911f625f4c0788acd85b3319.bookmark -------------------------------------------------------------------------------- /resources/firstrun/2c075e9a7d85e6f9b249865f6702ece4.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/2c075e9a7d85e6f9b249865f6702ece4.bookmark -------------------------------------------------------------------------------- /resources/firstrun/82ca4f56ecd05f229208e37645544235.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/82ca4f56ecd05f229208e37645544235.bookmark -------------------------------------------------------------------------------- /resources/firstrun/a1f2a7aee29db1bbc78fa80a75599623.bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/a1f2a7aee29db1bbc78fa80a75599623.bookmark -------------------------------------------------------------------------------- /resources/firstrun/d627c79691ce344c9746a897f5add9184c566946: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/firstrun/d627c79691ce344c9746a897f5add9184c566946 -------------------------------------------------------------------------------- /resources/icons/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon-Small.png -------------------------------------------------------------------------------- /resources/icons/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon1024.png -------------------------------------------------------------------------------- /resources/icons/Icon1024.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon1024.tiff -------------------------------------------------------------------------------- /resources/icons/Icon114.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon114.tiff -------------------------------------------------------------------------------- /resources/icons/Icon29.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon29.tiff -------------------------------------------------------------------------------- /resources/icons/Icon57.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/icons/Icon57.tiff -------------------------------------------------------------------------------- /resources/images/1pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/1pix.png -------------------------------------------------------------------------------- /resources/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/background.png -------------------------------------------------------------------------------- /resources/images/browser_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/browser_cancel.png -------------------------------------------------------------------------------- /resources/images/browser_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/browser_refresh.png -------------------------------------------------------------------------------- /resources/images/checkmark_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/checkmark_small.png -------------------------------------------------------------------------------- /resources/images/checkmark_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/checkmark_small@2x.png -------------------------------------------------------------------------------- /resources/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/collapse.png -------------------------------------------------------------------------------- /resources/images/delete_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/delete_small.png -------------------------------------------------------------------------------- /resources/images/delete_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/delete_small@2x.png -------------------------------------------------------------------------------- /resources/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/expand.png -------------------------------------------------------------------------------- /resources/images/fileimages/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/download.png -------------------------------------------------------------------------------- /resources/images/fileimages/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/download@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/empty.png -------------------------------------------------------------------------------- /resources/images/fileimages/empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/empty@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/folder.png -------------------------------------------------------------------------------- /resources/images/fileimages/folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/folder@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/movie.png -------------------------------------------------------------------------------- /resources/images/fileimages/movie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/movie@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/music.png -------------------------------------------------------------------------------- /resources/images/fileimages/music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/music@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/picture.png -------------------------------------------------------------------------------- /resources/images/fileimages/picture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/picture@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/text.png -------------------------------------------------------------------------------- /resources/images/fileimages/text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/text@2x.png -------------------------------------------------------------------------------- /resources/images/fileimages/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/unknown.png -------------------------------------------------------------------------------- /resources/images/fileimages/unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/fileimages/unknown@2x.png -------------------------------------------------------------------------------- /resources/images/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/globe.png -------------------------------------------------------------------------------- /resources/images/globe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/globe@2x.png -------------------------------------------------------------------------------- /resources/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/home.png -------------------------------------------------------------------------------- /resources/images/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/home@2x.png -------------------------------------------------------------------------------- /resources/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/pause.png -------------------------------------------------------------------------------- /resources/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/prev.png -------------------------------------------------------------------------------- /resources/images/prev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/prev@2x.png -------------------------------------------------------------------------------- /resources/images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/reload.png -------------------------------------------------------------------------------- /resources/images/reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/reload@2x.png -------------------------------------------------------------------------------- /resources/images/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/resume.png -------------------------------------------------------------------------------- /resources/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/settings.png -------------------------------------------------------------------------------- /resources/images/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/settings@2x.png -------------------------------------------------------------------------------- /resources/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star.png -------------------------------------------------------------------------------- /resources/images/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star@2x.png -------------------------------------------------------------------------------- /resources/images/star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_empty.png -------------------------------------------------------------------------------- /resources/images/star_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_empty@2x.png -------------------------------------------------------------------------------- /resources/images/star_empty_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_empty_small.png -------------------------------------------------------------------------------- /resources/images/star_empty_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_empty_small@2x.png -------------------------------------------------------------------------------- /resources/images/star_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_small.png -------------------------------------------------------------------------------- /resources/images/star_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/images/star_small@2x.png -------------------------------------------------------------------------------- /resources/start.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/start.css -------------------------------------------------------------------------------- /resources/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/start.html -------------------------------------------------------------------------------- /resources/torrents/test.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/resources/torrents/test.torrent -------------------------------------------------------------------------------- /screenshots/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/detail.png -------------------------------------------------------------------------------- /screenshots/downloadtorrentfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/downloadtorrentfile.png -------------------------------------------------------------------------------- /screenshots/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/filebrowser.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /screenshots/pieces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/pieces.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/webbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolyvan/kxtorrent/HEAD/screenshots/webbrowser.png --------------------------------------------------------------------------------