Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
949148ca16 | ||
|
|
f01b763cd3 | ||
|
|
8a03b221e9 | ||
|
|
1d642a106b | ||
|
|
ebf4025578 | ||
|
|
36e8e91b16 | ||
|
|
5b6a62cf52 | ||
|
|
8eb3eaf3cf | ||
|
|
dec26ca85b | ||
|
|
00132f50c4 | ||
|
|
04f62b3359 | ||
|
|
d13307164e | ||
|
|
ba8f3489a2 | ||
|
|
e0cca33ab9 | ||
|
|
c5cd747a63 | ||
|
|
2942f17bca | ||
|
|
bfff7101fc | ||
|
|
bb5aeba9e7 | ||
|
|
2d4e794084 | ||
|
|
5f1c926527 | ||
|
|
dc40b317f8 |
@@ -1,6 +1,6 @@
|
|||||||
// Source thanks to https://github.com/vddCore/Starlight with some adjustments from me
|
// Source thanks to https://github.com/vddCore/Starlight with some adjustments from me
|
||||||
|
|
||||||
using Starlight.Communication;
|
using GHelper.AnimeMatrix.Communication;
|
||||||
using System.Drawing.Drawing2D;
|
using System.Drawing.Drawing2D;
|
||||||
using System.Drawing.Text;
|
using System.Drawing.Text;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
// Source thanks to https://github.com/vddCore/Starlight :)
|
// Source thanks to https://github.com/vddCore/Starlight :)
|
||||||
|
|
||||||
using Starlight.Communication.Platform;
|
using GHelper.AnimeMatrix.Communication.Platform;
|
||||||
using System.Configuration;
|
|
||||||
|
|
||||||
namespace Starlight.Communication
|
namespace GHelper.AnimeMatrix.Communication
|
||||||
{
|
{
|
||||||
public abstract class Device : IDisposable
|
public abstract class Device : IDisposable
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// Source thanks to https://github.com/vddCore/Starlight :)
|
// Source thanks to https://github.com/vddCore/Starlight :)
|
||||||
|
|
||||||
namespace Starlight.Communication
|
namespace GHelper.AnimeMatrix.Communication
|
||||||
{
|
{
|
||||||
public abstract class Packet
|
public abstract class Packet
|
||||||
{
|
{
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Starlight.Communication.Platform
|
namespace GHelper.AnimeMatrix.Communication.Platform
|
||||||
{
|
{
|
||||||
internal abstract class UsbProvider : IDisposable
|
internal abstract class UsbProvider : IDisposable
|
||||||
{
|
{
|
||||||
@@ -13,7 +13,7 @@ namespace Starlight.Communication.Platform
|
|||||||
|
|
||||||
public abstract void Set(byte[] data);
|
public abstract void Set(byte[] data);
|
||||||
public abstract byte[] Get(byte[] data);
|
public abstract byte[] Get(byte[] data);
|
||||||
|
|
||||||
public abstract void Dispose();
|
public abstract void Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using HidSharp;
|
using HidSharp;
|
||||||
|
|
||||||
namespace Starlight.Communication.Platform
|
namespace GHelper.AnimeMatrix.Communication.Platform
|
||||||
{
|
{
|
||||||
internal class WindowsUsbProvider : UsbProvider
|
internal class WindowsUsbProvider : UsbProvider
|
||||||
{
|
{
|
||||||
protected HidDevice HidDevice { get; }
|
protected HidDevice HidDevice { get; }
|
||||||
protected HidStream HidStream { get; }
|
protected HidStream HidStream { get; }
|
||||||
|
|
||||||
public WindowsUsbProvider(ushort vendorId, ushort productId, int maxFeatureReportLength)
|
public WindowsUsbProvider(ushort vendorId, ushort productId, int maxFeatureReportLength)
|
||||||
: base(vendorId, productId)
|
: base(vendorId, productId)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
@@ -43,7 +43,7 @@ namespace Starlight.Communication.Platform
|
|||||||
{
|
{
|
||||||
var outData = new byte[data.Length];
|
var outData = new byte[data.Length];
|
||||||
Array.Copy(data, outData, data.Length);
|
Array.Copy(data, outData, data.Length);
|
||||||
|
|
||||||
WrapException(() =>
|
WrapException(() =>
|
||||||
{
|
{
|
||||||
HidStream.GetFeature(outData);
|
HidStream.GetFeature(outData);
|
||||||
@@ -57,7 +57,7 @@ namespace Starlight.Communication.Platform
|
|||||||
{
|
{
|
||||||
HidStream.Dispose();
|
HidStream.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WrapException(Action action)
|
private void WrapException(Action action)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
1073
app/Extra.Designer.cs
generated
42
app/Extra.cs
@@ -86,9 +86,9 @@ namespace GHelper
|
|||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
groupBindings.Text = Properties.Strings.KeyBindings;
|
labelBindings.Text = Properties.Strings.KeyBindings;
|
||||||
groupLight.Text = " " + Properties.Strings.LaptopBacklight;
|
labelBacklightTitle.Text = Properties.Strings.LaptopBacklight;
|
||||||
groupOther.Text = Properties.Strings.Other;
|
labelSettings.Text = Properties.Strings.Other;
|
||||||
|
|
||||||
checkAwake.Text = Properties.Strings.Awake;
|
checkAwake.Text = Properties.Strings.Awake;
|
||||||
checkSleep.Text = Properties.Strings.Sleep;
|
checkSleep.Text = Properties.Strings.Sleep;
|
||||||
@@ -96,7 +96,7 @@ namespace GHelper
|
|||||||
checkShutdown.Text = Properties.Strings.Shutdown;
|
checkShutdown.Text = Properties.Strings.Shutdown;
|
||||||
|
|
||||||
labelSpeed.Text = Properties.Strings.AnimationSpeed;
|
labelSpeed.Text = Properties.Strings.AnimationSpeed;
|
||||||
labelBrightness.Text = Properties.Strings.Brightness;
|
//labelBrightness.Text = Properties.Strings.Brightness;
|
||||||
|
|
||||||
labelBacklightTimeout.Text = Properties.Strings.BacklightTimeout;
|
labelBacklightTimeout.Text = Properties.Strings.BacklightTimeout;
|
||||||
labelBacklightTimeoutPlugged.Text = Properties.Strings.BacklightTimeoutPlugged;
|
labelBacklightTimeoutPlugged.Text = Properties.Strings.BacklightTimeoutPlugged;
|
||||||
@@ -107,7 +107,7 @@ namespace GHelper
|
|||||||
checkAutoApplyWindowsPowerMode.Text = Properties.Strings.ApplyWindowsPowerPlan;
|
checkAutoApplyWindowsPowerMode.Text = Properties.Strings.ApplyWindowsPowerPlan;
|
||||||
checkFnLock.Text = Properties.Strings.FnLock;
|
checkFnLock.Text = Properties.Strings.FnLock;
|
||||||
|
|
||||||
labelBacklight.Text = Properties.Strings.Keyboard;
|
labelBacklightKeyboard.Text = Properties.Strings.Keyboard;
|
||||||
labelBacklightBar.Text = Properties.Strings.Lightbar;
|
labelBacklightBar.Text = Properties.Strings.Lightbar;
|
||||||
labelBacklightLid.Text = Properties.Strings.Lid;
|
labelBacklightLid.Text = Properties.Strings.Lid;
|
||||||
labelBacklightLogo.Text = Properties.Strings.Logo;
|
labelBacklightLogo.Text = Properties.Strings.Logo;
|
||||||
@@ -199,6 +199,8 @@ namespace GHelper
|
|||||||
checkBootLogo.Visible = false;
|
checkBootLogo.Visible = false;
|
||||||
checkSleepLogo.Visible = false;
|
checkSleepLogo.Visible = false;
|
||||||
checkShutdownLogo.Visible = false;
|
checkShutdownLogo.Visible = false;
|
||||||
|
|
||||||
|
labelBacklightKeyboard.Visible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -214,8 +216,8 @@ namespace GHelper
|
|||||||
checkAutoApplyWindowsPowerMode.Checked = (AppConfig.Get("auto_apply_power_plan") != 0);
|
checkAutoApplyWindowsPowerMode.Checked = (AppConfig.Get("auto_apply_power_plan") != 0);
|
||||||
checkAutoApplyWindowsPowerMode.CheckedChanged += checkAutoApplyWindowsPowerMode_CheckedChanged;
|
checkAutoApplyWindowsPowerMode.CheckedChanged += checkAutoApplyWindowsPowerMode_CheckedChanged;
|
||||||
|
|
||||||
trackBrightness.Value = InputDispatcher.GetBacklight();
|
sliderBrightness.Value = InputDispatcher.GetBacklight();
|
||||||
trackBrightness.Scroll += TrackBrightness_Scroll;
|
sliderBrightness.ValueChanged += SliderBrightness_ValueChanged;
|
||||||
|
|
||||||
panelXMG.Visible = (Program.acpi.DeviceGet(AsusACPI.GPUXGConnected) == 1);
|
panelXMG.Visible = (Program.acpi.DeviceGet(AsusACPI.GPUXGConnected) == 1);
|
||||||
checkXMG.Checked = !(AppConfig.Get("xmg_light") == 0);
|
checkXMG.Checked = !(AppConfig.Get("xmg_light") == 0);
|
||||||
@@ -237,10 +239,29 @@ namespace GHelper
|
|||||||
|
|
||||||
buttonServices.Click += ButtonServices_Click;
|
buttonServices.Click += ButtonServices_Click;
|
||||||
|
|
||||||
|
pictureLog.Click += PictureLog_Click;
|
||||||
|
|
||||||
InitVariBright();
|
InitVariBright();
|
||||||
InitServices();
|
InitServices();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void PictureLog_Click(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
new Process
|
||||||
|
{
|
||||||
|
StartInfo = new ProcessStartInfo(Logger.logFile)
|
||||||
|
{
|
||||||
|
UseShellExecute = true
|
||||||
|
}
|
||||||
|
}.Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SliderBrightness_ValueChanged(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
AppConfig.Set("keyboard_brightness", sliderBrightness.Value);
|
||||||
|
AppConfig.Set("keyboard_brightness_ac", sliderBrightness.Value);
|
||||||
|
AsusUSB.ApplyBrightness(sliderBrightness.Value, "Slider");
|
||||||
|
}
|
||||||
|
|
||||||
private void InitServices()
|
private void InitServices()
|
||||||
{
|
{
|
||||||
@@ -359,13 +380,6 @@ namespace GHelper
|
|||||||
AppConfig.Set("optimized_usbc", (checkUSBC.Checked ? 1 : 0));
|
AppConfig.Set("optimized_usbc", (checkUSBC.Checked ? 1 : 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void TrackBrightness_Scroll(object? sender, EventArgs e)
|
|
||||||
{
|
|
||||||
AppConfig.Set("keyboard_brightness", trackBrightness.Value);
|
|
||||||
AppConfig.Set("keyboard_brightness_ac", trackBrightness.Value);
|
|
||||||
AsusUSB.ApplyBrightness(trackBrightness.Value, "Slider");
|
|
||||||
}
|
|
||||||
|
|
||||||
private void PictureHelp_Click(object? sender, EventArgs e)
|
private void PictureHelp_Click(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Process.Start(new ProcessStartInfo("https://github.com/seerge/g-helper#custom-hotkey-actions") { UseShellExecute = true });
|
Process.Start(new ProcessStartInfo("https://github.com/seerge/g-helper#custom-hotkey-actions") { UseShellExecute = true });
|
||||||
|
|||||||
102
app/Fans.Designer.cs
generated
@@ -195,7 +195,7 @@ namespace GHelper
|
|||||||
panelFans.MinimumSize = new Size(816, 0);
|
panelFans.MinimumSize = new Size(816, 0);
|
||||||
panelFans.Name = "panelFans";
|
panelFans.Name = "panelFans";
|
||||||
panelFans.Padding = new Padding(0, 0, 10, 0);
|
panelFans.Padding = new Padding(0, 0, 10, 0);
|
||||||
panelFans.Size = new Size(816, 2023);
|
panelFans.Size = new Size(816, 2119);
|
||||||
panelFans.TabIndex = 12;
|
panelFans.TabIndex = 12;
|
||||||
//
|
//
|
||||||
// labelTip
|
// labelTip
|
||||||
@@ -229,7 +229,7 @@ namespace GHelper
|
|||||||
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
||||||
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
||||||
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
tableFanCharts.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
|
||||||
tableFanCharts.Size = new Size(806, 1841);
|
tableFanCharts.Size = new Size(806, 1937);
|
||||||
tableFanCharts.TabIndex = 36;
|
tableFanCharts.TabIndex = 36;
|
||||||
//
|
//
|
||||||
// chartGPU
|
// chartGPU
|
||||||
@@ -237,10 +237,10 @@ namespace GHelper
|
|||||||
chartArea1.Name = "ChartArea1";
|
chartArea1.Name = "ChartArea1";
|
||||||
chartGPU.ChartAreas.Add(chartArea1);
|
chartGPU.ChartAreas.Add(chartArea1);
|
||||||
chartGPU.Dock = DockStyle.Fill;
|
chartGPU.Dock = DockStyle.Fill;
|
||||||
chartGPU.Location = new Point(12, 467);
|
chartGPU.Location = new Point(12, 491);
|
||||||
chartGPU.Margin = new Padding(2, 10, 2, 10);
|
chartGPU.Margin = new Padding(2, 10, 2, 10);
|
||||||
chartGPU.Name = "chartGPU";
|
chartGPU.Name = "chartGPU";
|
||||||
chartGPU.Size = new Size(782, 437);
|
chartGPU.Size = new Size(782, 461);
|
||||||
chartGPU.TabIndex = 17;
|
chartGPU.TabIndex = 17;
|
||||||
chartGPU.Text = "chartGPU";
|
chartGPU.Text = "chartGPU";
|
||||||
title1.Name = "Title1";
|
title1.Name = "Title1";
|
||||||
@@ -254,7 +254,7 @@ namespace GHelper
|
|||||||
chartCPU.Location = new Point(12, 10);
|
chartCPU.Location = new Point(12, 10);
|
||||||
chartCPU.Margin = new Padding(2, 10, 2, 10);
|
chartCPU.Margin = new Padding(2, 10, 2, 10);
|
||||||
chartCPU.Name = "chartCPU";
|
chartCPU.Name = "chartCPU";
|
||||||
chartCPU.Size = new Size(782, 437);
|
chartCPU.Size = new Size(782, 461);
|
||||||
chartCPU.TabIndex = 14;
|
chartCPU.TabIndex = 14;
|
||||||
chartCPU.Text = "chartCPU";
|
chartCPU.Text = "chartCPU";
|
||||||
title2.Name = "Title1";
|
title2.Name = "Title1";
|
||||||
@@ -265,10 +265,10 @@ namespace GHelper
|
|||||||
chartArea3.Name = "ChartAreaXGM";
|
chartArea3.Name = "ChartAreaXGM";
|
||||||
chartXGM.ChartAreas.Add(chartArea3);
|
chartXGM.ChartAreas.Add(chartArea3);
|
||||||
chartXGM.Dock = DockStyle.Fill;
|
chartXGM.Dock = DockStyle.Fill;
|
||||||
chartXGM.Location = new Point(12, 1381);
|
chartXGM.Location = new Point(12, 1453);
|
||||||
chartXGM.Margin = new Padding(2, 10, 2, 10);
|
chartXGM.Margin = new Padding(2, 10, 2, 10);
|
||||||
chartXGM.Name = "chartXGM";
|
chartXGM.Name = "chartXGM";
|
||||||
chartXGM.Size = new Size(782, 440);
|
chartXGM.Size = new Size(782, 464);
|
||||||
chartXGM.TabIndex = 14;
|
chartXGM.TabIndex = 14;
|
||||||
chartXGM.Text = "chartXGM";
|
chartXGM.Text = "chartXGM";
|
||||||
title3.Name = "Title4";
|
title3.Name = "Title4";
|
||||||
@@ -280,10 +280,10 @@ namespace GHelper
|
|||||||
chartArea4.Name = "ChartArea3";
|
chartArea4.Name = "ChartArea3";
|
||||||
chartMid.ChartAreas.Add(chartArea4);
|
chartMid.ChartAreas.Add(chartArea4);
|
||||||
chartMid.Dock = DockStyle.Fill;
|
chartMid.Dock = DockStyle.Fill;
|
||||||
chartMid.Location = new Point(12, 924);
|
chartMid.Location = new Point(12, 972);
|
||||||
chartMid.Margin = new Padding(2, 10, 2, 10);
|
chartMid.Margin = new Padding(2, 10, 2, 10);
|
||||||
chartMid.Name = "chartMid";
|
chartMid.Name = "chartMid";
|
||||||
chartMid.Size = new Size(782, 437);
|
chartMid.Size = new Size(782, 461);
|
||||||
chartMid.TabIndex = 14;
|
chartMid.TabIndex = 14;
|
||||||
chartMid.Text = "chartMid";
|
chartMid.Text = "chartMid";
|
||||||
title4.Name = "Title3";
|
title4.Name = "Title3";
|
||||||
@@ -371,13 +371,13 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// picturePerf
|
// picturePerf
|
||||||
//
|
//
|
||||||
picturePerf.BackgroundImage = Properties.Resources.icons8_fan_head_96;
|
picturePerf.BackgroundImage = Properties.Resources.icons8_fan_32;
|
||||||
picturePerf.BackgroundImageLayout = ImageLayout.Zoom;
|
picturePerf.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
picturePerf.InitialImage = null;
|
picturePerf.InitialImage = null;
|
||||||
picturePerf.Location = new Point(18, 18);
|
picturePerf.Location = new Point(18, 18);
|
||||||
picturePerf.Margin = new Padding(4, 2, 4, 2);
|
picturePerf.Margin = new Padding(4, 2, 4, 2);
|
||||||
picturePerf.Name = "picturePerf";
|
picturePerf.Name = "picturePerf";
|
||||||
picturePerf.Size = new Size(36, 38);
|
picturePerf.Size = new Size(32, 32);
|
||||||
picturePerf.TabIndex = 41;
|
picturePerf.TabIndex = 41;
|
||||||
picturePerf.TabStop = false;
|
picturePerf.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -385,7 +385,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelFans.AutoSize = true;
|
labelFans.AutoSize = true;
|
||||||
labelFans.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelFans.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelFans.Location = new Point(52, 20);
|
labelFans.Location = new Point(53, 17);
|
||||||
labelFans.Margin = new Padding(4, 0, 4, 0);
|
labelFans.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelFans.Name = "labelFans";
|
labelFans.Name = "labelFans";
|
||||||
labelFans.Size = new Size(90, 32);
|
labelFans.Size = new Size(90, 32);
|
||||||
@@ -398,7 +398,7 @@ namespace GHelper
|
|||||||
panelApplyFans.Controls.Add(checkApplyFans);
|
panelApplyFans.Controls.Add(checkApplyFans);
|
||||||
panelApplyFans.Controls.Add(buttonReset);
|
panelApplyFans.Controls.Add(buttonReset);
|
||||||
panelApplyFans.Dock = DockStyle.Bottom;
|
panelApplyFans.Dock = DockStyle.Bottom;
|
||||||
panelApplyFans.Location = new Point(0, 1907);
|
panelApplyFans.Location = new Point(0, 2003);
|
||||||
panelApplyFans.Margin = new Padding(4);
|
panelApplyFans.Margin = new Padding(4);
|
||||||
panelApplyFans.Name = "panelApplyFans";
|
panelApplyFans.Name = "panelApplyFans";
|
||||||
panelApplyFans.Size = new Size(806, 116);
|
panelApplyFans.Size = new Size(806, 116);
|
||||||
@@ -473,7 +473,7 @@ namespace GHelper
|
|||||||
panelSliders.MinimumSize = new Size(530, 0);
|
panelSliders.MinimumSize = new Size(530, 0);
|
||||||
panelSliders.Name = "panelSliders";
|
panelSliders.Name = "panelSliders";
|
||||||
panelSliders.Padding = new Padding(10, 0, 0, 0);
|
panelSliders.Padding = new Padding(10, 0, 0, 0);
|
||||||
panelSliders.Size = new Size(530, 2023);
|
panelSliders.Size = new Size(530, 2119);
|
||||||
panelSliders.TabIndex = 13;
|
panelSliders.TabIndex = 13;
|
||||||
//
|
//
|
||||||
// panelAdvanced
|
// panelAdvanced
|
||||||
@@ -488,9 +488,9 @@ namespace GHelper
|
|||||||
panelAdvanced.Controls.Add(panelTemperature);
|
panelAdvanced.Controls.Add(panelTemperature);
|
||||||
panelAdvanced.Controls.Add(panelTitleTemp);
|
panelAdvanced.Controls.Add(panelTitleTemp);
|
||||||
panelAdvanced.Dock = DockStyle.Top;
|
panelAdvanced.Dock = DockStyle.Top;
|
||||||
panelAdvanced.Location = new Point(10, 1284);
|
panelAdvanced.Location = new Point(10, 1266);
|
||||||
panelAdvanced.Name = "panelAdvanced";
|
panelAdvanced.Name = "panelAdvanced";
|
||||||
panelAdvanced.Size = new Size(520, 778);
|
panelAdvanced.Size = new Size(520, 840);
|
||||||
panelAdvanced.TabIndex = 14;
|
panelAdvanced.TabIndex = 14;
|
||||||
panelAdvanced.Visible = false;
|
panelAdvanced.Visible = false;
|
||||||
//
|
//
|
||||||
@@ -499,7 +499,7 @@ namespace GHelper
|
|||||||
panelAdvancedApply.Controls.Add(checkApplyUV);
|
panelAdvancedApply.Controls.Add(checkApplyUV);
|
||||||
panelAdvancedApply.Controls.Add(buttonApplyAdvanced);
|
panelAdvancedApply.Controls.Add(buttonApplyAdvanced);
|
||||||
panelAdvancedApply.Dock = DockStyle.Top;
|
panelAdvancedApply.Dock = DockStyle.Top;
|
||||||
panelAdvancedApply.Location = new Point(0, 702);
|
panelAdvancedApply.Location = new Point(0, 764);
|
||||||
panelAdvancedApply.Name = "panelAdvancedApply";
|
panelAdvancedApply.Name = "panelAdvancedApply";
|
||||||
panelAdvancedApply.Size = new Size(520, 76);
|
panelAdvancedApply.Size = new Size(520, 76);
|
||||||
panelAdvancedApply.TabIndex = 47;
|
panelAdvancedApply.TabIndex = 47;
|
||||||
@@ -541,10 +541,10 @@ namespace GHelper
|
|||||||
labelRisky.Dock = DockStyle.Top;
|
labelRisky.Dock = DockStyle.Top;
|
||||||
labelRisky.ForeColor = SystemColors.ControlLightLight;
|
labelRisky.ForeColor = SystemColors.ControlLightLight;
|
||||||
labelRisky.Location = new Point(0, 504);
|
labelRisky.Location = new Point(0, 504);
|
||||||
labelRisky.Margin = new Padding(0, 0, 0, 0);
|
labelRisky.Margin = new Padding(0);
|
||||||
labelRisky.Name = "labelRisky";
|
labelRisky.Name = "labelRisky";
|
||||||
labelRisky.Padding = new Padding(10, 10, 10, 5);
|
labelRisky.Padding = new Padding(10, 10, 10, 5);
|
||||||
labelRisky.Size = new Size(520, 220);
|
labelRisky.Size = new Size(520, 260);
|
||||||
labelRisky.TabIndex = 46;
|
labelRisky.TabIndex = 46;
|
||||||
labelRisky.Text = resources.GetString("labelRisky.Text");
|
labelRisky.Text = resources.GetString("labelRisky.Text");
|
||||||
//
|
//
|
||||||
@@ -656,13 +656,13 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureUV
|
// pictureUV
|
||||||
//
|
//
|
||||||
pictureUV.BackgroundImage = Properties.Resources.icons8_voltage_60;
|
pictureUV.BackgroundImage = Properties.Resources.icons8_voltage_32;
|
||||||
pictureUV.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureUV.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureUV.InitialImage = null;
|
pictureUV.InitialImage = null;
|
||||||
pictureUV.Location = new Point(10, 18);
|
pictureUV.Location = new Point(10, 18);
|
||||||
pictureUV.Margin = new Padding(4, 2, 4, 10);
|
pictureUV.Margin = new Padding(4, 2, 4, 10);
|
||||||
pictureUV.Name = "pictureUV";
|
pictureUV.Name = "pictureUV";
|
||||||
pictureUV.Size = new Size(36, 38);
|
pictureUV.Size = new Size(32, 32);
|
||||||
pictureUV.TabIndex = 48;
|
pictureUV.TabIndex = 48;
|
||||||
pictureUV.TabStop = false;
|
pictureUV.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -670,7 +670,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelTitleUV.AutoSize = true;
|
labelTitleUV.AutoSize = true;
|
||||||
labelTitleUV.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelTitleUV.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelTitleUV.Location = new Point(51, 20);
|
labelTitleUV.Location = new Point(43, 17);
|
||||||
labelTitleUV.Margin = new Padding(4, 0, 4, 0);
|
labelTitleUV.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelTitleUV.Name = "labelTitleUV";
|
labelTitleUV.Name = "labelTitleUV";
|
||||||
labelTitleUV.Size = new Size(166, 32);
|
labelTitleUV.Size = new Size(166, 32);
|
||||||
@@ -737,13 +737,13 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureTemp
|
// pictureTemp
|
||||||
//
|
//
|
||||||
pictureTemp.BackgroundImage = Properties.Resources.icons8_temperature_48;
|
pictureTemp.BackgroundImage = Properties.Resources.icons8_temperature_32;
|
||||||
pictureTemp.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureTemp.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureTemp.InitialImage = null;
|
pictureTemp.InitialImage = null;
|
||||||
pictureTemp.Location = new Point(10, 18);
|
pictureTemp.Location = new Point(10, 18);
|
||||||
pictureTemp.Margin = new Padding(4, 2, 4, 10);
|
pictureTemp.Margin = new Padding(4, 2, 4, 10);
|
||||||
pictureTemp.Name = "pictureTemp";
|
pictureTemp.Name = "pictureTemp";
|
||||||
pictureTemp.Size = new Size(36, 38);
|
pictureTemp.Size = new Size(32, 32);
|
||||||
pictureTemp.TabIndex = 48;
|
pictureTemp.TabIndex = 48;
|
||||||
pictureTemp.TabStop = false;
|
pictureTemp.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -751,7 +751,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelTempLimit.AutoSize = true;
|
labelTempLimit.AutoSize = true;
|
||||||
labelTempLimit.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelTempLimit.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelTempLimit.Location = new Point(51, 20);
|
labelTempLimit.Location = new Point(46, 17);
|
||||||
labelTempLimit.Margin = new Padding(4, 0, 4, 0);
|
labelTempLimit.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelTempLimit.Name = "labelTempLimit";
|
labelTempLimit.Name = "labelTempLimit";
|
||||||
labelTempLimit.Size = new Size(140, 32);
|
labelTempLimit.Size = new Size(140, 32);
|
||||||
@@ -770,17 +770,17 @@ namespace GHelper
|
|||||||
panelPower.Controls.Add(panelBoost);
|
panelPower.Controls.Add(panelBoost);
|
||||||
panelPower.Controls.Add(panelBoostTitle);
|
panelPower.Controls.Add(panelBoostTitle);
|
||||||
panelPower.Dock = DockStyle.Top;
|
panelPower.Dock = DockStyle.Top;
|
||||||
panelPower.Location = new Point(10, 646);
|
panelPower.Location = new Point(10, 640);
|
||||||
panelPower.Margin = new Padding(4);
|
panelPower.Margin = new Padding(4);
|
||||||
panelPower.Name = "panelPower";
|
panelPower.Name = "panelPower";
|
||||||
panelPower.Size = new Size(520, 638);
|
panelPower.Size = new Size(520, 626);
|
||||||
panelPower.TabIndex = 43;
|
panelPower.TabIndex = 43;
|
||||||
//
|
//
|
||||||
// panelApplyPower
|
// panelApplyPower
|
||||||
//
|
//
|
||||||
panelApplyPower.Controls.Add(checkApplyPower);
|
panelApplyPower.Controls.Add(checkApplyPower);
|
||||||
panelApplyPower.Dock = DockStyle.Top;
|
panelApplyPower.Dock = DockStyle.Top;
|
||||||
panelApplyPower.Location = new Point(0, 568);
|
panelApplyPower.Location = new Point(0, 556);
|
||||||
panelApplyPower.Name = "panelApplyPower";
|
panelApplyPower.Name = "panelApplyPower";
|
||||||
panelApplyPower.Size = new Size(520, 70);
|
panelApplyPower.Size = new Size(520, 70);
|
||||||
panelApplyPower.TabIndex = 47;
|
panelApplyPower.TabIndex = 47;
|
||||||
@@ -805,7 +805,7 @@ namespace GHelper
|
|||||||
panelB0.Controls.Add(labelLeftB0);
|
panelB0.Controls.Add(labelLeftB0);
|
||||||
panelB0.Controls.Add(trackB0);
|
panelB0.Controls.Add(trackB0);
|
||||||
panelB0.Dock = DockStyle.Top;
|
panelB0.Dock = DockStyle.Top;
|
||||||
panelB0.Location = new Point(0, 444);
|
panelB0.Location = new Point(0, 432);
|
||||||
panelB0.Margin = new Padding(4);
|
panelB0.Margin = new Padding(4);
|
||||||
panelB0.MaximumSize = new Size(0, 124);
|
panelB0.MaximumSize = new Size(0, 124);
|
||||||
panelB0.Name = "panelB0";
|
panelB0.Name = "panelB0";
|
||||||
@@ -854,7 +854,7 @@ namespace GHelper
|
|||||||
panelC1.Controls.Add(labelLeftC1);
|
panelC1.Controls.Add(labelLeftC1);
|
||||||
panelC1.Controls.Add(trackC1);
|
panelC1.Controls.Add(trackC1);
|
||||||
panelC1.Dock = DockStyle.Top;
|
panelC1.Dock = DockStyle.Top;
|
||||||
panelC1.Location = new Point(0, 320);
|
panelC1.Location = new Point(0, 308);
|
||||||
panelC1.Margin = new Padding(4);
|
panelC1.Margin = new Padding(4);
|
||||||
panelC1.MaximumSize = new Size(0, 124);
|
panelC1.MaximumSize = new Size(0, 124);
|
||||||
panelC1.Name = "panelC1";
|
panelC1.Name = "panelC1";
|
||||||
@@ -903,7 +903,7 @@ namespace GHelper
|
|||||||
panelA0.Controls.Add(labelLeftA0);
|
panelA0.Controls.Add(labelLeftA0);
|
||||||
panelA0.Controls.Add(trackA0);
|
panelA0.Controls.Add(trackA0);
|
||||||
panelA0.Dock = DockStyle.Top;
|
panelA0.Dock = DockStyle.Top;
|
||||||
panelA0.Location = new Point(0, 196);
|
panelA0.Location = new Point(0, 184);
|
||||||
panelA0.Margin = new Padding(4);
|
panelA0.Margin = new Padding(4);
|
||||||
panelA0.MaximumSize = new Size(0, 124);
|
panelA0.MaximumSize = new Size(0, 124);
|
||||||
panelA0.Name = "panelA0";
|
panelA0.Name = "panelA0";
|
||||||
@@ -951,21 +951,21 @@ namespace GHelper
|
|||||||
panelTitleCPU.Controls.Add(pictureBoxCPU);
|
panelTitleCPU.Controls.Add(pictureBoxCPU);
|
||||||
panelTitleCPU.Controls.Add(labelPowerLimits);
|
panelTitleCPU.Controls.Add(labelPowerLimits);
|
||||||
panelTitleCPU.Dock = DockStyle.Top;
|
panelTitleCPU.Dock = DockStyle.Top;
|
||||||
panelTitleCPU.Location = new Point(0, 130);
|
panelTitleCPU.Location = new Point(0, 124);
|
||||||
panelTitleCPU.Margin = new Padding(4);
|
panelTitleCPU.Margin = new Padding(4);
|
||||||
panelTitleCPU.Name = "panelTitleCPU";
|
panelTitleCPU.Name = "panelTitleCPU";
|
||||||
panelTitleCPU.Size = new Size(520, 66);
|
panelTitleCPU.Size = new Size(520, 60);
|
||||||
panelTitleCPU.TabIndex = 42;
|
panelTitleCPU.TabIndex = 42;
|
||||||
//
|
//
|
||||||
// pictureBoxCPU
|
// pictureBoxCPU
|
||||||
//
|
//
|
||||||
pictureBoxCPU.BackgroundImage = Properties.Resources.icons8_processor_96;
|
pictureBoxCPU.BackgroundImage = Properties.Resources.icons8_processor_32;
|
||||||
pictureBoxCPU.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureBoxCPU.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureBoxCPU.InitialImage = null;
|
pictureBoxCPU.InitialImage = null;
|
||||||
pictureBoxCPU.Location = new Point(10, 18);
|
pictureBoxCPU.Location = new Point(10, 18);
|
||||||
pictureBoxCPU.Margin = new Padding(4, 2, 4, 10);
|
pictureBoxCPU.Margin = new Padding(4, 2, 4, 10);
|
||||||
pictureBoxCPU.Name = "pictureBoxCPU";
|
pictureBoxCPU.Name = "pictureBoxCPU";
|
||||||
pictureBoxCPU.Size = new Size(36, 38);
|
pictureBoxCPU.Size = new Size(32, 32);
|
||||||
pictureBoxCPU.TabIndex = 40;
|
pictureBoxCPU.TabIndex = 40;
|
||||||
pictureBoxCPU.TabStop = false;
|
pictureBoxCPU.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -973,7 +973,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelPowerLimits.AutoSize = true;
|
labelPowerLimits.AutoSize = true;
|
||||||
labelPowerLimits.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelPowerLimits.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelPowerLimits.Location = new Point(48, 20);
|
labelPowerLimits.Location = new Point(46, 16);
|
||||||
labelPowerLimits.Margin = new Padding(4, 0, 4, 0);
|
labelPowerLimits.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelPowerLimits.Name = "labelPowerLimits";
|
labelPowerLimits.Name = "labelPowerLimits";
|
||||||
labelPowerLimits.Size = new Size(160, 32);
|
labelPowerLimits.Size = new Size(160, 32);
|
||||||
@@ -984,7 +984,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
panelBoost.Controls.Add(comboBoost);
|
panelBoost.Controls.Add(comboBoost);
|
||||||
panelBoost.Dock = DockStyle.Top;
|
panelBoost.Dock = DockStyle.Top;
|
||||||
panelBoost.Location = new Point(0, 66);
|
panelBoost.Location = new Point(0, 60);
|
||||||
panelBoost.Margin = new Padding(4);
|
panelBoost.Margin = new Padding(4);
|
||||||
panelBoost.Name = "panelBoost";
|
panelBoost.Name = "panelBoost";
|
||||||
panelBoost.Size = new Size(520, 64);
|
panelBoost.Size = new Size(520, 64);
|
||||||
@@ -1000,18 +1000,18 @@ namespace GHelper
|
|||||||
panelBoostTitle.Location = new Point(0, 0);
|
panelBoostTitle.Location = new Point(0, 0);
|
||||||
panelBoostTitle.Margin = new Padding(4);
|
panelBoostTitle.Margin = new Padding(4);
|
||||||
panelBoostTitle.Name = "panelBoostTitle";
|
panelBoostTitle.Name = "panelBoostTitle";
|
||||||
panelBoostTitle.Size = new Size(520, 66);
|
panelBoostTitle.Size = new Size(520, 60);
|
||||||
panelBoostTitle.TabIndex = 48;
|
panelBoostTitle.TabIndex = 48;
|
||||||
//
|
//
|
||||||
// pictureBoost
|
// pictureBoost
|
||||||
//
|
//
|
||||||
pictureBoost.BackgroundImage = Properties.Resources.icons8_boost_30;
|
pictureBoost.BackgroundImage = Properties.Resources.icons8_rocket_32;
|
||||||
pictureBoost.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureBoost.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureBoost.InitialImage = null;
|
pictureBoost.InitialImage = null;
|
||||||
pictureBoost.Location = new Point(10, 18);
|
pictureBoost.Location = new Point(10, 18);
|
||||||
pictureBoost.Margin = new Padding(4, 2, 4, 10);
|
pictureBoost.Margin = new Padding(4, 2, 4, 10);
|
||||||
pictureBoost.Name = "pictureBoost";
|
pictureBoost.Name = "pictureBoost";
|
||||||
pictureBoost.Size = new Size(36, 38);
|
pictureBoost.Size = new Size(32, 32);
|
||||||
pictureBoost.TabIndex = 40;
|
pictureBoost.TabIndex = 40;
|
||||||
pictureBoost.TabStop = false;
|
pictureBoost.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -1019,7 +1019,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelBoost.AutoSize = true;
|
labelBoost.AutoSize = true;
|
||||||
labelBoost.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelBoost.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelBoost.Location = new Point(48, 20);
|
labelBoost.Location = new Point(46, 18);
|
||||||
labelBoost.Margin = new Padding(4, 0, 4, 0);
|
labelBoost.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelBoost.Name = "labelBoost";
|
labelBoost.Name = "labelBoost";
|
||||||
labelBoost.Size = new Size(133, 32);
|
labelBoost.Size = new Size(133, 32);
|
||||||
@@ -1039,7 +1039,7 @@ namespace GHelper
|
|||||||
panelGPU.Margin = new Padding(4);
|
panelGPU.Margin = new Padding(4);
|
||||||
panelGPU.Name = "panelGPU";
|
panelGPU.Name = "panelGPU";
|
||||||
panelGPU.Padding = new Padding(0, 0, 0, 18);
|
panelGPU.Padding = new Padding(0, 0, 0, 18);
|
||||||
panelGPU.Size = new Size(520, 580);
|
panelGPU.Size = new Size(520, 574);
|
||||||
panelGPU.TabIndex = 44;
|
panelGPU.TabIndex = 44;
|
||||||
panelGPU.Visible = false;
|
panelGPU.Visible = false;
|
||||||
//
|
//
|
||||||
@@ -1051,7 +1051,7 @@ namespace GHelper
|
|||||||
panelGPUTemp.Controls.Add(labelGPUTempTitle);
|
panelGPUTemp.Controls.Add(labelGPUTempTitle);
|
||||||
panelGPUTemp.Controls.Add(trackGPUTemp);
|
panelGPUTemp.Controls.Add(trackGPUTemp);
|
||||||
panelGPUTemp.Dock = DockStyle.Top;
|
panelGPUTemp.Dock = DockStyle.Top;
|
||||||
panelGPUTemp.Location = new Point(0, 438);
|
panelGPUTemp.Location = new Point(0, 432);
|
||||||
panelGPUTemp.Margin = new Padding(4);
|
panelGPUTemp.Margin = new Padding(4);
|
||||||
panelGPUTemp.MaximumSize = new Size(0, 124);
|
panelGPUTemp.MaximumSize = new Size(0, 124);
|
||||||
panelGPUTemp.Name = "panelGPUTemp";
|
panelGPUTemp.Name = "panelGPUTemp";
|
||||||
@@ -1100,7 +1100,7 @@ namespace GHelper
|
|||||||
panelGPUBoost.Controls.Add(labelGPUBoostTitle);
|
panelGPUBoost.Controls.Add(labelGPUBoostTitle);
|
||||||
panelGPUBoost.Controls.Add(trackGPUBoost);
|
panelGPUBoost.Controls.Add(trackGPUBoost);
|
||||||
panelGPUBoost.Dock = DockStyle.Top;
|
panelGPUBoost.Dock = DockStyle.Top;
|
||||||
panelGPUBoost.Location = new Point(0, 314);
|
panelGPUBoost.Location = new Point(0, 308);
|
||||||
panelGPUBoost.Margin = new Padding(4);
|
panelGPUBoost.Margin = new Padding(4);
|
||||||
panelGPUBoost.MaximumSize = new Size(0, 124);
|
panelGPUBoost.MaximumSize = new Size(0, 124);
|
||||||
panelGPUBoost.Name = "panelGPUBoost";
|
panelGPUBoost.Name = "panelGPUBoost";
|
||||||
@@ -1149,7 +1149,7 @@ namespace GHelper
|
|||||||
panelGPUMemory.Controls.Add(labelGPUMemoryTitle);
|
panelGPUMemory.Controls.Add(labelGPUMemoryTitle);
|
||||||
panelGPUMemory.Controls.Add(trackGPUMemory);
|
panelGPUMemory.Controls.Add(trackGPUMemory);
|
||||||
panelGPUMemory.Dock = DockStyle.Top;
|
panelGPUMemory.Dock = DockStyle.Top;
|
||||||
panelGPUMemory.Location = new Point(0, 190);
|
panelGPUMemory.Location = new Point(0, 184);
|
||||||
panelGPUMemory.Margin = new Padding(4);
|
panelGPUMemory.Margin = new Padding(4);
|
||||||
panelGPUMemory.MaximumSize = new Size(0, 124);
|
panelGPUMemory.MaximumSize = new Size(0, 124);
|
||||||
panelGPUMemory.Name = "panelGPUMemory";
|
panelGPUMemory.Name = "panelGPUMemory";
|
||||||
@@ -1198,7 +1198,7 @@ namespace GHelper
|
|||||||
panelGPUCore.Controls.Add(trackGPUCore);
|
panelGPUCore.Controls.Add(trackGPUCore);
|
||||||
panelGPUCore.Controls.Add(labelGPUCoreTitle);
|
panelGPUCore.Controls.Add(labelGPUCoreTitle);
|
||||||
panelGPUCore.Dock = DockStyle.Top;
|
panelGPUCore.Dock = DockStyle.Top;
|
||||||
panelGPUCore.Location = new Point(0, 66);
|
panelGPUCore.Location = new Point(0, 60);
|
||||||
panelGPUCore.Margin = new Padding(4);
|
panelGPUCore.Margin = new Padding(4);
|
||||||
panelGPUCore.MaximumSize = new Size(0, 124);
|
panelGPUCore.MaximumSize = new Size(0, 124);
|
||||||
panelGPUCore.Name = "panelGPUCore";
|
panelGPUCore.Name = "panelGPUCore";
|
||||||
@@ -1250,19 +1250,19 @@ namespace GHelper
|
|||||||
panelTitleGPU.Location = new Point(0, 0);
|
panelTitleGPU.Location = new Point(0, 0);
|
||||||
panelTitleGPU.Margin = new Padding(4);
|
panelTitleGPU.Margin = new Padding(4);
|
||||||
panelTitleGPU.Name = "panelTitleGPU";
|
panelTitleGPU.Name = "panelTitleGPU";
|
||||||
panelTitleGPU.Size = new Size(520, 66);
|
panelTitleGPU.Size = new Size(520, 60);
|
||||||
panelTitleGPU.TabIndex = 43;
|
panelTitleGPU.TabIndex = 43;
|
||||||
//
|
//
|
||||||
// pictureGPU
|
// pictureGPU
|
||||||
//
|
//
|
||||||
pictureGPU.BackgroundImage = Properties.Resources.icons8_video_card_48;
|
pictureGPU.BackgroundImage = Properties.Resources.icons8_video_card_32;
|
||||||
pictureGPU.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureGPU.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureGPU.ErrorImage = null;
|
pictureGPU.ErrorImage = null;
|
||||||
pictureGPU.InitialImage = null;
|
pictureGPU.InitialImage = null;
|
||||||
pictureGPU.Location = new Point(10, 18);
|
pictureGPU.Location = new Point(10, 18);
|
||||||
pictureGPU.Margin = new Padding(4, 2, 4, 10);
|
pictureGPU.Margin = new Padding(4, 2, 4, 10);
|
||||||
pictureGPU.Name = "pictureGPU";
|
pictureGPU.Name = "pictureGPU";
|
||||||
pictureGPU.Size = new Size(36, 38);
|
pictureGPU.Size = new Size(32, 32);
|
||||||
pictureGPU.TabIndex = 41;
|
pictureGPU.TabIndex = 41;
|
||||||
pictureGPU.TabStop = false;
|
pictureGPU.TabStop = false;
|
||||||
//
|
//
|
||||||
@@ -1270,7 +1270,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
labelGPU.AutoSize = true;
|
labelGPU.AutoSize = true;
|
||||||
labelGPU.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
labelGPU.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||||
labelGPU.Location = new Point(48, 20);
|
labelGPU.Location = new Point(45, 17);
|
||||||
labelGPU.Margin = new Padding(4, 0, 4, 0);
|
labelGPU.Margin = new Padding(4, 0, 4, 0);
|
||||||
labelGPU.Name = "labelGPU";
|
labelGPU.Name = "labelGPU";
|
||||||
labelGPU.Size = new Size(162, 32);
|
labelGPU.Size = new Size(162, 32);
|
||||||
@@ -1368,7 +1368,7 @@ namespace GHelper
|
|||||||
AutoScaleMode = AutoScaleMode.Dpi;
|
AutoScaleMode = AutoScaleMode.Dpi;
|
||||||
AutoSize = true;
|
AutoSize = true;
|
||||||
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
ClientSize = new Size(1350, 2023);
|
ClientSize = new Size(1350, 2119);
|
||||||
Controls.Add(panelFans);
|
Controls.Add(panelFans);
|
||||||
Controls.Add(panelSliders);
|
Controls.Add(panelSliders);
|
||||||
Margin = new Padding(4, 2, 4, 2);
|
Margin = new Padding(4, 2, 4, 2);
|
||||||
|
|||||||
30
app/Fans.cs
@@ -53,6 +53,8 @@ namespace GHelper
|
|||||||
labelGPUTempTitle.Text = Properties.Strings.GPUTempTarget;
|
labelGPUTempTitle.Text = Properties.Strings.GPUTempTarget;
|
||||||
|
|
||||||
labelRisky.Text = Properties.Strings.UndervoltingRisky;
|
labelRisky.Text = Properties.Strings.UndervoltingRisky;
|
||||||
|
buttonApplyAdvanced.Text = Properties.Strings.Apply;
|
||||||
|
checkApplyUV.Text = Properties.Strings.AutoApply;
|
||||||
|
|
||||||
InitTheme(true);
|
InitTheme(true);
|
||||||
|
|
||||||
@@ -267,32 +269,33 @@ namespace GHelper
|
|||||||
int igpuUV = Math.Max(trackUViGPU.Minimum, Math.Min(trackUViGPU.Maximum, AppConfig.GetMode("igpu_uv", 0)));
|
int igpuUV = Math.Max(trackUViGPU.Minimum, Math.Min(trackUViGPU.Maximum, AppConfig.GetMode("igpu_uv", 0)));
|
||||||
|
|
||||||
int temp = AppConfig.GetMode("cpu_temp");
|
int temp = AppConfig.GetMode("cpu_temp");
|
||||||
if (temp < trackTemp.Minimum || temp > trackTemp.Maximum) temp = 96;
|
if (temp < RyzenControl.MinTemp || temp > RyzenControl.MaxTemp) temp = RyzenControl.MaxTemp;
|
||||||
|
|
||||||
checkApplyUV.Enabled = checkApplyUV.Checked = AppConfig.IsMode("auto_uv");
|
checkApplyUV.Enabled = checkApplyUV.Checked = AppConfig.IsMode("auto_uv");
|
||||||
|
|
||||||
trackUV.Value = cpuUV;
|
trackUV.Value = cpuUV;
|
||||||
labelUV.Text = trackUV.Value.ToString();
|
|
||||||
|
|
||||||
trackUViGPU.Value = igpuUV;
|
trackUViGPU.Value = igpuUV;
|
||||||
labelUViGPU.Text = trackUViGPU.Value.ToString();
|
|
||||||
|
|
||||||
trackTemp.Value = temp;
|
trackTemp.Value = temp;
|
||||||
labelTemp.Text = trackTemp.Value.ToString() + "°C";
|
|
||||||
|
|
||||||
|
VisualiseAdvanced();
|
||||||
|
|
||||||
buttonAdvanced.Visible = RyzenControl.IsAMD();
|
buttonAdvanced.Visible = RyzenControl.IsAMD();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void VisualiseAdvanced()
|
||||||
|
{
|
||||||
|
labelUV.Text = trackUV.Value.ToString();
|
||||||
|
labelUViGPU.Text = trackUViGPU.Value.ToString();
|
||||||
|
labelTemp.Text = (trackTemp.Value < RyzenControl.MaxTemp) ? trackTemp.Value.ToString() + "°C" : "Default";
|
||||||
|
}
|
||||||
|
|
||||||
private void AdvancedScroll()
|
private void AdvancedScroll()
|
||||||
{
|
{
|
||||||
AppConfig.SetMode("auto_uv", 0);
|
AppConfig.SetMode("auto_uv", 0);
|
||||||
checkApplyUV.Enabled = checkApplyUV.Checked = false;
|
checkApplyUV.Enabled = checkApplyUV.Checked = false;
|
||||||
|
|
||||||
labelUV.Text = trackUV.Value.ToString();
|
VisualiseAdvanced();
|
||||||
labelUViGPU.Text = trackUViGPU.Value.ToString();
|
|
||||||
labelTemp.Text = trackTemp.Value.ToString() + "°C";
|
|
||||||
|
|
||||||
AppConfig.SetMode("cpu_temp", trackTemp.Value);
|
AppConfig.SetMode("cpu_temp", trackTemp.Value);
|
||||||
AppConfig.SetMode("cpu_uv", trackUV.Value);
|
AppConfig.SetMode("cpu_uv", trackUV.Value);
|
||||||
@@ -839,16 +842,15 @@ namespace GHelper
|
|||||||
AppConfig.SetMode("auto_apply", 0);
|
AppConfig.SetMode("auto_apply", 0);
|
||||||
AppConfig.SetMode("auto_apply_power", 0);
|
AppConfig.SetMode("auto_apply_power", 0);
|
||||||
|
|
||||||
|
trackUV.Value = RyzenControl.MaxCPUUV;
|
||||||
trackUV.Value = 0;
|
trackUViGPU.Value = RyzenControl.MaxIGPUUV;
|
||||||
trackUViGPU.Value = 0;
|
trackTemp.Value = RyzenControl.MaxTemp;
|
||||||
trackTemp.Value = 96;
|
|
||||||
|
|
||||||
AdvancedScroll();
|
AdvancedScroll();
|
||||||
AppConfig.SetMode("cpu_temp", -1);
|
AppConfig.SetMode("cpu_temp", -1);
|
||||||
|
|
||||||
modeControl.ResetPerformanceMode();
|
modeControl.ResetPerformanceMode();
|
||||||
|
|
||||||
if (Program.acpi.IsXGConnected()) AsusUSB.ResetXGM();
|
if (Program.acpi.IsXGConnected()) AsusUSB.ResetXGM();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
||||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||||
<AssemblyVersion>0.94</AssemblyVersion>
|
<AssemblyVersion>0.96</AssemblyVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
|||||||
29
app/Helpers/Audio.cs
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
using NAudio.CoreAudioApi;
|
||||||
|
|
||||||
|
namespace GHelper.Helpers
|
||||||
|
{
|
||||||
|
internal class Audio
|
||||||
|
{
|
||||||
|
public static bool ToggleMute()
|
||||||
|
{
|
||||||
|
using (var enumerator = new MMDeviceEnumerator())
|
||||||
|
{
|
||||||
|
var commDevice = enumerator.GetDefaultAudioEndpoint(DataFlow.Capture, Role.Communications);
|
||||||
|
var consoleDevice = enumerator.GetDefaultAudioEndpoint(DataFlow.Capture, Role.Console);
|
||||||
|
var mmDevice = enumerator.GetDefaultAudioEndpoint(DataFlow.Capture, Role.Multimedia);
|
||||||
|
|
||||||
|
bool status = !commDevice.AudioEndpointVolume.Mute;
|
||||||
|
|
||||||
|
commDevice.AudioEndpointVolume.Mute = status;
|
||||||
|
consoleDevice.AudioEndpointVolume.Mute = status;
|
||||||
|
mmDevice.AudioEndpointVolume.Mute = status;
|
||||||
|
|
||||||
|
Logger.WriteLine(commDevice.ToString() + ":" + status);
|
||||||
|
Logger.WriteLine(consoleDevice.ToString() + ":" + status);
|
||||||
|
Logger.WriteLine(mmDevice.ToString() + ":" + status);
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
public static class Logger
|
public static class Logger
|
||||||
{
|
{
|
||||||
static string appPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\GHelper";
|
public static string appPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\GHelper";
|
||||||
static string logFile = appPath + "\\log.txt";
|
public static string logFile = appPath + "\\log.txt";
|
||||||
|
|
||||||
public static void WriteLine(string logMessage)
|
public static void WriteLine(string logMessage)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace GHelper.Input
|
|||||||
public class InputDispatcher
|
public class InputDispatcher
|
||||||
{
|
{
|
||||||
System.Timers.Timer timer = new System.Timers.Timer(1000);
|
System.Timers.Timer timer = new System.Timers.Timer(1000);
|
||||||
public bool backlightActivity = true;
|
public static bool backlightActivity = true;
|
||||||
|
|
||||||
public static Keys keyProfile = Keys.F5;
|
public static Keys keyProfile = Keys.F5;
|
||||||
public static Keys keyApp = Keys.F12;
|
public static Keys keyApp = Keys.F12;
|
||||||
@@ -187,10 +187,10 @@ namespace GHelper.Input
|
|||||||
KeyboardHook.KeyPress(Keys.VolumeMute);
|
KeyboardHook.KeyPress(Keys.VolumeMute);
|
||||||
break;
|
break;
|
||||||
case Keys.F2:
|
case Keys.F2:
|
||||||
HandleEvent(197);
|
SetBacklight(-1, true);
|
||||||
break;
|
break;
|
||||||
case Keys.F3:
|
case Keys.F3:
|
||||||
HandleEvent(196);
|
SetBacklight(1, true);
|
||||||
break;
|
break;
|
||||||
case Keys.F4:
|
case Keys.F4:
|
||||||
KeyProcess("fnf4");
|
KeyProcess("fnf4");
|
||||||
@@ -296,13 +296,8 @@ namespace GHelper.Input
|
|||||||
ToggleFnLock();
|
ToggleFnLock();
|
||||||
break;
|
break;
|
||||||
case "micmute":
|
case "micmute":
|
||||||
using (var enumerator = new MMDeviceEnumerator())
|
bool muteStatus = Audio.ToggleMute();
|
||||||
{
|
Program.toast.RunToast(muteStatus ? "Muted" : "Unmuted", muteStatus ? ToastIcon.MicrophoneMute : ToastIcon.Microphone);
|
||||||
var commDevice = enumerator.GetDefaultAudioEndpoint(DataFlow.Capture, Role.Communications);
|
|
||||||
bool muteStatus = !commDevice.AudioEndpointVolume.Mute;
|
|
||||||
commDevice.AudioEndpointVolume.Mute = muteStatus;
|
|
||||||
Program.toast.RunToast(muteStatus ? "Muted" : "Unmuted", muteStatus ? ToastIcon.MicrophoneMute : ToastIcon.Microphone);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case "brightness_up":
|
case "brightness_up":
|
||||||
HandleOptimizationEvent(32);
|
HandleOptimizationEvent(32);
|
||||||
@@ -323,6 +318,7 @@ namespace GHelper.Input
|
|||||||
{
|
{
|
||||||
using (var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\PrecisionTouchPad\Status", false))
|
using (var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\PrecisionTouchPad\Status", false))
|
||||||
{
|
{
|
||||||
|
Logger.WriteLine("Touchpad status:" + key?.GetValue("Enabled")?.ToString());
|
||||||
return key?.GetValue("Enabled")?.ToString() == "1";
|
return key?.GetValue("Enabled")?.ToString() == "1";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -342,6 +338,8 @@ namespace GHelper.Input
|
|||||||
|
|
||||||
public static void TabletMode()
|
public static void TabletMode()
|
||||||
{
|
{
|
||||||
|
if (AppConfig.Is("disable_tablet")) return;
|
||||||
|
|
||||||
bool touchpadState = GetTouchpadState();
|
bool touchpadState = GetTouchpadState();
|
||||||
bool tabletState = Program.acpi.DeviceGet(AsusACPI.TabletState) > 0;
|
bool tabletState = Program.acpi.DeviceGet(AsusACPI.TabletState) > 0;
|
||||||
|
|
||||||
@@ -410,9 +408,9 @@ namespace GHelper.Input
|
|||||||
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Up, "Brightness");
|
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Up, "Brightness");
|
||||||
break;
|
break;
|
||||||
case 107: // FN+F10
|
case 107: // FN+F10
|
||||||
bool touchpadState = GetTouchpadState();
|
|
||||||
AsusUSB.TouchpadToggle();
|
AsusUSB.TouchpadToggle();
|
||||||
Program.toast.RunToast(touchpadState ? "Off" : "On", ToastIcon.Touchpad);
|
Thread.Sleep(50);
|
||||||
|
Program.toast.RunToast(GetTouchpadState() ? "On" : "Off", ToastIcon.Touchpad);
|
||||||
break;
|
break;
|
||||||
case 108: // FN+F11
|
case 108: // FN+F11
|
||||||
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.KB_Sleep, "Sleep");
|
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.KB_Sleep, "Sleep");
|
||||||
@@ -443,7 +441,7 @@ namespace GHelper.Input
|
|||||||
AsusUSB.ApplyBrightness(GetBacklight(), "Auto");
|
AsusUSB.ApplyBrightness(GetBacklight(), "Auto");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void SetBacklight(int delta)
|
public static void SetBacklight(int delta, bool force = false)
|
||||||
{
|
{
|
||||||
int backlight_power = AppConfig.Get("keyboard_brightness", 1);
|
int backlight_power = AppConfig.Get("keyboard_brightness", 1);
|
||||||
int backlight_battery = AppConfig.Get("keyboard_brightness_ac", 1);
|
int backlight_battery = AppConfig.Get("keyboard_brightness_ac", 1);
|
||||||
@@ -461,13 +459,14 @@ namespace GHelper.Input
|
|||||||
else
|
else
|
||||||
AppConfig.Set("keyboard_brightness", backlight);
|
AppConfig.Set("keyboard_brightness", backlight);
|
||||||
|
|
||||||
if (!OptimizationService.IsRunning())
|
if (force || !OptimizationService.IsRunning())
|
||||||
{
|
{
|
||||||
AsusUSB.ApplyBrightness(backlight, "HotKey");
|
AsusUSB.ApplyBrightness(backlight, "HotKey");
|
||||||
string[] backlightNames = new string[] { "Off", "Low", "Mid", "Max" };
|
|
||||||
Program.toast.RunToast(backlightNames[backlight], delta > 0 ? ToastIcon.BacklightUp : ToastIcon.BacklightDown);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string[] backlightNames = new string[] { "Off", "Low", "Mid", "Max" };
|
||||||
|
Program.toast.RunToast(backlightNames[backlight], delta > 0 ? ToastIcon.BacklightUp : ToastIcon.BacklightDown);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void LaunchProcess(string command = "")
|
static void LaunchProcess(string command = "")
|
||||||
|
|||||||
@@ -10,7 +10,20 @@ namespace GHelper.Input
|
|||||||
public KeyboardListener(Action<int> KeyHandler)
|
public KeyboardListener(Action<int> KeyHandler)
|
||||||
{
|
{
|
||||||
HidDevice? input = AsusUSB.GetDevice();
|
HidDevice? input = AsusUSB.GetDevice();
|
||||||
if (input == null) return;
|
|
||||||
|
// Fallback
|
||||||
|
if (input == null)
|
||||||
|
{
|
||||||
|
AsusUSB.Init();
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
input = AsusUSB.GetDevice();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (input == null)
|
||||||
|
{
|
||||||
|
Logger.WriteLine($"Input device not found");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Logger.WriteLine($"Input: {input.DevicePath}");
|
Logger.WriteLine($"Input: {input.DevicePath}");
|
||||||
|
|
||||||
|
|||||||
@@ -171,6 +171,11 @@ namespace GHelper.Mode
|
|||||||
AppConfig.ContainsModel("G733");
|
AppConfig.ContainsModel("G733");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool IsFanRequired()
|
||||||
|
{
|
||||||
|
return AppConfig.ContainsModel("GA402XI") || AppConfig.ContainsModel("G513");
|
||||||
|
}
|
||||||
|
|
||||||
public void AutoPower(int delay = 0)
|
public void AutoPower(int delay = 0)
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -182,8 +187,8 @@ namespace GHelper.Mode
|
|||||||
|
|
||||||
if (applyPower)
|
if (applyPower)
|
||||||
{
|
{
|
||||||
// force fan curve for misbehaving bios PPTs on G513
|
// force fan curve for misbehaving bios PPTs on some models
|
||||||
if (AppConfig.ContainsModel("G513") && !applyFans)
|
if (!applyFans && IsFanRequired())
|
||||||
{
|
{
|
||||||
delay = 500;
|
delay = 500;
|
||||||
AutoFans(true);
|
AutoFans(true);
|
||||||
@@ -205,6 +210,7 @@ namespace GHelper.Mode
|
|||||||
timer.Dispose();
|
timer.Dispose();
|
||||||
|
|
||||||
if (applyPower) SetPower();
|
if (applyPower) SetPower();
|
||||||
|
Thread.Sleep(1000);
|
||||||
SetGPUPower();
|
SetGPUPower();
|
||||||
AutoRyzen();
|
AutoRyzen();
|
||||||
};
|
};
|
||||||
@@ -342,7 +348,7 @@ namespace GHelper.Mode
|
|||||||
|
|
||||||
public void SetCPUTemp(int? cpuTemp, bool log = true)
|
public void SetCPUTemp(int? cpuTemp, bool log = true)
|
||||||
{
|
{
|
||||||
if (cpuTemp >= RyzenControl.MinTemp && cpuTemp <= RyzenControl.MaxTemp)
|
if (cpuTemp >= RyzenControl.MinTemp && cpuTemp < RyzenControl.MaxTemp)
|
||||||
{
|
{
|
||||||
var resultCPU = SendCommand.set_tctl_temp((uint)cpuTemp);
|
var resultCPU = SendCommand.set_tctl_temp((uint)cpuTemp);
|
||||||
if (log) Logger.WriteLine($"CPU Temp: {cpuTemp} {resultCPU}");
|
if (log) Logger.WriteLine($"CPU Temp: {cpuTemp} {resultCPU}");
|
||||||
|
|||||||
202
app/Properties/Resources.Designer.cs
generated
@@ -60,6 +60,16 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap backlight {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("backlight", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -123,9 +133,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_balance_symbol_96 {
|
internal static System.Drawing.Bitmap icons8_automation_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-balance-symbol-96", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-automation-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -140,16 +150,6 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_boost_30 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-boost-30", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -163,9 +163,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_charging_battery_48 {
|
internal static System.Drawing.Bitmap icons8_charging_battery_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-charging-battery-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-charging-battery-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -190,6 +190,16 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap icons8_fan_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("icons8_fan_32", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -200,26 +210,6 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_fan_head_96 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-fan-head-96", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_fan_speed_48 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-fan-speed-48", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -253,9 +243,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_help_64 {
|
internal static System.Drawing.Bitmap icons8_gauge_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-help-64", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-gauge-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -263,9 +253,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_keyboard_48 {
|
internal static System.Drawing.Bitmap icons8_help_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-keyboard-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-help-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -273,9 +263,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_laptop_48 {
|
internal static System.Drawing.Bitmap icons8_keyboard_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-laptop-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-keyboard-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -283,9 +273,19 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_launch_96 {
|
internal static System.Drawing.Bitmap icons8_keyboard_32__1_ {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-launch-96", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-keyboard-32 (1)", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap icons8_laptop_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("icons8-laptop-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -303,9 +303,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_leaf_96 {
|
internal static System.Drawing.Bitmap icons8_log_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-leaf-96", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-log-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -313,9 +313,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_matrix_desktop_48 {
|
internal static System.Drawing.Bitmap icons8_matrix_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-matrix-desktop-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-matrix-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,39 +343,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_organic_food_96 {
|
internal static System.Drawing.Bitmap icons8_processor_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-organic-food-96", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8_processor_32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_organic_food_961 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-organic-food-961", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_processor_96 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-processor-96", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_project_management_48 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-project-management-48", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -410,6 +380,16 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap icons8_rocket_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("icons8_rocket_32", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -430,6 +410,16 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap icons8_settings_32 {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("icons8-settings-32", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -443,9 +433,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_software_48 {
|
internal static System.Drawing.Bitmap icons8_software_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-software-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8_software_32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -463,39 +453,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_spa_flower_96 {
|
internal static System.Drawing.Bitmap icons8_temperature_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-spa-flower-96", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8_temperature_32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_speed_48 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-speed-48", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_speed_96 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-speed-96", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_temperature_48 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-temperature-48", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -523,9 +483,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_video_card_48 {
|
internal static System.Drawing.Bitmap icons8_video_card_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-video-card-48", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8-video-card-32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -533,19 +493,9 @@ namespace GHelper.Properties {
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static System.Drawing.Bitmap icons8_voltage_60 {
|
internal static System.Drawing.Bitmap icons8_voltage_32 {
|
||||||
get {
|
get {
|
||||||
object obj = ResourceManager.GetObject("icons8-voltage-60", resourceCulture);
|
object obj = ResourceManager.GetObject("icons8_voltage_32", resourceCulture);
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
|
||||||
/// </summary>
|
|
||||||
internal static System.Drawing.Bitmap icons8_xbox_controller_96 {
|
|
||||||
get {
|
|
||||||
object obj = ResourceManager.GetObject("icons8-xbox-controller-96", resourceCulture);
|
|
||||||
return ((System.Drawing.Bitmap)(obj));
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,24 +118,18 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="icons8-gauge-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-gauge-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="brightness_up" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="brightness_up" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\brightness-up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\brightness-up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-software-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="backlight_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-software-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\backlight-down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="icons8-leaf-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-leaf-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-launch-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-launch-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_mute_unmute_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_mute_unmute_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-mute-unmute-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-mute-unmute-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-organic-food-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-organic-food-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-fiat-500-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-fiat-500-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-fiat-500-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-fiat-500-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,17 +139,14 @@
|
|||||||
<data name="icons8-project-management-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-project-management-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-project-management-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-project-management-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-bicycle-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-charging-battery-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-bicycle-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-charging-battery-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_touchpad_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_touchpad_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-touchpad-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-touchpad-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-fan-head-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-help-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-fan-head-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-help-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="icons8-processor-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-processor-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_add_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_add_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-add-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-add-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
@@ -163,11 +154,11 @@
|
|||||||
<data name="icons8-game-controller-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-game-controller-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-game-controller-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-game-controller-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-spa-flower-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-matrix-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-spa-flower-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-matrix-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_edit_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-refresh-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-edit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-refresh-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_share_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_share_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-share-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-share-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
@@ -178,38 +169,20 @@
|
|||||||
<data name="icons8_charged_battery_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_charged_battery_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-charged-battery-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-charged-battery-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-voltage-60" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-bicycle-48 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-voltage-60.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-bicycle-48 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="backlight_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\backlight-down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-keyboard-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-keyboard-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="brightness_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="brightness_down" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\brightness-down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\brightness-down.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-fan-speed-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-fan-speed-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-help-64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-help-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8_charging_battery_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_charging_battery_96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-charging-battery-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-charging-battery-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="eco" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="eco" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\eco.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\eco.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-laptop-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_edit_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-laptop-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-edit-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="icons8-video-card-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-video-card-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-charging-battery-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-charging-battery-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="backlight_up" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="backlight_up" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\backlight-up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\backlight-up.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
@@ -220,32 +193,23 @@
|
|||||||
<data name="icons8-save-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-save-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-save-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-save-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="icons8-log-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-log-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="icons8_function" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_function" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-function-mac-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-function-mac-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-balance-symbol-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-keyboard-32 (1)" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-balance-symbol-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-keyboard-32 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-fan-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-fan-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-fan-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-fan-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-matrix-desktop-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-matrix-desktop-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8_remove_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_remove_64" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-remove-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-remove-64.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-speed-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8_video_48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-speed-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-video-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
|
||||||
<data name="icons8-xbox-controller-96" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-xbox-controller-96.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-organic-food-961" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-organic-food-961.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
|
||||||
<data name="icons8-project-management-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
|
||||||
<value>..\Resources\icons8-project-management-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-leaf-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-leaf-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-leaf-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-leaf-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
@@ -256,19 +220,40 @@
|
|||||||
<data name="icons8-rocket-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-rocket-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-rocket-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-rocket-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-boost-30" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="backlight" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-boost-30.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\backlight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-speed-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-settings-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-speed-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-settings-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8_video_48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-keyboard-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-video-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-keyboard-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-temperature-48" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-automation-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-temperature-48.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-automation-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="icons8-refresh-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="icons8-laptop-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\icons8-refresh-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\icons8-laptop-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8-video-card-32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-video-card-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_fan_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-fan-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_processor_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-processor-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_rocket_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-rocket-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_software_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-software-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_temperature_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-temperature-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="icons8_voltage_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>..\Resources\icons8-voltage-32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
30
app/Properties/Strings.Designer.cs
generated
@@ -150,6 +150,15 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Apply.
|
||||||
|
/// </summary>
|
||||||
|
internal static string Apply {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Apply", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Apply Custom Fan Curve.
|
/// Looks up a localized string similar to Apply Custom Fan Curve.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -258,6 +267,15 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Auto Apply.
|
||||||
|
/// </summary>
|
||||||
|
internal static string AutoApply {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("AutoApply", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Auto.
|
/// Looks up a localized string similar to Auto.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -295,7 +313,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Backlight timeout when plugged (0 - always on).
|
/// Looks up a localized string similar to Backlight timeout when plugged in (0 - always on).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string BacklightTimeoutPlugged {
|
internal static string BacklightTimeoutPlugged {
|
||||||
get {
|
get {
|
||||||
@@ -439,7 +457,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Disables dGPU for battery savings.
|
/// Looks up a localized string similar to Disables dGPU to save battery.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string EcoGPUTooltip {
|
internal static string EcoGPUTooltip {
|
||||||
get {
|
get {
|
||||||
@@ -457,7 +475,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Disabling the dGPU by going to Eco mode while Display Mode in NVIDIA Control Panel is not set to Optimus might cause problems with brightness controls until after the next reboot.
|
/// Looks up a localized string similar to Disabling the dGPU by going into Eco mode while Display Mode in NVIDIA Control Panel is not set to Optimus might cause problems with brightness controls until after the next reboot.
|
||||||
///
|
///
|
||||||
///Do you still want to continue?.
|
///Do you still want to continue?.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -990,7 +1008,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Power Limits is experimental feature. Use carefully and on your own risk!.
|
/// Looks up a localized string similar to Power Limits is an experimental feature. Use carefully and at your own risk!.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string PPTExperimental {
|
internal static string PPTExperimental {
|
||||||
get {
|
get {
|
||||||
@@ -1017,7 +1035,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Something is using dGPU and preventing Eco mode. Restart dGPU in device manager? * Please proceed on your own risk..
|
/// Looks up a localized string similar to Something is using dGPU and preventing Eco mode. Restart dGPU in device manager? * Please proceed at your own risk..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string RestartGPU {
|
internal static string RestartGPU {
|
||||||
get {
|
get {
|
||||||
@@ -1224,7 +1242,7 @@ namespace GHelper.Properties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Undervolting is experimental and risky feature. If applied values are too low for your hardware, it can become unstable, shut down or cause data corruption. If you want to try - start from small values first, click Apply and test what works for you..
|
/// Looks up a localized string similar to Undervolting is an experimental and risky feature. If applied values are too low for your hardware, it can become unstable, shut down or cause data corruption. If you want to try - start from small values first, click Apply and test what works for you..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string UndervoltingRisky {
|
internal static string UndervoltingRisky {
|
||||||
get {
|
get {
|
||||||
|
|||||||
@@ -118,294 +118,413 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="ACPIError" xml:space="preserve">
|
<data name="ACPIError" xml:space="preserve">
|
||||||
<value>Can't connect to ASUS ACPI. Application can't function without it. Try to install Asus System Control Interface</value>
|
<value>Impossibile connettersi ad ASUS ACPI. Senza, l'applicazione non può funzionare. Prova ad installare Asus System Control Interface</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AlertDGPU" xml:space="preserve">
|
<data name="AlertDGPU" xml:space="preserve">
|
||||||
<value>Looks like GPU is in heavy use, disable it?</value>
|
<value>Uso intensivo della GPU, disabilitare?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AlertDGPUTitle" xml:space="preserve">
|
<data name="AlertDGPUTitle" xml:space="preserve">
|
||||||
<value>Eco Mode</value>
|
<value>Modalità Eco</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AlertUltimateOff" xml:space="preserve">
|
<data name="AlertUltimateOff" xml:space="preserve">
|
||||||
<value>Switching off Ultimate Mode requires restart</value>
|
<value>Per disattivare la modalità Estremo è necessario riavviare</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AlertUltimateOn" xml:space="preserve">
|
<data name="AlertUltimateOn" xml:space="preserve">
|
||||||
<value>Ultimate Mode requires restart</value>
|
<value>Per attivare la modalità Estremo è necessario riavviare</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AlertUltimateTitle" xml:space="preserve">
|
<data name="AlertUltimateTitle" xml:space="preserve">
|
||||||
<value>Reboot now?</value>
|
<value>Riavviare ora?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AnimationSpeed" xml:space="preserve">
|
<data name="AnimationSpeed" xml:space="preserve">
|
||||||
<value>Animation Speed</value>
|
<value>Velocità animazione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AnimeMatrix" xml:space="preserve">
|
<data name="AnimeMatrix" xml:space="preserve">
|
||||||
<value>Anime Matrix</value>
|
<value>Anime Matrix</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AppAlreadyRunning" xml:space="preserve">
|
<data name="AppAlreadyRunning" xml:space="preserve">
|
||||||
<value>App already running</value>
|
<value>App già in esecuzione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AppAlreadyRunningText" xml:space="preserve">
|
<data name="AppAlreadyRunningText" xml:space="preserve">
|
||||||
<value>G-Helper is already running. Check system tray for an icon.</value>
|
<value>G-Helper è già in esecuzione. Controlla il system tray per una icona.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApplyFanCurve" xml:space="preserve">
|
<data name="ApplyFanCurve" xml:space="preserve">
|
||||||
<value>Apply Custom Fan Curve</value>
|
<value>Applica una Curva Ventola</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApplyPowerLimits" xml:space="preserve">
|
<data name="ApplyPowerLimits" xml:space="preserve">
|
||||||
<value>Apply Power Limits</value>
|
<value>Applica limiti di alimentazione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ApplyWindowsPowerPlan" xml:space="preserve">
|
<data name="ApplyWindowsPowerPlan" xml:space="preserve">
|
||||||
<value>Auto Adjust Windows Power Mode</value>
|
<value>Regolazione automatica del Risparmio Energetico</value>
|
||||||
|
</data>
|
||||||
|
<data name="AsusServicesRunning" xml:space="preserve">
|
||||||
|
<value>Servizi Asus in Esecuzione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraBreathe" xml:space="preserve">
|
<data name="AuraBreathe" xml:space="preserve">
|
||||||
<value>Breathe</value>
|
<value>Respiro</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraColorCycle" xml:space="preserve">
|
<data name="AuraColorCycle" xml:space="preserve">
|
||||||
<value>Color Cycle</value>
|
<value>Ciclo Colori</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraFast" xml:space="preserve">
|
<data name="AuraFast" xml:space="preserve">
|
||||||
<value>Fast</value>
|
<value>Veloce</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraNormal" xml:space="preserve">
|
<data name="AuraNormal" xml:space="preserve">
|
||||||
<value>Normal</value>
|
<value>Normale</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraRainbow" xml:space="preserve">
|
<data name="AuraRainbow" xml:space="preserve">
|
||||||
<value>Rainbow</value>
|
<value>Onda Arcobaleno</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraSlow" xml:space="preserve">
|
<data name="AuraSlow" xml:space="preserve">
|
||||||
<value>Slow</value>
|
<value>Lenta</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraStatic" xml:space="preserve">
|
<data name="AuraStatic" xml:space="preserve">
|
||||||
<value>Static</value>
|
<value>Statico</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AuraStrobe" xml:space="preserve">
|
<data name="AuraStrobe" xml:space="preserve">
|
||||||
<value>Strobe</value>
|
<value>Strobo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoMode" xml:space="preserve">
|
<data name="AutoMode" xml:space="preserve">
|
||||||
<value>Auto</value>
|
<value>Auto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="AutoRefreshTooltip" xml:space="preserve">
|
<data name="AutoRefreshTooltip" xml:space="preserve">
|
||||||
<value>Sets 60Hz to save battery, and back when plugged</value>
|
<value>Imposta i 60Hz per risparmiare batteria, quando in carica si disattiva</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Awake" xml:space="preserve">
|
<data name="Awake" xml:space="preserve">
|
||||||
<value>Awake</value>
|
<value>In uso</value>
|
||||||
|
</data>
|
||||||
|
<data name="BacklightTimeout" xml:space="preserve">
|
||||||
|
<value>Timeout retroilluminazione quando non in carica</value>
|
||||||
|
</data>
|
||||||
|
<data name="BacklightTimeoutPlugged" xml:space="preserve">
|
||||||
|
<value>Timeout retroilluminazione quando in carica (0 - accesa)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Balanced" xml:space="preserve">
|
<data name="Balanced" xml:space="preserve">
|
||||||
<value>Balanced</value>
|
<value>Bilanciato</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BatteryChargeLimit" xml:space="preserve">
|
<data name="BatteryChargeLimit" xml:space="preserve">
|
||||||
<value>Battery Charge Limit</value>
|
<value>Limite Ricarica Batteria</value>
|
||||||
|
</data>
|
||||||
|
<data name="BiosAndDriverUpdates" xml:space="preserve">
|
||||||
|
<value>Aggiornamenti Driver e BIOS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Boot" xml:space="preserve">
|
<data name="Boot" xml:space="preserve">
|
||||||
<value>Boot</value>
|
<value>Avvio</value>
|
||||||
|
</data>
|
||||||
|
<data name="Brightness" xml:space="preserve">
|
||||||
|
<value>Luminosità</value>
|
||||||
|
</data>
|
||||||
|
<data name="BrightnessDown" xml:space="preserve">
|
||||||
|
<value>Riduci luminosità</value>
|
||||||
|
</data>
|
||||||
|
<data name="BrightnessUp" xml:space="preserve">
|
||||||
|
<value>Aumenta luminosità</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Color" xml:space="preserve">
|
<data name="Color" xml:space="preserve">
|
||||||
<value>Color</value>
|
<value>Colore</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="CPUBoost" xml:space="preserve">
|
<data name="CPUBoost" xml:space="preserve">
|
||||||
<value>CPU Boost</value>
|
<value>CPU Boost</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Custom" xml:space="preserve">
|
<data name="Custom" xml:space="preserve">
|
||||||
<value>Custom</value>
|
<value>Personalizzato</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Default" xml:space="preserve">
|
<data name="Default" xml:space="preserve">
|
||||||
<value>Default</value>
|
<value>Default</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DisableOverdrive" xml:space="preserve">
|
<data name="DisableOverdrive" xml:space="preserve">
|
||||||
<value>Disable screen overdrive</value>
|
<value>Disabilita l'overdrive dello schermo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Discharging" xml:space="preserve">
|
<data name="Discharging" xml:space="preserve">
|
||||||
<value>Discharging</value>
|
<value>Non in carica</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DownloadUpdate" xml:space="preserve">
|
<data name="DownloadUpdate" xml:space="preserve">
|
||||||
<value>Download Update</value>
|
<value>Scarica aggiornamento</value>
|
||||||
|
</data>
|
||||||
|
<data name="DriverAndSoftware" xml:space="preserve">
|
||||||
|
<value>Driver e Software</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EcoGPUTooltip" xml:space="preserve">
|
<data name="EcoGPUTooltip" xml:space="preserve">
|
||||||
<value>Disables dGPU for battery savings</value>
|
<value>Disabilità dGPU per il risparmio energetico</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EcoMode" xml:space="preserve">
|
<data name="EcoMode" xml:space="preserve">
|
||||||
<value>Eco</value>
|
<value>Eco</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="EnableOptimusText" xml:space="preserve">
|
||||||
|
<value>Disabilitare la dGPU impostando la modalità Eco mentre non è attivata la modalità schermo ad Optimus nel Panello di Controllo NVIDIA non è impostata Optimus può causare problemi ai controlli luminosità, fino al prossimo riavvio.
|
||||||
|
|
||||||
|
Sei sicuro di voler continuare?</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnableOptimusTitle" xml:space="preserve">
|
||||||
|
<value>Modalità schermo NVIDIA non impostata ad Optimus</value>
|
||||||
|
</data>
|
||||||
<data name="Extra" xml:space="preserve">
|
<data name="Extra" xml:space="preserve">
|
||||||
<value>Extra</value>
|
<value>Extra</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExtraSettings" xml:space="preserve">
|
<data name="ExtraSettings" xml:space="preserve">
|
||||||
<value>Extra Settings</value>
|
<value>Impostazioni aggiuntive</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FactoryDefaults" xml:space="preserve">
|
<data name="FactoryDefaults" xml:space="preserve">
|
||||||
<value>Factory Defaults</value>
|
<value>Predefinite</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FanCurves" xml:space="preserve">
|
<data name="FanCurves" xml:space="preserve">
|
||||||
<value>Fan Curves</value>
|
<value>Curve Ventola</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FanProfileCPU" xml:space="preserve">
|
<data name="FanProfileCPU" xml:space="preserve">
|
||||||
<value>CPU Fan Profile</value>
|
<value>Profilo Ventola CPU</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FanProfileGPU" xml:space="preserve">
|
<data name="FanProfileGPU" xml:space="preserve">
|
||||||
<value>GPU Fan Profile</value>
|
<value>Profilo Ventola GPU</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FanProfileMid" xml:space="preserve">
|
<data name="FanProfileMid" xml:space="preserve">
|
||||||
<value>Mid Fan Profile</value>
|
<value>Profilo Ventola Centrale</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FanProfiles" xml:space="preserve">
|
<data name="FanProfiles" xml:space="preserve">
|
||||||
<value>Fan Profiles</value>
|
<value>Profili Ventola</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FansAndPower" xml:space="preserve">
|
<data name="FansAndPower" xml:space="preserve">
|
||||||
<value>Fans and Power</value>
|
<value>Alimentazione e Ventole</value>
|
||||||
|
</data>
|
||||||
|
<data name="FanSpeed" xml:space="preserve">
|
||||||
|
<value>Ventola: </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FansPower" xml:space="preserve">
|
<data name="FansPower" xml:space="preserve">
|
||||||
<value>Fans + Power</value>
|
<value>Ventole + Alimentazione</value>
|
||||||
|
</data>
|
||||||
|
<data name="FnLock" xml:space="preserve">
|
||||||
|
<value>Utilizza i tasti Fn+F direttamente senza Fn</value>
|
||||||
|
</data>
|
||||||
|
<data name="GPUBoost" xml:space="preserve">
|
||||||
|
<value>Boost Dinamico</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GPUChanging" xml:space="preserve">
|
<data name="GPUChanging" xml:space="preserve">
|
||||||
<value>Changing</value>
|
<value>Cambio</value>
|
||||||
|
</data>
|
||||||
|
<data name="GPUCoreClockOffset" xml:space="preserve">
|
||||||
|
<value>Offset Clock Core</value>
|
||||||
|
</data>
|
||||||
|
<data name="GPUMemoryClockOffset" xml:space="preserve">
|
||||||
|
<value>Offset Clock Memoria</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GPUMode" xml:space="preserve">
|
<data name="GPUMode" xml:space="preserve">
|
||||||
<value>GPU Mode</value>
|
<value>Modalità GPU</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GPUModeEco" xml:space="preserve">
|
<data name="GPUModeEco" xml:space="preserve">
|
||||||
<value>iGPU only</value>
|
<value>Solo iGPU</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GPUModeStandard" xml:space="preserve">
|
<data name="GPUModeStandard" xml:space="preserve">
|
||||||
<value>iGPU + dGPU</value>
|
<value>iGPU + dGPU</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GPUModeUltimate" xml:space="preserve">
|
<data name="GPUModeUltimate" xml:space="preserve">
|
||||||
<value>dGPU exclusive</value>
|
<value>Esclusivamente dGPU</value>
|
||||||
|
</data>
|
||||||
|
<data name="GPUSettings" xml:space="preserve">
|
||||||
|
<value>Impostazioni GPU</value>
|
||||||
|
</data>
|
||||||
|
<data name="GPUTempTarget" xml:space="preserve">
|
||||||
|
<value>Temperatura Target</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="KeyBindings" xml:space="preserve">
|
<data name="KeyBindings" xml:space="preserve">
|
||||||
<value>Key Bindings</value>
|
<value>Associazione tasti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Keyboard" xml:space="preserve">
|
<data name="Keyboard" xml:space="preserve">
|
||||||
<value>Keyboard</value>
|
<value>Tastiera</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="KeyboardAuto" xml:space="preserve">
|
<data name="KeyboardAuto" xml:space="preserve">
|
||||||
<value>Lower backlight brightness on battery and back when plugged</value>
|
<value>Retroilluminazione tastiera ridotta quando non in carica</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="KeyboardBacklight" xml:space="preserve">
|
<data name="KillGpuApps" xml:space="preserve">
|
||||||
<value>Keyboard Backlight</value>
|
<value>Arrestta tutte le app che usano la GPU passando ad Eco</value>
|
||||||
|
</data>
|
||||||
|
<data name="LaptopBacklight" xml:space="preserve">
|
||||||
|
<value>Retroilluminazione Laptop</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LaptopKeyboard" xml:space="preserve">
|
<data name="LaptopKeyboard" xml:space="preserve">
|
||||||
<value>Laptop Keyboard</value>
|
<value>Tastiera Laptop</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LaptopScreen" xml:space="preserve">
|
<data name="LaptopScreen" xml:space="preserve">
|
||||||
<value>Laptop Screen</value>
|
<value>Schermo Laptop</value>
|
||||||
|
</data>
|
||||||
|
<data name="Lid" xml:space="preserve">
|
||||||
|
<value>Lid</value>
|
||||||
|
</data>
|
||||||
|
<data name="Lightbar" xml:space="preserve">
|
||||||
|
<value>Barra Luce</value>
|
||||||
|
</data>
|
||||||
|
<data name="Logo" xml:space="preserve">
|
||||||
|
<value>Logo</value>
|
||||||
|
</data>
|
||||||
|
<data name="MatrixAudio" xml:space="preserve">
|
||||||
|
<value>Visualizzatore Audio</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixBanner" xml:space="preserve">
|
<data name="MatrixBanner" xml:space="preserve">
|
||||||
<value>Binary Banner</value>
|
<value>Banner Binario</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixBright" xml:space="preserve">
|
<data name="MatrixBright" xml:space="preserve">
|
||||||
<value>Bright</value>
|
<value>Luminoso</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixClock" xml:space="preserve">
|
<data name="MatrixClock" xml:space="preserve">
|
||||||
<value>Clock</value>
|
<value>Orologio</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixDim" xml:space="preserve">
|
<data name="MatrixDim" xml:space="preserve">
|
||||||
<value>Dim</value>
|
<value>Fioco</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixLogo" xml:space="preserve">
|
<data name="MatrixLogo" xml:space="preserve">
|
||||||
<value>Rog Logo</value>
|
<value>Logo ROG</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixMedium" xml:space="preserve">
|
<data name="MatrixMedium" xml:space="preserve">
|
||||||
<value>Medium</value>
|
<value>Medio</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixOff" xml:space="preserve">
|
<data name="MatrixOff" xml:space="preserve">
|
||||||
<value>Off</value>
|
<value>Spento</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MatrixPicture" xml:space="preserve">
|
<data name="MatrixPicture" xml:space="preserve">
|
||||||
<value>Picture</value>
|
<value>Immagine</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MaxRefreshTooltip" xml:space="preserve">
|
<data name="MaxRefreshTooltip" xml:space="preserve">
|
||||||
<value>Max refresh rate for lower latency</value>
|
<value>Massimo refresh rate per latenza minore</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="MinRefreshTooltip" xml:space="preserve">
|
<data name="MinRefreshTooltip" xml:space="preserve">
|
||||||
<value>60Hz refresh rate to save battery</value>
|
<value>60Hz refresh rate per rispamiare batteria</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Multizone" xml:space="preserve">
|
<data name="Multizone" xml:space="preserve">
|
||||||
<value>Multizone</value>
|
<value>Multizona</value>
|
||||||
|
</data>
|
||||||
|
<data name="MuteMic" xml:space="preserve">
|
||||||
|
<value>Muta microfono</value>
|
||||||
|
</data>
|
||||||
|
<data name="NewUpdates" xml:space="preserve">
|
||||||
|
<value>Nuovi aggiornamenti</value>
|
||||||
|
</data>
|
||||||
|
<data name="NoNewUpdates" xml:space="preserve">
|
||||||
|
<value>Non ci sono nuovi aggiornamenti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OpenGHelper" xml:space="preserve">
|
<data name="OpenGHelper" xml:space="preserve">
|
||||||
<value>Open G-Helper window</value>
|
<value>Apri G-Helper</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Optimized" xml:space="preserve">
|
<data name="Optimized" xml:space="preserve">
|
||||||
<value>Optimized</value>
|
<value>Ottimizzato</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="OptimizedGPUTooltip" xml:space="preserve">
|
<data name="OptimizedGPUTooltip" xml:space="preserve">
|
||||||
<value>Switch to Eco on battery and to Standard when plugged</value>
|
<value>Passa ad Eco quando non in carica e a Standard quando in carica</value>
|
||||||
|
</data>
|
||||||
|
<data name="OptimizedUSBC" xml:space="preserve">
|
||||||
|
<value>Lascia la GPU disabilitata sulla porta USB-C in modalità Ottimizzata</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Other" xml:space="preserve">
|
<data name="Other" xml:space="preserve">
|
||||||
<value>Other</value>
|
<value>Altro</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Overdrive" xml:space="preserve">
|
<data name="Overdrive" xml:space="preserve">
|
||||||
<value>Overdrive</value>
|
<value>Overdrive</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PerformanceMode" xml:space="preserve">
|
<data name="PerformanceMode" xml:space="preserve">
|
||||||
<value>Performance Mode</value>
|
<value>Modalità</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PictureGif" xml:space="preserve">
|
<data name="PictureGif" xml:space="preserve">
|
||||||
<value>Picture / Gif</value>
|
<value>Immagine / Gif</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PlayPause" xml:space="preserve">
|
<data name="PlayPause" xml:space="preserve">
|
||||||
<value>Play / Pause</value>
|
<value>Riproduci / Pausa</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PowerLimits" xml:space="preserve">
|
<data name="PowerLimits" xml:space="preserve">
|
||||||
<value>Power Limits</value>
|
<value>Limiti d'Alimentazione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PPTExperimental" xml:space="preserve">
|
<data name="PPTExperimental" xml:space="preserve">
|
||||||
<value>Power Limits is experimental feature. Use carefully and on your own risk!</value>
|
<value>Limiti d'Alimentazione sono una funzione sperimentale. Usare con cautela e a proprio rischio!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PrintScreen" xml:space="preserve">
|
<data name="PrintScreen" xml:space="preserve">
|
||||||
<value>PrintScreen</value>
|
<value>PrintScreen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Quit" xml:space="preserve">
|
<data name="Quit" xml:space="preserve">
|
||||||
<value>Quit</value>
|
<value>Esci</value>
|
||||||
|
</data>
|
||||||
|
<data name="RestartGPU" xml:space="preserve">
|
||||||
|
<value>Qualcosa sta utilizzando la dGPU e prevenendo la modalità Eco. Riavviare la dGPU da Gestione dispositivi? * Procedere a proprio rischio e pericolo.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RPM" xml:space="preserve">
|
<data name="RPM" xml:space="preserve">
|
||||||
<value>RPM</value>
|
<value>RPM</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RunOnStartup" xml:space="preserve">
|
<data name="RunOnStartup" xml:space="preserve">
|
||||||
<value>Run on Startup</value>
|
<value>Esegui all'Avvio</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Shutdown" xml:space="preserve">
|
<data name="Shutdown" xml:space="preserve">
|
||||||
<value>Shutdown</value>
|
<value>Spegnimento</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Silent" xml:space="preserve">
|
<data name="Silent" xml:space="preserve">
|
||||||
<value>Silent</value>
|
<value>Silenzioso</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Sleep" xml:space="preserve">
|
<data name="Sleep" xml:space="preserve">
|
||||||
<value>Sleep</value>
|
<value>Sospensione</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="StandardGPUTooltip" xml:space="preserve">
|
<data name="StandardGPUTooltip" xml:space="preserve">
|
||||||
<value>Enables dGPU for standard use</value>
|
<value>Abilita dGPU per uso standard</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="StandardMode" xml:space="preserve">
|
<data name="StandardMode" xml:space="preserve">
|
||||||
<value>Standard</value>
|
<value>Standard</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Start" xml:space="preserve">
|
||||||
|
<value>Avvia</value>
|
||||||
|
</data>
|
||||||
|
<data name="StartingServices" xml:space="preserve">
|
||||||
|
<value>Servizi in avvio</value>
|
||||||
|
</data>
|
||||||
<data name="StartupError" xml:space="preserve">
|
<data name="StartupError" xml:space="preserve">
|
||||||
<value>Startup Error</value>
|
<value>Errore Avvio</value>
|
||||||
|
</data>
|
||||||
|
<data name="Stop" xml:space="preserve">
|
||||||
|
<value>Arresta</value>
|
||||||
|
</data>
|
||||||
|
<data name="StopGPUApps" xml:space="preserve">
|
||||||
|
<value>Arresta applicazioni GPU</value>
|
||||||
|
</data>
|
||||||
|
<data name="StoppingServices" xml:space="preserve">
|
||||||
|
<value>Servizi in arresto</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ToggleAura" xml:space="preserve">
|
<data name="ToggleAura" xml:space="preserve">
|
||||||
<value>Toggle Aura</value>
|
<value>Alterna Aura</value>
|
||||||
|
</data>
|
||||||
|
<data name="ToggleFnLock" xml:space="preserve">
|
||||||
|
<value>Alterna Blocco-Fn</value>
|
||||||
|
</data>
|
||||||
|
<data name="ToggleMiniled" xml:space="preserve">
|
||||||
|
<value>Alterna Miniled (se supportato)</value>
|
||||||
|
</data>
|
||||||
|
<data name="ToggleScreen" xml:space="preserve">
|
||||||
|
<value>Alterna Schermo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Turbo" xml:space="preserve">
|
<data name="Turbo" xml:space="preserve">
|
||||||
<value>Turbo</value>
|
<value>Turbo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TurnedOff" xml:space="preserve">
|
<data name="TurnedOff" xml:space="preserve">
|
||||||
<value>Turned off</value>
|
<value>Spento</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="TurnOffOnBattery" xml:space="preserve">
|
<data name="TurnOffOnBattery" xml:space="preserve">
|
||||||
<value>Turn off on battery</value>
|
<value>Spegni quando non in carica</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UltimateGPUTooltip" xml:space="preserve">
|
<data name="UltimateGPUTooltip" xml:space="preserve">
|
||||||
<value>Routes laptop screen to dGPU, maximizing FPS</value>
|
<value>Dedica la dGPU allo schermo del Laptop, massimizzando gli FPS</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UltimateMode" xml:space="preserve">
|
<data name="UltimateMode" xml:space="preserve">
|
||||||
<value>Ultimate</value>
|
<value>Estremo</value>
|
||||||
|
</data>
|
||||||
|
<data name="UndervoltingRisky" xml:space="preserve">
|
||||||
|
<value>Undervoltare è una funzione sperimentale e rischiosa. Se i valori applicati sono troppo bassi per il tuo dispositivo, può diventare instabile, spegnersi o causare corruzioni. Se vuoi provare - inizia prima con valori ridotti, clicca Applica e verifica se funziona tutto correttamente.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Updates" xml:space="preserve">
|
||||||
|
<value>Updates</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VersionLabel" xml:space="preserve">
|
<data name="VersionLabel" xml:space="preserve">
|
||||||
<value>Version</value>
|
<value>Versione</value>
|
||||||
|
</data>
|
||||||
|
<data name="VolumeDown" xml:space="preserve">
|
||||||
|
<value>Decrem. Volume</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="VolumeMute" xml:space="preserve">
|
<data name="VolumeMute" xml:space="preserve">
|
||||||
<value>Volume Mute</value>
|
<value>Muta Volume</value>
|
||||||
|
</data>
|
||||||
|
<data name="VolumeUp" xml:space="preserve">
|
||||||
|
<value>Increm. Volume</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="WindowTop" xml:space="preserve">
|
<data name="WindowTop" xml:space="preserve">
|
||||||
<value>Keep app window always on top</value>
|
<value>Tiene l'applicazione sempre in primo piano</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -147,6 +147,9 @@
|
|||||||
<data name="AppAlreadyRunningText" xml:space="preserve">
|
<data name="AppAlreadyRunningText" xml:space="preserve">
|
||||||
<value>G-Helper is already running. Check system tray for an icon.</value>
|
<value>G-Helper is already running. Check system tray for an icon.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Apply" xml:space="preserve">
|
||||||
|
<value>Apply</value>
|
||||||
|
</data>
|
||||||
<data name="ApplyFanCurve" xml:space="preserve">
|
<data name="ApplyFanCurve" xml:space="preserve">
|
||||||
<value>Apply Custom Fan Curve</value>
|
<value>Apply Custom Fan Curve</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -183,6 +186,9 @@
|
|||||||
<data name="AuraStrobe" xml:space="preserve">
|
<data name="AuraStrobe" xml:space="preserve">
|
||||||
<value>Strobe</value>
|
<value>Strobe</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="AutoApply" xml:space="preserve">
|
||||||
|
<value>Auto Apply</value>
|
||||||
|
</data>
|
||||||
<data name="AutoMode" xml:space="preserve">
|
<data name="AutoMode" xml:space="preserve">
|
||||||
<value>Auto</value>
|
<value>Auto</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -196,7 +202,7 @@
|
|||||||
<value>Backlight timeout on battery</value>
|
<value>Backlight timeout on battery</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BacklightTimeoutPlugged" xml:space="preserve">
|
<data name="BacklightTimeoutPlugged" xml:space="preserve">
|
||||||
<value>Backlight timeout when plugged (0 - always on)</value>
|
<value>Backlight timeout when plugged in (0 - always on)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Balanced" xml:space="preserve">
|
<data name="Balanced" xml:space="preserve">
|
||||||
<value>Balanced</value>
|
<value>Balanced</value>
|
||||||
@@ -244,13 +250,13 @@
|
|||||||
<value>Drivers and Software</value>
|
<value>Drivers and Software</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EcoGPUTooltip" xml:space="preserve">
|
<data name="EcoGPUTooltip" xml:space="preserve">
|
||||||
<value>Disables dGPU for battery savings</value>
|
<value>Disables dGPU to save battery</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EcoMode" xml:space="preserve">
|
<data name="EcoMode" xml:space="preserve">
|
||||||
<value>Eco</value>
|
<value>Eco</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnableOptimusText" xml:space="preserve">
|
<data name="EnableOptimusText" xml:space="preserve">
|
||||||
<value>Disabling the dGPU by going to Eco mode while Display Mode in NVIDIA Control Panel is not set to Optimus might cause problems with brightness controls until after the next reboot.
|
<value>Disabling the dGPU by going into Eco mode while Display Mode in NVIDIA Control Panel is not set to Optimus might cause problems with brightness controls until after the next reboot.
|
||||||
|
|
||||||
Do you still want to continue?</value>
|
Do you still want to continue?</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -429,7 +435,7 @@ Do you still want to continue?</value>
|
|||||||
<value>Power Limits</value>
|
<value>Power Limits</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PPTExperimental" xml:space="preserve">
|
<data name="PPTExperimental" xml:space="preserve">
|
||||||
<value>Power Limits is experimental feature. Use carefully and on your own risk!</value>
|
<value>Power Limits is an experimental feature. Use carefully and at your own risk!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PrintScreen" xml:space="preserve">
|
<data name="PrintScreen" xml:space="preserve">
|
||||||
<value>PrintScreen</value>
|
<value>PrintScreen</value>
|
||||||
@@ -438,7 +444,7 @@ Do you still want to continue?</value>
|
|||||||
<value>Quit</value>
|
<value>Quit</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RestartGPU" xml:space="preserve">
|
<data name="RestartGPU" xml:space="preserve">
|
||||||
<value>Something is using dGPU and preventing Eco mode. Restart dGPU in device manager? * Please proceed on your own risk.</value>
|
<value>Something is using dGPU and preventing Eco mode. Restart dGPU in device manager? * Please proceed at your own risk.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RPM" xml:space="preserve">
|
<data name="RPM" xml:space="preserve">
|
||||||
<value>RPM</value>
|
<value>RPM</value>
|
||||||
@@ -507,7 +513,7 @@ Do you still want to continue?</value>
|
|||||||
<value>Ultimate</value>
|
<value>Ultimate</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="UndervoltingRisky" xml:space="preserve">
|
<data name="UndervoltingRisky" xml:space="preserve">
|
||||||
<value>Undervolting is experimental and risky feature. If applied values are too low for your hardware, it can become unstable, shut down or cause data corruption. If you want to try - start from small values first, click Apply and test what works for you.</value>
|
<value>Undervolting is an experimental and risky feature. If applied values are too low for your hardware, it can become unstable, shut down or cause data corruption. If you want to try - start from small values first, click Apply and test what works for you.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Updates" xml:space="preserve">
|
<data name="Updates" xml:space="preserve">
|
||||||
<value>Updates</value>
|
<value>Updates</value>
|
||||||
|
|||||||
@@ -147,6 +147,9 @@
|
|||||||
<data name="AppAlreadyRunningText" xml:space="preserve">
|
<data name="AppAlreadyRunningText" xml:space="preserve">
|
||||||
<value>G-Helper вже запущено. Перевірте значок у системному лотку.</value>
|
<value>G-Helper вже запущено. Перевірте значок у системному лотку.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Apply" xml:space="preserve">
|
||||||
|
<value>Застосувати</value>
|
||||||
|
</data>
|
||||||
<data name="ApplyFanCurve" xml:space="preserve">
|
<data name="ApplyFanCurve" xml:space="preserve">
|
||||||
<value>Застосувати профілі кулерів</value>
|
<value>Застосувати профілі кулерів</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -183,6 +186,9 @@
|
|||||||
<data name="AuraStrobe" xml:space="preserve">
|
<data name="AuraStrobe" xml:space="preserve">
|
||||||
<value>Стробоскоп</value>
|
<value>Стробоскоп</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="AutoApply" xml:space="preserve">
|
||||||
|
<value>Автоматично</value>
|
||||||
|
</data>
|
||||||
<data name="AutoMode" xml:space="preserve">
|
<data name="AutoMode" xml:space="preserve">
|
||||||
<value>Авто</value>
|
<value>Авто</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -459,6 +465,9 @@
|
|||||||
<data name="UltimateMode" xml:space="preserve">
|
<data name="UltimateMode" xml:space="preserve">
|
||||||
<value>Ультімейт</value>
|
<value>Ультімейт</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="UndervoltingRisky" xml:space="preserve">
|
||||||
|
<value>Undervolting є експериментальним. Якщо значення занизькі для вашого CPU, це може спричинити нестабільність, припинити роботу або пошкодити дані. Якщо хочете спробувати - почніть з малих значень, натисніть «Застосувати» та перевірте, чи стабільно все працює.</value>
|
||||||
|
</data>
|
||||||
<data name="Updates" xml:space="preserve">
|
<data name="Updates" xml:space="preserve">
|
||||||
<value>Оновлення</value>
|
<value>Оновлення</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
BIN
app/Resources/backlight.png
Normal file
|
After Width: | Height: | Size: 425 B |
BIN
app/Resources/icons8-automation-32.png
Normal file
|
After Width: | Height: | Size: 518 B |
|
Before Width: | Height: | Size: 710 B |
|
Before Width: | Height: | Size: 426 B |
BIN
app/Resources/icons8-charging-battery-32.png
Normal file
|
After Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 421 B |
|
Before Width: | Height: | Size: 1000 B |
BIN
app/Resources/icons8-fan-32.png
Normal file
|
After Width: | Height: | Size: 625 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 870 B |
BIN
app/Resources/icons8-gauge-32.png
Normal file
|
After Width: | Height: | Size: 636 B |
BIN
app/Resources/icons8-help-32.png
Normal file
|
After Width: | Height: | Size: 662 B |
|
Before Width: | Height: | Size: 1.1 KiB |
BIN
app/Resources/icons8-keyboard-32 (1).png
Normal file
|
After Width: | Height: | Size: 407 B |
BIN
app/Resources/icons8-keyboard-32.png
Normal file
|
After Width: | Height: | Size: 187 B |
|
Before Width: | Height: | Size: 515 B |
BIN
app/Resources/icons8-laptop-32.png
Normal file
|
After Width: | Height: | Size: 230 B |
|
Before Width: | Height: | Size: 260 B |
|
Before Width: | Height: | Size: 648 B |
|
Before Width: | Height: | Size: 910 B |
BIN
app/Resources/icons8-log-32.png
Normal file
|
After Width: | Height: | Size: 227 B |
BIN
app/Resources/icons8-matrix-32.png
Normal file
|
After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 428 B |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
BIN
app/Resources/icons8-processor-32.png
Normal file
|
After Width: | Height: | Size: 385 B |
|
Before Width: | Height: | Size: 710 B |
|
Before Width: | Height: | Size: 1.0 KiB |
BIN
app/Resources/icons8-rocket-32.png
Normal file
|
After Width: | Height: | Size: 503 B |
BIN
app/Resources/icons8-service-32.png
Normal file
|
After Width: | Height: | Size: 497 B |
BIN
app/Resources/icons8-settings-32.png
Normal file
|
After Width: | Height: | Size: 546 B |
BIN
app/Resources/icons8-software-32.png
Normal file
|
After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 645 B |
|
Before Width: | Height: | Size: 954 B |
|
Before Width: | Height: | Size: 885 B |
|
Before Width: | Height: | Size: 1.7 KiB |
BIN
app/Resources/icons8-temperature-32.png
Normal file
|
After Width: | Height: | Size: 491 B |
|
Before Width: | Height: | Size: 645 B |
BIN
app/Resources/icons8-video-card-32.png
Normal file
|
After Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 400 B |
BIN
app/Resources/icons8-voltage-32.png
Normal file
|
After Width: | Height: | Size: 407 B |
|
Before Width: | Height: | Size: 706 B |
|
Before Width: | Height: | Size: 724 B |
|
Before Width: | Height: | Size: 18 KiB |
79
app/Settings.Designer.cs
generated
@@ -30,7 +30,6 @@ namespace GHelper
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
|
|
||||||
panelMatrix = new Panel();
|
panelMatrix = new Panel();
|
||||||
tableLayoutMatrix = new TableLayoutPanel();
|
tableLayoutMatrix = new TableLayoutPanel();
|
||||||
comboMatrix = new RComboBox();
|
comboMatrix = new RComboBox();
|
||||||
@@ -63,6 +62,7 @@ namespace GHelper
|
|||||||
panelGPU = new Panel();
|
panelGPU = new Panel();
|
||||||
labelTipGPU = new Label();
|
labelTipGPU = new Label();
|
||||||
tableGPU = new TableLayoutPanel();
|
tableGPU = new TableLayoutPanel();
|
||||||
|
buttonStopGPU = new RButton();
|
||||||
buttonEco = new RButton();
|
buttonEco = new RButton();
|
||||||
buttonStandard = new RButton();
|
buttonStandard = new RButton();
|
||||||
buttonXGM = new RButton();
|
buttonXGM = new RButton();
|
||||||
@@ -97,7 +97,6 @@ namespace GHelper
|
|||||||
labelVersion = new Label();
|
labelVersion = new Label();
|
||||||
labelModel = new Label();
|
labelModel = new Label();
|
||||||
panelVersion = new Panel();
|
panelVersion = new Panel();
|
||||||
buttonStopGPU = new RButton();
|
|
||||||
panelMatrix.SuspendLayout();
|
panelMatrix.SuspendLayout();
|
||||||
tableLayoutMatrix.SuspendLayout();
|
tableLayoutMatrix.SuspendLayout();
|
||||||
panelMatrixTitle.SuspendLayout();
|
panelMatrixTitle.SuspendLayout();
|
||||||
@@ -226,7 +225,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureMatrix
|
// pictureMatrix
|
||||||
//
|
//
|
||||||
pictureMatrix.BackgroundImage = Properties.Resources.icons8_matrix_desktop_48;
|
pictureMatrix.BackgroundImage = Properties.Resources.icons8_matrix_32;
|
||||||
pictureMatrix.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureMatrix.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureMatrix.Location = new Point(6, 0);
|
pictureMatrix.Location = new Point(6, 0);
|
||||||
pictureMatrix.Margin = new Padding(4);
|
pictureMatrix.Margin = new Padding(4);
|
||||||
@@ -280,6 +279,7 @@ namespace GHelper
|
|||||||
sliderBattery.Min = 40;
|
sliderBattery.Min = 40;
|
||||||
sliderBattery.Name = "sliderBattery";
|
sliderBattery.Name = "sliderBattery";
|
||||||
sliderBattery.Size = new Size(770, 40);
|
sliderBattery.Size = new Size(770, 40);
|
||||||
|
sliderBattery.Step = 5;
|
||||||
sliderBattery.TabIndex = 39;
|
sliderBattery.TabIndex = 39;
|
||||||
sliderBattery.Text = "sliderBattery";
|
sliderBattery.Text = "sliderBattery";
|
||||||
sliderBattery.Value = 80;
|
sliderBattery.Value = 80;
|
||||||
@@ -309,7 +309,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureBattery
|
// pictureBattery
|
||||||
//
|
//
|
||||||
pictureBattery.BackgroundImage = (Image)resources.GetObject("pictureBattery.BackgroundImage");
|
pictureBattery.BackgroundImage = Properties.Resources.icons8_charging_battery_32;
|
||||||
pictureBattery.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureBattery.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureBattery.Location = new Point(4, 1);
|
pictureBattery.Location = new Point(4, 1);
|
||||||
pictureBattery.Margin = new Padding(4);
|
pictureBattery.Margin = new Padding(4);
|
||||||
@@ -526,7 +526,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// picturePerf
|
// picturePerf
|
||||||
//
|
//
|
||||||
picturePerf.BackgroundImage = (Image)resources.GetObject("picturePerf.BackgroundImage");
|
picturePerf.BackgroundImage = Properties.Resources.icons8_gauge_32;
|
||||||
picturePerf.BackgroundImageLayout = ImageLayout.Zoom;
|
picturePerf.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
picturePerf.InitialImage = null;
|
picturePerf.InitialImage = null;
|
||||||
picturePerf.Location = new Point(8, 0);
|
picturePerf.Location = new Point(8, 0);
|
||||||
@@ -609,6 +609,30 @@ namespace GHelper
|
|||||||
tableGPU.Size = new Size(770, 256);
|
tableGPU.Size = new Size(770, 256);
|
||||||
tableGPU.TabIndex = 16;
|
tableGPU.TabIndex = 16;
|
||||||
//
|
//
|
||||||
|
// buttonStopGPU
|
||||||
|
//
|
||||||
|
buttonStopGPU.Activated = false;
|
||||||
|
buttonStopGPU.BackColor = SystemColors.ControlLightLight;
|
||||||
|
buttonStopGPU.BorderColor = Color.Transparent;
|
||||||
|
buttonStopGPU.BorderRadius = 5;
|
||||||
|
buttonStopGPU.CausesValidation = false;
|
||||||
|
buttonStopGPU.Dock = DockStyle.Top;
|
||||||
|
buttonStopGPU.FlatAppearance.BorderSize = 0;
|
||||||
|
buttonStopGPU.FlatStyle = FlatStyle.Flat;
|
||||||
|
buttonStopGPU.ForeColor = SystemColors.ControlText;
|
||||||
|
buttonStopGPU.Image = Properties.Resources.icons8_leaf_48;
|
||||||
|
buttonStopGPU.ImageAlign = ContentAlignment.BottomCenter;
|
||||||
|
buttonStopGPU.Location = new Point(196, 4);
|
||||||
|
buttonStopGPU.Margin = new Padding(4);
|
||||||
|
buttonStopGPU.Name = "buttonStopGPU";
|
||||||
|
buttonStopGPU.Secondary = false;
|
||||||
|
buttonStopGPU.Size = new Size(184, 120);
|
||||||
|
buttonStopGPU.TabIndex = 4;
|
||||||
|
buttonStopGPU.Text = "Stop GPU applications";
|
||||||
|
buttonStopGPU.TextImageRelation = TextImageRelation.ImageAboveText;
|
||||||
|
buttonStopGPU.UseVisualStyleBackColor = false;
|
||||||
|
buttonStopGPU.Visible = false;
|
||||||
|
//
|
||||||
// buttonEco
|
// buttonEco
|
||||||
//
|
//
|
||||||
buttonEco.Activated = false;
|
buttonEco.Activated = false;
|
||||||
@@ -644,7 +668,7 @@ namespace GHelper
|
|||||||
buttonStandard.ForeColor = SystemColors.ControlText;
|
buttonStandard.ForeColor = SystemColors.ControlText;
|
||||||
buttonStandard.Image = Properties.Resources.icons8_spa_flower_48;
|
buttonStandard.Image = Properties.Resources.icons8_spa_flower_48;
|
||||||
buttonStandard.ImageAlign = ContentAlignment.BottomCenter;
|
buttonStandard.ImageAlign = ContentAlignment.BottomCenter;
|
||||||
buttonStandard.Location = new Point(196, 4);
|
buttonStandard.Location = new Point(388, 4);
|
||||||
buttonStandard.Margin = new Padding(4);
|
buttonStandard.Margin = new Padding(4);
|
||||||
buttonStandard.Name = "buttonStandard";
|
buttonStandard.Name = "buttonStandard";
|
||||||
buttonStandard.Secondary = false;
|
buttonStandard.Secondary = false;
|
||||||
@@ -666,11 +690,11 @@ namespace GHelper
|
|||||||
buttonXGM.ForeColor = SystemColors.ControlText;
|
buttonXGM.ForeColor = SystemColors.ControlText;
|
||||||
buttonXGM.Image = Properties.Resources.icons8_video_48;
|
buttonXGM.Image = Properties.Resources.icons8_video_48;
|
||||||
buttonXGM.ImageAlign = ContentAlignment.BottomCenter;
|
buttonXGM.ImageAlign = ContentAlignment.BottomCenter;
|
||||||
buttonXGM.Location = new Point(580, 4);
|
buttonXGM.Location = new Point(196, 132);
|
||||||
buttonXGM.Margin = new Padding(4);
|
buttonXGM.Margin = new Padding(4);
|
||||||
buttonXGM.Name = "buttonXGM";
|
buttonXGM.Name = "buttonXGM";
|
||||||
buttonXGM.Secondary = false;
|
buttonXGM.Secondary = false;
|
||||||
buttonXGM.Size = new Size(186, 120);
|
buttonXGM.Size = new Size(184, 120);
|
||||||
buttonXGM.TabIndex = 2;
|
buttonXGM.TabIndex = 2;
|
||||||
buttonXGM.Text = "XG Mobile";
|
buttonXGM.Text = "XG Mobile";
|
||||||
buttonXGM.TextImageRelation = TextImageRelation.ImageAboveText;
|
buttonXGM.TextImageRelation = TextImageRelation.ImageAboveText;
|
||||||
@@ -689,7 +713,7 @@ namespace GHelper
|
|||||||
buttonOptimized.ForeColor = SystemColors.ControlText;
|
buttonOptimized.ForeColor = SystemColors.ControlText;
|
||||||
buttonOptimized.Image = Properties.Resources.icons8_project_management_48__1_;
|
buttonOptimized.Image = Properties.Resources.icons8_project_management_48__1_;
|
||||||
buttonOptimized.ImageAlign = ContentAlignment.BottomCenter;
|
buttonOptimized.ImageAlign = ContentAlignment.BottomCenter;
|
||||||
buttonOptimized.Location = new Point(388, 4);
|
buttonOptimized.Location = new Point(4, 132);
|
||||||
buttonOptimized.Margin = new Padding(4);
|
buttonOptimized.Margin = new Padding(4);
|
||||||
buttonOptimized.Name = "buttonOptimized";
|
buttonOptimized.Name = "buttonOptimized";
|
||||||
buttonOptimized.Secondary = false;
|
buttonOptimized.Secondary = false;
|
||||||
@@ -711,11 +735,11 @@ namespace GHelper
|
|||||||
buttonUltimate.ForeColor = SystemColors.ControlText;
|
buttonUltimate.ForeColor = SystemColors.ControlText;
|
||||||
buttonUltimate.Image = Properties.Resources.icons8_game_controller_48;
|
buttonUltimate.Image = Properties.Resources.icons8_game_controller_48;
|
||||||
buttonUltimate.ImageAlign = ContentAlignment.BottomCenter;
|
buttonUltimate.ImageAlign = ContentAlignment.BottomCenter;
|
||||||
buttonUltimate.Location = new Point(4, 132);
|
buttonUltimate.Location = new Point(580, 4);
|
||||||
buttonUltimate.Margin = new Padding(4);
|
buttonUltimate.Margin = new Padding(4);
|
||||||
buttonUltimate.Name = "buttonUltimate";
|
buttonUltimate.Name = "buttonUltimate";
|
||||||
buttonUltimate.Secondary = false;
|
buttonUltimate.Secondary = false;
|
||||||
buttonUltimate.Size = new Size(184, 120);
|
buttonUltimate.Size = new Size(186, 120);
|
||||||
buttonUltimate.TabIndex = 2;
|
buttonUltimate.TabIndex = 2;
|
||||||
buttonUltimate.Text = Properties.Strings.UltimateMode;
|
buttonUltimate.Text = Properties.Strings.UltimateMode;
|
||||||
buttonUltimate.TextImageRelation = TextImageRelation.ImageAboveText;
|
buttonUltimate.TextImageRelation = TextImageRelation.ImageAboveText;
|
||||||
@@ -734,7 +758,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureGPU
|
// pictureGPU
|
||||||
//
|
//
|
||||||
pictureGPU.BackgroundImage = (Image)resources.GetObject("pictureGPU.BackgroundImage");
|
pictureGPU.BackgroundImage = Properties.Resources.icons8_video_card_32;
|
||||||
pictureGPU.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureGPU.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureGPU.Location = new Point(8, 0);
|
pictureGPU.Location = new Point(8, 0);
|
||||||
pictureGPU.Margin = new Padding(4);
|
pictureGPU.Margin = new Padding(4);
|
||||||
@@ -914,7 +938,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureScreen
|
// pictureScreen
|
||||||
//
|
//
|
||||||
pictureScreen.BackgroundImage = (Image)resources.GetObject("pictureScreen.BackgroundImage");
|
pictureScreen.BackgroundImage = Properties.Resources.icons8_laptop_32;
|
||||||
pictureScreen.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureScreen.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureScreen.Location = new Point(6, 0);
|
pictureScreen.Location = new Point(6, 0);
|
||||||
pictureScreen.Margin = new Padding(4);
|
pictureScreen.Margin = new Padding(4);
|
||||||
@@ -977,6 +1001,8 @@ namespace GHelper
|
|||||||
buttonKeyboard.Dock = DockStyle.Top;
|
buttonKeyboard.Dock = DockStyle.Top;
|
||||||
buttonKeyboard.FlatAppearance.BorderSize = 0;
|
buttonKeyboard.FlatAppearance.BorderSize = 0;
|
||||||
buttonKeyboard.FlatStyle = FlatStyle.Flat;
|
buttonKeyboard.FlatStyle = FlatStyle.Flat;
|
||||||
|
buttonKeyboard.Image = Properties.Resources.icons8_settings_32;
|
||||||
|
buttonKeyboard.ImageAlign = ContentAlignment.MiddleRight;
|
||||||
buttonKeyboard.Location = new Point(516, 7);
|
buttonKeyboard.Location = new Point(516, 7);
|
||||||
buttonKeyboard.Margin = new Padding(4, 7, 4, 7);
|
buttonKeyboard.Margin = new Padding(4, 7, 4, 7);
|
||||||
buttonKeyboard.Name = "buttonKeyboard";
|
buttonKeyboard.Name = "buttonKeyboard";
|
||||||
@@ -984,6 +1010,7 @@ namespace GHelper
|
|||||||
buttonKeyboard.Size = new Size(250, 45);
|
buttonKeyboard.Size = new Size(250, 45);
|
||||||
buttonKeyboard.TabIndex = 37;
|
buttonKeyboard.TabIndex = 37;
|
||||||
buttonKeyboard.Text = Properties.Strings.Extra;
|
buttonKeyboard.Text = Properties.Strings.Extra;
|
||||||
|
buttonKeyboard.TextImageRelation = TextImageRelation.ImageBeforeText;
|
||||||
buttonKeyboard.UseVisualStyleBackColor = false;
|
buttonKeyboard.UseVisualStyleBackColor = false;
|
||||||
//
|
//
|
||||||
// panelColor
|
// panelColor
|
||||||
@@ -1066,7 +1093,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureKeyboard
|
// pictureKeyboard
|
||||||
//
|
//
|
||||||
pictureKeyboard.BackgroundImage = Properties.Resources.icons8_keyboard_48;
|
pictureKeyboard.BackgroundImage = Properties.Resources.icons8_keyboard_32__1_;
|
||||||
pictureKeyboard.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureKeyboard.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureKeyboard.Location = new Point(6, 0);
|
pictureKeyboard.Location = new Point(6, 0);
|
||||||
pictureKeyboard.Margin = new Padding(4);
|
pictureKeyboard.Margin = new Padding(4);
|
||||||
@@ -1120,30 +1147,6 @@ namespace GHelper
|
|||||||
panelVersion.Size = new Size(810, 57);
|
panelVersion.Size = new Size(810, 57);
|
||||||
panelVersion.TabIndex = 41;
|
panelVersion.TabIndex = 41;
|
||||||
//
|
//
|
||||||
// buttonStopGPU
|
|
||||||
//
|
|
||||||
buttonStopGPU.Activated = false;
|
|
||||||
buttonStopGPU.BackColor = SystemColors.ControlLightLight;
|
|
||||||
buttonStopGPU.BorderColor = Color.Transparent;
|
|
||||||
buttonStopGPU.BorderRadius = 5;
|
|
||||||
buttonStopGPU.CausesValidation = false;
|
|
||||||
buttonStopGPU.Dock = DockStyle.Top;
|
|
||||||
buttonStopGPU.FlatAppearance.BorderSize = 0;
|
|
||||||
buttonStopGPU.FlatStyle = FlatStyle.Flat;
|
|
||||||
buttonStopGPU.ForeColor = SystemColors.ControlText;
|
|
||||||
buttonStopGPU.Image = Properties.Resources.icons8_leaf_48;
|
|
||||||
buttonStopGPU.ImageAlign = ContentAlignment.BottomCenter;
|
|
||||||
buttonStopGPU.Location = new Point(196, 132);
|
|
||||||
buttonStopGPU.Margin = new Padding(4);
|
|
||||||
buttonStopGPU.Name = "buttonStopGPU";
|
|
||||||
buttonStopGPU.Secondary = false;
|
|
||||||
buttonStopGPU.Size = new Size(184, 120);
|
|
||||||
buttonStopGPU.TabIndex = 4;
|
|
||||||
buttonStopGPU.Text = "Stop GPU applications";
|
|
||||||
buttonStopGPU.TextImageRelation = TextImageRelation.ImageAboveText;
|
|
||||||
buttonStopGPU.UseVisualStyleBackColor = false;
|
|
||||||
buttonStopGPU.Visible = false;
|
|
||||||
//
|
|
||||||
// SettingsForm
|
// SettingsForm
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(192F, 192F);
|
AutoScaleDimensions = new SizeF(192F, 192F);
|
||||||
|
|||||||
@@ -117,62 +117,4 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
||||||
<data name="pictureBattery.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAAY1JREFUaEPtlz1OAzEQhVdIFFyCH0EFDQ1wAhDcgxPACYCOA/BzGTo6aKGKFOAE
|
|
||||||
0FCABO9FsbSK3uI8J9kFMZ/0FdmMZ+xovLGrIAiCIAiCQLIMr+EL/IRfM5Y1WOsKsvZE7ME3qAq1IWvv
|
|
||||||
wiJWYJeTT77CJWjDtlEJu/AS2rAPVbIufII2bWzYceVcbFQix1V4CKe1j2xUEscEN+ANVDGONiqJY505
|
|
||||||
eATfoYp15N48gFnUYEfFOryDKt7xGWZRA0flhHbgOewNnyWbmIcn8APW412zqEGj8u9+ASY24Rl8GHz6
|
|
||||||
mS34CFXeccyiBik5iW2Yg4vi4rjIBBfPH0HlzZlFDWqS7XAK2R5N1OPZbmw7tt/G8JlrFjUo5z3khBQq
|
|
||||||
vtSpbWIlX5XHkK/OOiq2RE5+H2ZRgx1v4RpMqBhHG5XElccIHie4EPW9o82fP8yx11SyLuxDm9L38yy8
|
|
||||||
gDa8UP+WK+UiLIIXaiZQiduQtYsv9Qme53kn5bWujY3NGqzFtin+5YMgCIIgCP4PVfUNWXMTLz5Z0sYA
|
|
||||||
AAAASUVORK5CYII=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="picturePerf.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAA31JREFUaEPt2NnrTkEcx/HHmj37hTWJP0BCSe5ESSnklivJUsiuXFiSIlsS98qW
|
|
||||||
CLmTP0FKUkqkrNn37f2p39T07fucmfM85/eQzqdexW/mzJlzzpyZeU6jTp06df6L9MQsbMdF3MVrfOui
|
|
||||||
f+tvF7ANM6Fj/nrGYT+e4HdJj7EPY9HxjMBJfIXXuTK+4ASGoyNZjpfwOtOOF1iGbktv6K57J6/Scehc
|
|
||||||
laY/rsI7YfADt7EReqFHow8GYCJmYzNu4ju8NoIr0Dkrie5GUec/4QDU4dzMh9dWTBdRyZMoGjbnMR5l
|
|
||||||
oxfWa886hraiF9Zr+Cc05/dAHF3MGtzAPXzARzzCNWzAAmit8Nr1LEFL0VTpzTbqvC4sjuby09B7YOsX
|
|
||||||
UVvrMBA7u/5mPccwlE6zoaM7H2cR3sGrW0SdX4mQIfDqSemhpBXWW6Q05uNhsxbqiK2XYjuvrIdXV7TY
|
|
||||||
jUF2tD2wjWi2iV9Y3fmqOq//p9rai6z0gre30VQZojFfxbBRcjovmgiyNoBahOzBejnjef4MbJ2UnM6f
|
|
||||||
w1BonfAWuxlIRi+pPVArbIiGUSuzTc6dn4cQrdhxmWxBMpdgD9T8HaIX15YX+YVViNNs2MTn2Qpbrkkk
|
|
||||||
Gf3wsAdqWIVchy23NINp36OZYxDiNOu8aMsSor2TLb+DZF7BHjgKIfdhy61mj7qo8/IQIZNgy7XlTsab
|
|
||||||
//siJGf28ebswSjqvGjrEaLV2ZZrPUhGleyB8TB4D1tueRegqderG9PNCdEF2/KsC9Dewx44BSEPYMst
|
|
||||||
bwh5L6Wl4RkyFbb8GZLxXuI5CNFO05ZbGoa6CD0J0b9zfj9rxxoyF7Y86yXWYmIP3ISQstNoGasRoou2
|
|
||||||
5WeRzA7YA28hZAJSPwlboTbjvZYWT1tH35SSmQ57oBofiRDt/W2ddp1CiLYt3mo/Dclow/QU9uB4M6ft
|
|
||||||
9lvYOq16g/gD10HYOvoQZn8BNs0e2AY+I37E2nCV3RN5tDYsRIguRFt3W283sqOO6pumbUTfNuO7oEZt
|
|
||||||
nbLijqltby+mGSx+Qlk5AtuQ6LdryGR4dcrQliFkF7w6h1E6emm9fZEe+QpopVTDtrysQ1BbzfZJ2v+0
|
|
||||||
/N10MWyDnbYUbUVfjr2GO+Eo2o5+I5f5EFWVyj4tKvrQehneibqDZqJ+qDR6EnrhcjZlrVLbOofOVadO
|
|
||||||
nTr/fBqNP4sju3bXhjy/AAAAAElFTkSuQmCC
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="pictureGPU.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAAZVJREFUaEPtmTtOxDAURYcGGtgAsCJo6PisACE2ALTAvvgVsB0KQBRwT2HJGl3y
|
|
||||||
EtloHPCRjiKNfJ/sOLGV8aLT6XSa4Fa+ya/MD3kjm2dNvsq888l3OQu408szkJwlfQCr5k8NoAVZEV/k
|
|
||||||
vhyFK9KKBzLEBVvxWYa4YCuO2ptcsCVDXKim9/JQbst1uSOP5IN07ZcNcaEafspTOcSZpJ3LJ0NcCC8k
|
|
||||||
d8zB75fS5ZJR5xMMwuWTIS6Em3KILelyeCen8ChdHQxxIeQOD83AlXQ55JmfwrF0dTDEhUrlhZ0CL7ar
|
|
||||||
gyEuVOpPM/cTG9LVwRAXKnXqDOxKVwdDXAhLViHW+SmcSFcHQ1wIS1YhNqmx8Jn7JF0dDHEhLFmFkPV9
|
|
||||||
DOfS5ZMhLlRDdthoEHT+13biWrJJsc7zojJzXHnmhx6b3BAXaskQF2rF2X8PzP6LbE+GuOAq5V8J7vyo
|
|
||||||
zkMeniX/ZgB5u5oWM7ZY3q6mxYwtxsuVt61hlTOJdFbAdQjOFWoOglrXshg6xqnNLI6YOp1OZ1UsFt/W
|
|
||||||
cWCm8IATjAAAAABJRU5ErkJggg==
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="pictureScreen.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAANBJREFUaEPt2DESAUEUhOF1PQQuxd1wHAGi1U8galU9ktej+qv6M71myyZriYiI
|
|
||||||
+Fd7dEFPtDZV311n2KEhdXh2wc4OSHZF7CKdnZGs87H51gPJ2AUckrGxQzI2dkjGxg7J2NghGRs7JGNj
|
|
||||||
h2Rs7JCMjR2SsbFDMjZ2SMbGDsnY2CEZGzskY2OHZGzskIyNHZKxsUOy6V8pp3+pr/9h2EU626IhdRN1
|
|
||||||
191/bNUZhg8fMeiE7og9h47VWY/obYNuiH3QuTrzR93NtL9ARET8aFleMDJURjd/4/oAAAAASUVORK5C
|
|
||||||
YII=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
</root>
|
||||||
@@ -84,6 +84,12 @@ public static class ControlHelper
|
|||||||
gb.ForeColor = RForm.foreMain;
|
gb.ForeColor = RForm.foreMain;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var pn = control as Panel;
|
||||||
|
if (pn != null && pn.Name.Contains("Header"))
|
||||||
|
{
|
||||||
|
pn.BackColor = RForm.buttonSecond;
|
||||||
|
}
|
||||||
|
|
||||||
var sl = control as Slider;
|
var sl = control as Slider;
|
||||||
if (sl != null)
|
if (sl != null)
|
||||||
{
|
{
|
||||||
@@ -91,7 +97,7 @@ public static class ControlHelper
|
|||||||
}
|
}
|
||||||
|
|
||||||
var chk = control as CheckBox;
|
var chk = control as CheckBox;
|
||||||
if (chk != null && chk.Padding.Right > 5)
|
if (chk != null && chk.Padding.Right >= 10)
|
||||||
{
|
{
|
||||||
chk.BackColor = RForm.buttonSecond;
|
chk.BackColor = RForm.buttonSecond;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ namespace GHelper.UI
|
|||||||
private SizeF _barSize;
|
private SizeF _barSize;
|
||||||
private PointF _barPos;
|
private PointF _barPos;
|
||||||
|
|
||||||
private int _step = 5;
|
|
||||||
|
|
||||||
public Color accentColor = Color.FromArgb(255, 58, 174, 239);
|
public Color accentColor = Color.FromArgb(255, 58, 174, 239);
|
||||||
public Color borderColor = Color.White;
|
public Color borderColor = Color.White;
|
||||||
@@ -39,6 +38,7 @@ namespace GHelper.UI
|
|||||||
DoubleBuffered = true;
|
DoubleBuffered = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private int _min = 0;
|
private int _min = 0;
|
||||||
public int Min
|
public int Min
|
||||||
{
|
{
|
||||||
@@ -61,6 +61,16 @@ namespace GHelper.UI
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private int _step = 1;
|
||||||
|
public int Step
|
||||||
|
{
|
||||||
|
get => _step;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
_step = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
private int _value = 50;
|
private int _value = 50;
|
||||||
public int Value
|
public int Value
|
||||||
{
|
{
|
||||||
|
|||||||
5
app/Updates.Designer.cs
generated
@@ -30,7 +30,6 @@ namespace GHelper
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Updates));
|
|
||||||
tableBios = new TableLayoutPanel();
|
tableBios = new TableLayoutPanel();
|
||||||
labelBIOS = new Label();
|
labelBIOS = new Label();
|
||||||
pictureBios = new PictureBox();
|
pictureBios = new PictureBox();
|
||||||
@@ -80,7 +79,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureBios
|
// pictureBios
|
||||||
//
|
//
|
||||||
pictureBios.BackgroundImage = (Image)resources.GetObject("pictureBios.BackgroundImage");
|
pictureBios.BackgroundImage = Properties.Resources.icons8_processor_32;
|
||||||
pictureBios.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureBios.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureBios.Location = new Point(28, 23);
|
pictureBios.Location = new Point(28, 23);
|
||||||
pictureBios.Margin = new Padding(4);
|
pictureBios.Margin = new Padding(4);
|
||||||
@@ -193,7 +192,7 @@ namespace GHelper
|
|||||||
//
|
//
|
||||||
// pictureDrivers
|
// pictureDrivers
|
||||||
//
|
//
|
||||||
pictureDrivers.BackgroundImage = (Image)resources.GetObject("pictureDrivers.BackgroundImage");
|
pictureDrivers.BackgroundImage = Properties.Resources.icons8_software_32;
|
||||||
pictureDrivers.BackgroundImageLayout = ImageLayout.Zoom;
|
pictureDrivers.BackgroundImageLayout = ImageLayout.Zoom;
|
||||||
pictureDrivers.Location = new Point(28, 6);
|
pictureDrivers.Location = new Point(28, 6);
|
||||||
pictureDrivers.Margin = new Padding(4);
|
pictureDrivers.Margin = new Padding(4);
|
||||||
|
|||||||
@@ -117,33 +117,4 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
||||||
<data name="pictureBios.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAAWlJREFUaEPtmN1Kw0AQhVOkoo8q7ZUiguid9ULwZaS+g3jtnT6FCv4g2DOhA23I
|
|
||||||
LrvHzKTCfPBRkuFsT9JCyDZBEASBB7fwE960R9tcwze4aI+2sZhRfMHf9WeXDygz+exiMaOQxdQu3jOK
|
|
||||||
3ILes2ImcAYf4eaC3s7hFFaxB+9g34JjeA/3YTHHsG+hMT2BxbxADZ7C6p9wAA7gOdQeT7CYH6jBqp9u
|
|
||||||
YOS7tce3nChFQ+LYUF1SIXlCvsPBnpAFpLpkSYXk8S7nXtsjH1JdsqRCcuflIq7aIx9SXbJQISOoLlTI
|
|
||||||
CKoLFTKC6kKFjKC6UCEjqC5UyAiqCxUygupChYygulAhI6guVMgIqgsVMoLqQoWMoLr8+xeaZ6jBMzjG
|
|
||||||
RRzCC6g9ql4pL6EGd0XZaChG7vgubassYfW/QDa2juAD7FvUS9lc+/OuyOaCXbxnFLkFvWcU7Fa4xYxC
|
|
||||||
X+b7tlO8Z0EQBMFQNM0KZ46+F5QUhV4AAAAASUVORK5CYII=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="pictureDrivers.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
|
|
||||||
DAAACwwBP0AiyAAAAnJJREFUaEPtmL1qlEEUhhdF8Acbo51/KGKRWhvBP7S0Ve9AvAQxuYwUFkkjioro
|
|
||||||
DdgogqJipxa2giIqamOiieZ5IQuH4ezOmf2+3R3ke+CBsLvnzJnZmfnOptfR0dHx33AYr+JtfI1f8PeG
|
|
||||||
+luv3UJ95hBWwWa8jE/xL/4Lqs8q5hJuwqlwDt+hV2CJb/AsToxteAO9Ypq4gFtxrOzBF+gVoG3xGOfw
|
|
||||||
JO7H7bgDj+Ip1HsvcdB2e4YzOBZU/FtMB13DRZzFKEfwDnoT0Zbaja2ibeOt/Ac8gaNyDN9jmvc5trqd
|
|
||||||
Bu35P6ibpAm78BGmuXUmWuE8psmtbUxiC3qTaHw76Z5Pr0ptGxVtX2vrm0i3k85Do+eEHlI2oQ6s9ryK
|
|
||||||
HcckjmN6sC/iyOhpaZPptumTTmIVr2FT7qId8wmOhHobuxr6O70q+5NQ8Rf0Qgvoik3HPYjFqOnqJ5F6
|
|
||||||
SHloEm2svOUV2rGvYDHqHG2S6xhlH97Hnxs+RD2No8yjHfsmFqP21yZRexBBxX9FGyu/od6LcAZtrL6R
|
|
||||||
YtTD2yQHMIJW3sZZ72EEfVs27jMWs4I2iRqzCNoyNs76AyPsRBu3jMX8QptE/VCEYRP4jhG0WDZOtRTz
|
|
||||||
CW2SvRhBB9bGWXXHR9BZsXEfsRj17TbJaYyg/asDa2OlzlR0EdJDrE64mCW0SUrueq2gDqz2vNTKR4sX
|
|
||||||
GsuOrVrC2MAazeIF1WQWL6gms3hBNZnFC6rJLF5QTWbxgmoyixdUk1m8oJrM4gXVZJZh3eS0DXWzD9AL
|
|
||||||
rkH9WMqibtL7SThtVZP+YxFCnWO/m/SSTVLVoJUPF9/R0dExKXq9dc3qWY2Pp0GbAAAAAElFTkSuQmCC
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
</root>
|
||||||
@@ -73,8 +73,7 @@ _PPTs are shown for G14 2022, for other models PPTs will be different as they ar
|
|||||||
## :question: FAQ
|
## :question: FAQ
|
||||||
|
|
||||||
#### How do I stop the Armory Crate install popup appearing every time I press the M4 / Rog key?
|
#### How do I stop the Armory Crate install popup appearing every time I press the M4 / Rog key?
|
||||||
Stop ``ArmouryCrateControlInterface`` service under windows Services app.
|
Stop ``ArmouryCrateControlInterface`` service under windows Services app or you can stop all asus services all together from ``Extra`` -> ``Stop services``
|
||||||
If it still appears - Go to BIOS (F2 on boot), open Advanced Settings and disable "Armory Control Interface".
|
|
||||||
|
|
||||||
#### Why is Ultimate GPU mode not available on my laptop?
|
#### Why is Ultimate GPU mode not available on my laptop?
|
||||||
Ultimate mode is supported (by hardware) only on 2022+ models
|
Ultimate mode is supported (by hardware) only on 2022+ models
|
||||||
@@ -130,6 +129,9 @@ G-helper is a single exe, and it doesn't install anything in the system. To remo
|
|||||||
#### I have G14 2023 and my GPU refuses to disable/enable
|
#### I have G14 2023 and my GPU refuses to disable/enable
|
||||||
It seem to be an issue in older BIOS versions. As [users report](https://github.com/seerge/g-helper/issues/680) - latest BIOS 310 (installable via myasus / g-helper -> updates) resolves all issues :) So please update.
|
It seem to be an issue in older BIOS versions. As [users report](https://github.com/seerge/g-helper/issues/680) - latest BIOS 310 (installable via myasus / g-helper -> updates) resolves all issues :) So please update.
|
||||||
|
|
||||||
|
#### I have uninstalled Armoury andmy GPU performance is lower than it was
|
||||||
|
Check your NVidia Experience settings and make sure that you have **Whisper Mode** set to ``OFF``. Also you can go to reset all settings ``Nvidia Control panel -> Manage 3D Settings -> Reset to defaults``
|
||||||
|
|
||||||
#### How do I do a hardware reset on a laptop?
|
#### How do I do a hardware reset on a laptop?
|
||||||
All Asus laptops have an option to do a hardware reset that can be handy sometimes. It doesn't touch your data, but resets all main hardware-related things (enables your dGPU, wakes up wifi/bt adapter if it hanged by some reason, etc). Turn OFF laptop. Press and hold "power" button for 30-40 seconds. Then boot normally (it will take a bit longer to boot)
|
All Asus laptops have an option to do a hardware reset that can be handy sometimes. It doesn't touch your data, but resets all main hardware-related things (enables your dGPU, wakes up wifi/bt adapter if it hanged by some reason, etc). Turn OFF laptop. Press and hold "power" button for 30-40 seconds. Then boot normally (it will take a bit longer to boot)
|
||||||
|
|
||||||
|
|||||||