├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md └── workflows │ ├── ci.yml │ ├── package.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE_PROCESS.md ├── bin ├── clean.js ├── darwin-entitlements.plist ├── open-config.js ├── package.js ├── update-authors.sh └── warning.txt ├── index.js ├── package.json ├── src ├── config.js ├── crash-reporter.js ├── main │ ├── announcement.js │ ├── dialog.js │ ├── dock.js │ ├── external-player.js │ ├── folder-watcher.js │ ├── handlers.js │ ├── index.js │ ├── ipc.js │ ├── log.js │ ├── menu.js │ ├── power-save-blocker.js │ ├── shell.js │ ├── shortcuts.js │ ├── squirrel-win32.js │ ├── startup.js │ ├── thumbar.js │ ├── tray.js │ ├── updater.js │ ├── user-tasks.js │ └── windows │ │ ├── about.js │ │ ├── index.js │ │ ├── main.js │ │ └── webtorrent.js └── renderer │ ├── components │ ├── create-torrent-error-page.js │ ├── delete-all-torrents-modal.js │ ├── header.js │ ├── heading.js │ ├── modal-ok-cancel.js │ ├── open-torrent-address-modal.js │ ├── path-selector.js │ ├── remove-torrent-modal.js │ ├── show-more.js │ ├── unsupported-media-modal.js │ └── update-available-modal.js │ ├── controllers │ ├── audio-tracks-controller.js │ ├── folder-watcher-controller.js │ ├── media-controller.js │ ├── playback-controller.js │ ├── prefs-controller.js │ ├── subtitles-controller.js │ ├── torrent-controller.js │ ├── torrent-list-controller.js │ └── update-controller.js │ ├── lib │ ├── cast.js │ ├── dispatcher.js │ ├── errors.js │ ├── media-extensions.js │ ├── migrations.js │ ├── playlist.js │ ├── sound.js │ ├── state.js │ ├── telemetry.js │ ├── time.js │ ├── torrent-player.js │ ├── torrent-poster.js │ └── torrent-summary.js │ ├── main.js │ ├── pages │ ├── app.js │ ├── create-torrent-page.js │ ├── player-page.js │ ├── preferences-page.js │ └── torrent-list-page.js │ └── webtorrent.js ├── static ├── MaterialIcons-Regular.woff2 ├── NextTrackThumbnailBarButton.png ├── PauseThumbnailBarButton.png ├── PlayThumbnailBarButton.png ├── PreviousTrackThumbnailBarButton.png ├── WebTorrent.icns ├── WebTorrent.ico ├── WebTorrent.png ├── WebTorrentFile.icns ├── WebTorrentFile.ico ├── WebTorrentFile.png ├── about.html ├── appdmg.png ├── appdmg@2x.png ├── bigBuckBunny.jpg ├── bigBuckBunny.torrent ├── cosmosLaundromat.jpg ├── cosmosLaundromat.torrent ├── linux │ ├── share │ │ ├── applications │ │ │ └── webtorrent-desktop.desktop │ │ └── icons │ │ │ └── hicolor │ │ │ ├── 256x256 │ │ │ └── apps │ │ │ │ └── webtorrent-desktop.png │ │ │ └── 48x48 │ │ │ └── apps │ │ │ └── webtorrent-desktop.png │ └── webtorrent-desktop.ejs ├── loading.gif ├── main.css ├── main.html ├── sintel.jpg ├── sintel.torrent ├── sound │ ├── add.wav │ ├── delete.wav │ ├── disable.wav │ ├── done.wav │ ├── enable.wav │ ├── error.wav │ ├── play.wav │ └── startup.wav ├── tearsOfSteel.jpg ├── tearsOfSteel.torrent ├── webtorrent.html ├── wiredCd.jpg └── wiredCd.torrent └── test ├── config.js ├── index.js ├── mocks.js ├── resources ├── 1.torrent ├── expected-single-file.torrent ├── m3.jpg └── monitor-test.mp4 ├── screenshots ├── darwin │ ├── add-torrent-0-percent.png │ ├── add-torrent-100-percent.png │ ├── app-basic.png │ ├── create-torrent-100-percent.png │ ├── create-torrent-advanced.png │ ├── create-torrent-simple.png │ ├── play-torrent-bbb.png │ ├── play-torrent-return.png │ ├── play-torrent-wired-2.png │ ├── play-torrent-wired-3.png │ ├── play-torrent-wired-4.png │ ├── play-torrent-wired-5.png │ ├── play-torrent-wired-fullscreen.png │ ├── play-torrent-wired-list.png │ ├── play-torrent-wired.png │ ├── prefs-basic.png │ ├── torrent-list-2.png │ ├── torrent-list-cosmos-delete-data.png │ ├── torrent-list-cosmos-deleted.png │ ├── torrent-list-cosmos-expand-deselect.png │ ├── torrent-list-cosmos-expand-start.png │ ├── torrent-list-cosmos-expand.png │ ├── torrent-list-delete-prompt.png │ ├── torrent-list-deleted.png │ ├── torrent-list-download-path-missing.png │ ├── torrent-list-download.png │ ├── torrent-list-start-download.png │ └── torrent-list.png └── win32 │ ├── add-torrent-0-percent.png │ ├── add-torrent-100-percent.png │ ├── app-basic.png │ ├── create-torrent-100-percent.png │ ├── create-torrent-advanced.png │ ├── create-torrent-simple.png │ ├── play-torrent-bbb.png │ ├── play-torrent-return.png │ ├── play-torrent-wired-2.png │ ├── play-torrent-wired-3.png │ ├── play-torrent-wired-4.png │ ├── play-torrent-wired-5.png │ ├── play-torrent-wired-fullscreen.png │ ├── play-torrent-wired-list.png │ ├── play-torrent-wired.png │ ├── prefs-basic.png │ ├── torrent-list-cosmos-delete-data.png │ ├── torrent-list-cosmos-deleted.png │ ├── torrent-list-cosmos-expand-deselect.png │ ├── torrent-list-cosmos-expand-start.png │ ├── torrent-list-cosmos-expand.png │ ├── torrent-list-cosmos-hover.png │ ├── torrent-list-delete-prompt.png │ ├── torrent-list-deleted.png │ ├── torrent-list-download-path-missing.png │ ├── torrent-list-hover-download.png │ ├── torrent-list-hover.png │ └── torrent-list-start-download.png ├── setup.js ├── test-add-torrent.js ├── test-audio.js ├── test-select-poster.js ├── test-torrent-list.js └── test-video.js /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=true 2 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /bin/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/clean.js -------------------------------------------------------------------------------- /bin/darwin-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/darwin-entitlements.plist -------------------------------------------------------------------------------- /bin/open-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/open-config.js -------------------------------------------------------------------------------- /bin/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/package.js -------------------------------------------------------------------------------- /bin/update-authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/update-authors.sh -------------------------------------------------------------------------------- /bin/warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/bin/warning.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./build/main') 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/config.js -------------------------------------------------------------------------------- /src/crash-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/crash-reporter.js -------------------------------------------------------------------------------- /src/main/announcement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/announcement.js -------------------------------------------------------------------------------- /src/main/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/dialog.js -------------------------------------------------------------------------------- /src/main/dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/dock.js -------------------------------------------------------------------------------- /src/main/external-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/external-player.js -------------------------------------------------------------------------------- /src/main/folder-watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/folder-watcher.js -------------------------------------------------------------------------------- /src/main/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/handlers.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/ipc.js -------------------------------------------------------------------------------- /src/main/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/log.js -------------------------------------------------------------------------------- /src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/menu.js -------------------------------------------------------------------------------- /src/main/power-save-blocker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/power-save-blocker.js -------------------------------------------------------------------------------- /src/main/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/shell.js -------------------------------------------------------------------------------- /src/main/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/shortcuts.js -------------------------------------------------------------------------------- /src/main/squirrel-win32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/squirrel-win32.js -------------------------------------------------------------------------------- /src/main/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/startup.js -------------------------------------------------------------------------------- /src/main/thumbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/thumbar.js -------------------------------------------------------------------------------- /src/main/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/tray.js -------------------------------------------------------------------------------- /src/main/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/updater.js -------------------------------------------------------------------------------- /src/main/user-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/user-tasks.js -------------------------------------------------------------------------------- /src/main/windows/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/windows/about.js -------------------------------------------------------------------------------- /src/main/windows/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/windows/index.js -------------------------------------------------------------------------------- /src/main/windows/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/windows/main.js -------------------------------------------------------------------------------- /src/main/windows/webtorrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/main/windows/webtorrent.js -------------------------------------------------------------------------------- /src/renderer/components/create-torrent-error-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/create-torrent-error-page.js -------------------------------------------------------------------------------- /src/renderer/components/delete-all-torrents-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/delete-all-torrents-modal.js -------------------------------------------------------------------------------- /src/renderer/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/header.js -------------------------------------------------------------------------------- /src/renderer/components/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/heading.js -------------------------------------------------------------------------------- /src/renderer/components/modal-ok-cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/modal-ok-cancel.js -------------------------------------------------------------------------------- /src/renderer/components/open-torrent-address-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/open-torrent-address-modal.js -------------------------------------------------------------------------------- /src/renderer/components/path-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/path-selector.js -------------------------------------------------------------------------------- /src/renderer/components/remove-torrent-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/remove-torrent-modal.js -------------------------------------------------------------------------------- /src/renderer/components/show-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/show-more.js -------------------------------------------------------------------------------- /src/renderer/components/unsupported-media-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/unsupported-media-modal.js -------------------------------------------------------------------------------- /src/renderer/components/update-available-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/components/update-available-modal.js -------------------------------------------------------------------------------- /src/renderer/controllers/audio-tracks-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/audio-tracks-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/folder-watcher-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/folder-watcher-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/media-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/media-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/playback-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/playback-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/prefs-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/prefs-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/subtitles-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/subtitles-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/torrent-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/torrent-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/torrent-list-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/torrent-list-controller.js -------------------------------------------------------------------------------- /src/renderer/controllers/update-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/controllers/update-controller.js -------------------------------------------------------------------------------- /src/renderer/lib/cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/cast.js -------------------------------------------------------------------------------- /src/renderer/lib/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/dispatcher.js -------------------------------------------------------------------------------- /src/renderer/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/errors.js -------------------------------------------------------------------------------- /src/renderer/lib/media-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/media-extensions.js -------------------------------------------------------------------------------- /src/renderer/lib/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/migrations.js -------------------------------------------------------------------------------- /src/renderer/lib/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/playlist.js -------------------------------------------------------------------------------- /src/renderer/lib/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/sound.js -------------------------------------------------------------------------------- /src/renderer/lib/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/state.js -------------------------------------------------------------------------------- /src/renderer/lib/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/telemetry.js -------------------------------------------------------------------------------- /src/renderer/lib/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/time.js -------------------------------------------------------------------------------- /src/renderer/lib/torrent-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/torrent-player.js -------------------------------------------------------------------------------- /src/renderer/lib/torrent-poster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/torrent-poster.js -------------------------------------------------------------------------------- /src/renderer/lib/torrent-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/lib/torrent-summary.js -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/pages/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/pages/app.js -------------------------------------------------------------------------------- /src/renderer/pages/create-torrent-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/pages/create-torrent-page.js -------------------------------------------------------------------------------- /src/renderer/pages/player-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/pages/player-page.js -------------------------------------------------------------------------------- /src/renderer/pages/preferences-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/pages/preferences-page.js -------------------------------------------------------------------------------- /src/renderer/pages/torrent-list-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/pages/torrent-list-page.js -------------------------------------------------------------------------------- /src/renderer/webtorrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/src/renderer/webtorrent.js -------------------------------------------------------------------------------- /static/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /static/NextTrackThumbnailBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/NextTrackThumbnailBarButton.png -------------------------------------------------------------------------------- /static/PauseThumbnailBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/PauseThumbnailBarButton.png -------------------------------------------------------------------------------- /static/PlayThumbnailBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/PlayThumbnailBarButton.png -------------------------------------------------------------------------------- /static/PreviousTrackThumbnailBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/PreviousTrackThumbnailBarButton.png -------------------------------------------------------------------------------- /static/WebTorrent.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrent.icns -------------------------------------------------------------------------------- /static/WebTorrent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrent.ico -------------------------------------------------------------------------------- /static/WebTorrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrent.png -------------------------------------------------------------------------------- /static/WebTorrentFile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrentFile.icns -------------------------------------------------------------------------------- /static/WebTorrentFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrentFile.ico -------------------------------------------------------------------------------- /static/WebTorrentFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/WebTorrentFile.png -------------------------------------------------------------------------------- /static/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/about.html -------------------------------------------------------------------------------- /static/appdmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/appdmg.png -------------------------------------------------------------------------------- /static/appdmg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/appdmg@2x.png -------------------------------------------------------------------------------- /static/bigBuckBunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/bigBuckBunny.jpg -------------------------------------------------------------------------------- /static/bigBuckBunny.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/bigBuckBunny.torrent -------------------------------------------------------------------------------- /static/cosmosLaundromat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/cosmosLaundromat.jpg -------------------------------------------------------------------------------- /static/cosmosLaundromat.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/cosmosLaundromat.torrent -------------------------------------------------------------------------------- /static/linux/share/applications/webtorrent-desktop.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/linux/share/applications/webtorrent-desktop.desktop -------------------------------------------------------------------------------- /static/linux/share/icons/hicolor/256x256/apps/webtorrent-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/linux/share/icons/hicolor/256x256/apps/webtorrent-desktop.png -------------------------------------------------------------------------------- /static/linux/share/icons/hicolor/48x48/apps/webtorrent-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/linux/share/icons/hicolor/48x48/apps/webtorrent-desktop.png -------------------------------------------------------------------------------- /static/linux/webtorrent-desktop.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/linux/webtorrent-desktop.ejs -------------------------------------------------------------------------------- /static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/loading.gif -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/main.css -------------------------------------------------------------------------------- /static/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/main.html -------------------------------------------------------------------------------- /static/sintel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sintel.jpg -------------------------------------------------------------------------------- /static/sintel.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sintel.torrent -------------------------------------------------------------------------------- /static/sound/add.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/add.wav -------------------------------------------------------------------------------- /static/sound/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/delete.wav -------------------------------------------------------------------------------- /static/sound/disable.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/disable.wav -------------------------------------------------------------------------------- /static/sound/done.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/done.wav -------------------------------------------------------------------------------- /static/sound/enable.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/enable.wav -------------------------------------------------------------------------------- /static/sound/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/error.wav -------------------------------------------------------------------------------- /static/sound/play.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/play.wav -------------------------------------------------------------------------------- /static/sound/startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/sound/startup.wav -------------------------------------------------------------------------------- /static/tearsOfSteel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/tearsOfSteel.jpg -------------------------------------------------------------------------------- /static/tearsOfSteel.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/tearsOfSteel.torrent -------------------------------------------------------------------------------- /static/webtorrent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/webtorrent.html -------------------------------------------------------------------------------- /static/wiredCd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/wiredCd.jpg -------------------------------------------------------------------------------- /static/wiredCd.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/static/wiredCd.torrent -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/config.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/mocks.js -------------------------------------------------------------------------------- /test/resources/1.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/resources/1.torrent -------------------------------------------------------------------------------- /test/resources/expected-single-file.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/resources/expected-single-file.torrent -------------------------------------------------------------------------------- /test/resources/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/resources/m3.jpg -------------------------------------------------------------------------------- /test/resources/monitor-test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/resources/monitor-test.mp4 -------------------------------------------------------------------------------- /test/screenshots/darwin/add-torrent-0-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/add-torrent-0-percent.png -------------------------------------------------------------------------------- /test/screenshots/darwin/add-torrent-100-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/add-torrent-100-percent.png -------------------------------------------------------------------------------- /test/screenshots/darwin/app-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/app-basic.png -------------------------------------------------------------------------------- /test/screenshots/darwin/create-torrent-100-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/create-torrent-100-percent.png -------------------------------------------------------------------------------- /test/screenshots/darwin/create-torrent-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/create-torrent-advanced.png -------------------------------------------------------------------------------- /test/screenshots/darwin/create-torrent-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/create-torrent-simple.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-bbb.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-return.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-2.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-3.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-4.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-5.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-fullscreen.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired-list.png -------------------------------------------------------------------------------- /test/screenshots/darwin/play-torrent-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/play-torrent-wired.png -------------------------------------------------------------------------------- /test/screenshots/darwin/prefs-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/prefs-basic.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-2.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-cosmos-delete-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-cosmos-delete-data.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-cosmos-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-cosmos-deleted.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-cosmos-expand-deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-cosmos-expand-deselect.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-cosmos-expand-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-cosmos-expand-start.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-cosmos-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-cosmos-expand.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-delete-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-delete-prompt.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-deleted.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-download-path-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-download-path-missing.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-download.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list-start-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list-start-download.png -------------------------------------------------------------------------------- /test/screenshots/darwin/torrent-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/darwin/torrent-list.png -------------------------------------------------------------------------------- /test/screenshots/win32/add-torrent-0-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/add-torrent-0-percent.png -------------------------------------------------------------------------------- /test/screenshots/win32/add-torrent-100-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/add-torrent-100-percent.png -------------------------------------------------------------------------------- /test/screenshots/win32/app-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/app-basic.png -------------------------------------------------------------------------------- /test/screenshots/win32/create-torrent-100-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/create-torrent-100-percent.png -------------------------------------------------------------------------------- /test/screenshots/win32/create-torrent-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/create-torrent-advanced.png -------------------------------------------------------------------------------- /test/screenshots/win32/create-torrent-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/create-torrent-simple.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-bbb.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-return.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-2.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-3.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-4.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-5.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-fullscreen.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired-list.png -------------------------------------------------------------------------------- /test/screenshots/win32/play-torrent-wired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/play-torrent-wired.png -------------------------------------------------------------------------------- /test/screenshots/win32/prefs-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/prefs-basic.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-delete-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-delete-data.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-deleted.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-expand-deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-expand-deselect.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-expand-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-expand-start.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-expand.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-cosmos-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-cosmos-hover.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-delete-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-delete-prompt.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-deleted.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-download-path-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-download-path-missing.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-hover-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-hover-download.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-hover.png -------------------------------------------------------------------------------- /test/screenshots/win32/torrent-list-start-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/screenshots/win32/torrent-list-start-download.png -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/test-add-torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/test-add-torrent.js -------------------------------------------------------------------------------- /test/test-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/test-audio.js -------------------------------------------------------------------------------- /test/test-select-poster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/test-select-poster.js -------------------------------------------------------------------------------- /test/test-torrent-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/test-torrent-list.js -------------------------------------------------------------------------------- /test/test-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-desktop/HEAD/test/test-video.js --------------------------------------------------------------------------------