Version Bump

This commit is contained in:
Serge
2023-07-20 19:36:59 +02:00
parent 1e89039b02
commit 55a3677a37
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly> <ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<AssemblyVersion>0.99</AssemblyVersion> <AssemblyVersion>1.0</AssemblyVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

@@ -209,7 +209,7 @@ namespace GHelper.Mode
timer.Dispose(); timer.Dispose();
if (applyPower) SetPower(); if (applyPower) SetPower();
Thread.Sleep(1000); Thread.Sleep(500);
SetGPUPower(); SetGPUPower();
AutoRyzen(); AutoRyzen();
}; };

View File

@@ -819,7 +819,7 @@ namespace GHelper
labelCPUFan.Text = "CPU" + cpuTemp + " " + HardwareControl.cpuFan; labelCPUFan.Text = "CPU" + cpuTemp + " " + HardwareControl.cpuFan;
labelGPUFan.Text = "GPU" + gpuTemp + " " + HardwareControl.gpuFan; labelGPUFan.Text = "GPU" + gpuTemp + " " + HardwareControl.gpuFan;
if (HardwareControl.midFan is not null) if (HardwareControl.midFan is not null)
labelMidFan.Text = "Mid" + HardwareControl.midFan; labelMidFan.Text = "SYS " + HardwareControl.midFan;
if (!batteryMouseOver) labelBattery.Text = battery; if (!batteryMouseOver) labelBattery.Text = battery;
}); });