Allow priority setting from torrent context menu

This commit is contained in:
John Furrow
2016-03-19 12:26:35 +01:00
parent df601a579f
commit 14ed9bb1f5
10 changed files with 178 additions and 82 deletions

View File

@@ -0,0 +1,15 @@
const PriorityLevels = {
file: {
0: 'Don\'t Download',
1: 'Normal',
2: 'High'
},
torrent: {
0: 'Don\'t Download',
1: 'Low',
2: 'Normal',
3: 'High'
}
};
export default PriorityLevels;