mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
fix: changed settings names
This commit is contained in:
parent
8f76d3428e
commit
b6c62d4a3f
@ -3,20 +3,6 @@ import { getRyzenAdjExecutablePath } from "./RyzenControllerAppContext";
|
||||
import { getTranslation } from "./LocaleContext";
|
||||
|
||||
const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
{
|
||||
description: getTranslation(
|
||||
"ryzenAdj.slowTime.desc",
|
||||
"This define the period to be used out of boost period to deliver a constant power to be delivered to the socket."
|
||||
),
|
||||
label: getTranslation("ryzenAdj.slowTime.label", "Package Power Tracking (PPT) - Slow period"),
|
||||
tab: "power",
|
||||
min: 1,
|
||||
max: 3600,
|
||||
step: 1,
|
||||
default: 900,
|
||||
ryzenadj_arg: "--slow-time=",
|
||||
ryzenadj_value_convert: null,
|
||||
},
|
||||
{
|
||||
description: getTranslation(
|
||||
"ryzenAdj.psi0Current.desc",
|
||||
@ -126,12 +112,26 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
ryzenadj_arg: "--stapm-limit=",
|
||||
ryzenadj_value_convert: "toThousand",
|
||||
},
|
||||
{
|
||||
description: getTranslation(
|
||||
"ryzenAdj.slowTime.desc",
|
||||
"This define the period to be used out of boost period to deliver a constant power to be delivered to the socket."
|
||||
),
|
||||
label: getTranslation("ryzenAdj.slowTime.label", "Short Boost Duration "),
|
||||
tab: "cpu",
|
||||
min: 1,
|
||||
max: 3600,
|
||||
step: 1,
|
||||
default: 900,
|
||||
ryzenadj_arg: "--slow-time=",
|
||||
ryzenadj_value_convert: null,
|
||||
},
|
||||
{
|
||||
description: getTranslation(
|
||||
"ryzenAdj.stapmTime.desc",
|
||||
"Skin Temperature Aware Power Management. This will define the boost period to be used."
|
||||
),
|
||||
label: getTranslation("ryzenAdj.stapmTime.label", "CPU Boost Period"),
|
||||
label: getTranslation("ryzenAdj.stapmTime.label", "Long Boost Duration"),
|
||||
tab: "cpu",
|
||||
min: 1,
|
||||
max: 3600,
|
||||
@ -145,7 +145,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
"ryzenAdj.fastLimit.desc",
|
||||
"The amount of power the CPU can draw while boost levels on."
|
||||
),
|
||||
label: getTranslation("ryzenAdj.fastLimit.label", "CPU Boost TDP (W)"),
|
||||
label: getTranslation("ryzenAdj.fastLimit.label", "Long Boost TDP (W)"),
|
||||
tab: "cpu",
|
||||
min: 5,
|
||||
max: 100,
|
||||
@ -159,7 +159,7 @@ const RyzenAdjOptionDefinitions: Array<RyzenAdjOptionDefinition> = [
|
||||
"ryzenAdj.slowLimit.desc",
|
||||
"The amount of power the CPU can draw while boost levels off."
|
||||
),
|
||||
label: getTranslation("ryzenAdj.slowLimit.label", "CPU Min TDP (W)"),
|
||||
label: getTranslation("ryzenAdj.slowLimit.label", "Sort Boost TDP (W)"),
|
||||
tab: "cpu",
|
||||
min: 5,
|
||||
max: 100,
|
||||
|
Loading…
Reference in New Issue
Block a user