mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
Fixed CPU Throttling details
This commit is contained in:
parent
32cf17c638
commit
0a1a2a7148
@ -247,15 +247,15 @@
|
|||||||
<fieldset class="component-group-list">
|
<fieldset class="component-group-list">
|
||||||
|
|
||||||
<div class="field-pair">
|
<div class="field-pair">
|
||||||
<label class="nocheck clearfix" for="cpu_presets">
|
<label class="nocheck clearfix">
|
||||||
<span class="component-title">CPU Throttling:</span>
|
<span class="component-title">CPU Throttling:
|
||||||
<span class="component-desc">
|
<select id="cpu_presets" name="cpu_preset">
|
||||||
<select id="cpu_presets" name="cpu_preset">
|
#for $cur_preset in $cpu_presets:
|
||||||
#for $cur_preset in $cpu_presets:
|
<option value="$cur_preset" #if $cur_preset == $sickbeard.CPU_PRESET then "selected=\"selected\"" else ""#>$cur_preset</option>
|
||||||
<option value="$cur_preset" #if $cur_preset == $sickbeard.CPU_PRESET then "selected=\"selected\"" else ""#>$cur_preset</option>
|
#end for
|
||||||
#end for
|
</select>
|
||||||
</select>
|
|
||||||
</span>
|
</span>
|
||||||
|
<span class="component-desc">HIGH = Lower CPU usage<br>NORMAL = Defaults<br>LOW = Higher CPU usage</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -37,9 +37,9 @@ mediaExtensions = ['avi', 'mkv', 'mpg', 'mpeg', 'wmv',
|
|||||||
|
|
||||||
subtitleExtensions = ['srt', 'sub', 'ass', 'idx', 'ssa']
|
subtitleExtensions = ['srt', 'sub', 'ass', 'idx', 'ssa']
|
||||||
|
|
||||||
cpu_presets = {'HIGH': 0.01,
|
cpu_presets = {'HIGH': 0.1,
|
||||||
'NORMAL': 0.05,
|
'NORMAL': 0.05,
|
||||||
'LOW': 0.1
|
'LOW': 0.01
|
||||||
}
|
}
|
||||||
|
|
||||||
### Other constants
|
### Other constants
|
||||||
|
Loading…
Reference in New Issue
Block a user