1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed CPU Throttling details

This commit is contained in:
echel0n 2014-05-17 11:57:17 -07:00
parent 32cf17c638
commit 0a1a2a7148
2 changed files with 10 additions and 10 deletions

View File

@ -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>

View File

@ -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