From b6c62d4a3f33b3fef22c1334029a0d93e3f31cf2 Mon Sep 17 00:00:00 2001 From: James Craddock-Jones Date: Mon, 17 Aug 2020 13:34:23 +0000 Subject: [PATCH] fix: changed settings names --- src/contexts/RyzenAdjContext.tsx | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/contexts/RyzenAdjContext.tsx b/src/contexts/RyzenAdjContext.tsx index 58d7eb1..1337af4 100644 --- a/src/contexts/RyzenAdjContext.tsx +++ b/src/contexts/RyzenAdjContext.tsx @@ -3,20 +3,6 @@ import { getRyzenAdjExecutablePath } from "./RyzenControllerAppContext"; import { getTranslation } from "./LocaleContext"; const RyzenAdjOptionDefinitions: Array = [ - { - 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 = [ 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 = [ "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 = [ "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,