added highest playback priority feature; added highest playback priority checkbox on preferences.

This commit is contained in:
Alberto Miranda
2016-08-27 03:35:53 -03:00
parent 89e77d34f4
commit bd41bd4db8
4 changed files with 99 additions and 7 deletions

View File

@@ -184,6 +184,8 @@ const dispatchHandlers = {
'toggleSelectTorrent': (infoHash) => controllers.torrentList.toggleSelectTorrent(infoHash),
'openTorrentContextMenu': (infoHash) => controllers.torrentList.openTorrentContextMenu(infoHash),
'startTorrentingSummary': (torrentKey) => controllers.torrentList.startTorrentingSummary(torrentKey),
'pauseAllTorrents': (params) => controllers.torrentList.pauseAll(params),
'resumePausedTorrents': () => controllers.torrentList.resumePausedTorrents(),
// Playback
'playFile': (infoHash, index) => controllers.playback.playFile(infoHash, index),