diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c03751a..b634fa6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,26 +15,29 @@ stages: ## TEST ############################################################################### -code_quality: - stage: test - only: - - branches - - schedules@ryzen-controller-team/ryzen-controller - except: [] +# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178573 +# code_quality: +# stage: test +# only: +# - branches +# - schedules@ryzen-controller-team/ryzen-controller +# except: [] -dependency_scanning: - stage: test - only: - - branches - - schedules@ryzen-controller-team/ryzen-controller - except: [] +# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156177371 +# dependency_scanning: +# stage: test +# only: +# - branches +# - schedules@ryzen-controller-team/ryzen-controller +# except: [] -sast: - stage: test - only: - - branches - - schedules@ryzen-controller-team/ryzen-controller - except: [] +# See https://gitlab.com/ryzen-controller-team/ryzen-controller/-/pipelines/156178280 +# sast: +# stage: test +# only: +# - branches +# - schedules@ryzen-controller-team/ryzen-controller +# except: [] release-check: tags: [ docker ] diff --git a/README.md b/README.md index a68e976..4748a46 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ Thanks to https://github.com/FlyGoat/RyzenAdj and his author, ryzenadj.exe is in - Set the path to your freshly builded `ryzenadj` binary into the "settings" tab. - Enjoy! +### Caution! +- Ryzen Controller Team is not liable for any damages that my occur from using Ryzen Controller or RyzenADJ, Please use at your own risk! + ## Troubleshoot, Q&A > I'm getting an error when installing ryzen controller on linux diff --git a/public/bin/libryzenadj.dll b/public/bin/libryzenadj.dll index 4b5b8fb..f8fa949 100644 Binary files a/public/bin/libryzenadj.dll and b/public/bin/libryzenadj.dll differ diff --git a/public/bin/ryzenadj.exe b/public/bin/ryzenadj.exe index 50a4d74..8a40602 100644 Binary files a/public/bin/ryzenadj.exe and b/public/bin/ryzenadj.exe differ diff --git a/src/contexts/RyzenAdjContext.tsx b/src/contexts/RyzenAdjContext.tsx index 0e6c7db..58d7eb1 100644 --- a/src/contexts/RyzenAdjContext.tsx +++ b/src/contexts/RyzenAdjContext.tsx @@ -15,7 +15,7 @@ const RyzenAdjOptionDefinitions: Array = [ step: 1, default: 900, ryzenadj_arg: "--slow-time=", - ryzenadj_value_convert: "toThousand", + ryzenadj_value_convert: null, }, { description: getTranslation( @@ -39,7 +39,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.vrmmaxCurrent.label", "VRM Current (A)"), tab: "power", min: 20, - max: 75, + max: 90, step: 1, default: 30, ryzenadj_arg: "--vrmmax-current=", @@ -81,7 +81,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.minFclkFrequency.label", "Minimum Infinity Fabric frequency (Mhz)"), tab: "gpu", min: 800, - max: 1600, + max: 1900, step: 1, default: 800, ryzenadj_arg: "--min-fclk-frequency=", @@ -95,7 +95,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.maxFclkFrequency.label", "Maximum Infinity Fabric frequency (Mhz)"), tab: "gpu", min: 800, - max: 1600, + max: 1900, step: 1, default: 1200, ryzenadj_arg: "--max-fclk-frequency=", @@ -120,7 +120,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.stapmLimit.label", "CPU TDP (W)"), tab: "cpu", min: 5, - max: 60, + max: 100, step: 1, default: 20, ryzenadj_arg: "--stapm-limit=", @@ -138,7 +138,7 @@ const RyzenAdjOptionDefinitions: Array = [ step: 1, default: 900, ryzenadj_arg: "--stapm-time=", - ryzenadj_value_convert: "toThousand", + ryzenadj_value_convert: null, }, { description: getTranslation( @@ -148,7 +148,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.fastLimit.label", "CPU Boost TDP (W)"), tab: "cpu", min: 5, - max: 60, + max: 100, step: 1, default: 25, ryzenadj_arg: "--fast-limit=", @@ -162,7 +162,7 @@ const RyzenAdjOptionDefinitions: Array = [ label: getTranslation("ryzenAdj.slowLimit.label", "CPU Min TDP (W)"), tab: "cpu", min: 5, - max: 60, + max: 100, step: 1, default: 10, ryzenadj_arg: "--slow-limit=",