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