Compare commits

...

18 Commits

Author SHA1 Message Date
Serge
65e0065234 Update release.yml 2023-10-23 13:20:23 +02:00
Serge
3fa8c04afa Update release.yml 2023-10-23 13:14:10 +02:00
Serge
162514a8f9 Version Bump 2023-10-22 12:34:21 +02:00
Serge
b51c68572e Touchpad toggle tweaks https://github.com/seerge/g-helper/discussions/1504 2023-10-22 12:33:42 +02:00
Serge
ed5ec6b576 Sceenpad toggle https://github.com/seerge/g-helper/issues/1450 2023-10-20 10:57:15 +02:00
Serge
8c1885c2ae Auto turn off 100% charge option when battery is fully charged https://github.com/seerge/g-helper/issues/1485 2023-10-19 14:36:19 +02:00
Serge
168b751795 Shift + Fn + F7/F8 for screenpad control https://github.com/seerge/g-helper/issues/1491 2023-10-19 14:30:54 +02:00
Serge
3e93a93ab3 AutoBattery charge limiter https://github.com/seerge/g-helper/issues/1481 2023-10-18 11:45:57 +02:00
Serge
8a12e84423 Fn+F6 binding for old TUFs https://github.com/seerge/g-helper/issues/1480 2023-10-18 11:18:53 +02:00
Serge
c978c94d59 Merge branch 'main' of https://github.com/seerge/g-helper 2023-10-13 21:23:42 +02:00
Serge
fc83e0e824 Added FA506IC to the list of models with swapped brightness 2023-10-13 21:23:39 +02:00
Serge
389fc41722 New Crowdin updates (#1465)
* New translations strings.resx (Indonesian)

* New translations strings.resx (Indonesian)
2023-10-13 19:26:01 +02:00
Serge
509817f442 New Crowdin updates (#1463)
* Updated translations strings.resx (Spanish)
* Updated translations strings.resx (Lithuanian)

* New translations strings.resx (Indonesian)
https://github.com/seerge/g-helper/pull/1462 @aliazhar-id
2023-10-13 11:59:25 +02:00
Serge
8d8cfb0521 Merge pull request #1452 from seerge/l10n_main
New Crowdin updates
2023-10-12 15:40:25 +02:00
Serge
f021135f53 New translations strings.resx (German) 2023-10-12 13:49:12 +02:00
Serge
98670414d2 Merge pull request #1451 from IceStormNG/asus-mouse-support
TUF M5 has 3 profiles, not just 1
2023-10-12 12:21:20 +02:00
IceStormNG
a41595068e TUF M5 has 3 profiles, not just 1 2023-10-12 12:19:02 +02:00
Serge
d58c277733 Exception fix https://github.com/seerge/g-helper/issues/1447 2023-10-11 19:24:41 +02:00
17 changed files with 757 additions and 76 deletions

View File

@@ -22,18 +22,9 @@ jobs:
- name: Publish
run: |
dotnet publish app/GHelper.sln --configuration Release --runtime win-x64 -p:PublishSingleFile=true --no-self-contained
powershell Compress-Archive app/bin/x64/Release/net7.0-windows/win-x64/publish/* GHelper-${{ github.sha }}.zip
powershell Compress-Archive app/bin/x64/Release/net7.0-windows/win-x64/publish/* GHelper.zip
- name: Upload
if: github.event_name != 'workflow_dispatch'
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release upload ${{ github.ref_name }} GHelper.zip
- name: Artifact
if: github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v3
with:
name: GHelper-release-${{ github.sha }}
path: GHelper-*.zip

View File

@@ -328,7 +328,7 @@ public static class AppConfig
// Devices with bugged bios command to change brightness
public static bool SwappedBrightness()
{
return ContainsModel("FA506IH") || ContainsModel("FX506LU") || ContainsModel("FX506IC") || ContainsModel("FX506LH");
return ContainsModel("FA506IH") || ContainsModel("FA506IC") || ContainsModel("FX506LU") || ContainsModel("FX506IC") || ContainsModel("FX506LH");
}
@@ -423,7 +423,7 @@ public static class AppConfig
public static bool IsGPUFixNeeded()
{
return ContainsModel("GA402X") || ContainsModel("GV302") || ContainsModel("GZ301") || ContainsModel("FX506") || ContainsModel("GU603V");
return ContainsModel("GA402X") || ContainsModel("GV302") || ContainsModel("GZ301") || ContainsModel("FX506") || ContainsModel("GU603V") || ContainsModel("GU603Z");
}
public static bool IsGPUFix()

View File

@@ -671,7 +671,8 @@ namespace GHelper
private void VisualizeMouseSettings()
{
comboProfile.SelectedIndex = mouse.Profile;
if (mouse.Profile < comboProfile.Items.Count)
comboProfile.SelectedIndex = mouse.Profile;
if (mouse.HasRGB())
{

View File

@@ -13,10 +13,20 @@
{
AppConfig.Set("charge_full", 1);
Program.acpi.DeviceSet(AsusACPI.BatteryLimit, 100, "BatteryLimit");
Program.settingsForm.VisualiseBatteryFull();
}
public static void UnSetBatteryLimitFull()
{
AppConfig.Set("charge_full", 0);
Program.settingsForm.VisualiseBatteryFull();
}
public static void AutoBattery(bool init = false)
{
if (AppConfig.Is("charge_full") && !init) SetBatteryLimitFull();
else SetBatteryChargeLimit();
}
public static void SetBatteryChargeLimit(int limit = -1)
{

View File

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

View File

@@ -7,6 +7,7 @@ using GHelper.Gpu.AMD;
using GHelper.Helpers;
using System.Diagnostics;
using System.Management;
using GHelper.Battery;
public static class HardwareControl
{
@@ -211,6 +212,7 @@ public static class HardwareControl
if (fullCapacity > 0 && chargeCapacity > 0)
{
batteryCapacity = Math.Min(100, ((decimal)chargeCapacity / (decimal)fullCapacity) * 100);
if (batteryCapacity > 99) BatteryControl.UnSetBatteryLimitFull();
}

View File

@@ -346,6 +346,7 @@ namespace GHelper.Input
if (e.Key == keyProfile) modeControl.CyclePerformanceMode(true);
}
if (e.Modifier == (ModifierKeys.Control))
{
switch (e.Key)
@@ -477,7 +478,7 @@ namespace GHelper.Input
static void ToggleTouchpad()
{
KeyboardHook.KeyKeyKeyPress(Keys.ControlKey, Keys.LWin, Keys.F24);
KeyboardHook.KeyKeyKeyPress(Keys.LWin, Keys.LControlKey, Keys.F24);
}
public static void ToggleArrowLock()
@@ -588,7 +589,8 @@ namespace GHelper.Input
case 199: // ON Z13 - FN+F11 - cycles backlight
SetBacklight(4);
return;
case 53: // FN+F6 on GA-502DU model
case 51: // Fn+F6 on old TUFs
case 53: // Fn+F6 on GA-502DU model
NativeMethods.TurnOffScreen();
return;
}
@@ -605,12 +607,16 @@ namespace GHelper.Input
switch (EventID)
{
case 16: // FN+F7
//ScreenBrightness.Adjust(-10);
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Down, "Brightness");
if (Control.ModifierKeys == Keys.Shift)
SetScreenpad(-10);
else
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Down, "Brightness");
break;
case 32: // FN+F8
//ScreenBrightness.Adjust(+10);
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Up, "Brightness");
if (Control.ModifierKeys == Keys.Shift)
SetScreenpad(10);
else
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.Brightness_Up, "Brightness");
break;
case 107: // FN+F10
ToggleTouchpad();
@@ -621,7 +627,10 @@ namespace GHelper.Input
Program.acpi.DeviceSet(AsusACPI.UniversalControl, AsusACPI.KB_Sleep, "Sleep");
break;
case 106: // Screenpad button on DUO
SetScreenpad(100);
if (Control.ModifierKeys == Keys.Shift)
ToggleScreenpad();
else
SetScreenpad(100);
break;
@@ -680,6 +689,16 @@ namespace GHelper.Input
}
public static void ToggleScreenpad()
{
int toggle = AppConfig.Is("screenpad_toggle") ? 0 : 1;
Program.acpi.DeviceSet(AsusACPI.ScreenPadToggle, toggle, "ScreenpadToggle");
AppConfig.Set("screenpad_toggle", toggle);
Program.toast.RunToast($"Screen Pad " + (toggle == 1 ? "On" : "Off"), toggle > 0 ? ToastIcon.BrightnessUp : ToastIcon.BrightnessDown);
}
public static void SetScreenpad(int delta)
{
int brightness = AppConfig.Get("screenpad", 100);

View File

@@ -40,9 +40,9 @@ public sealed class KeyboardHook : IDisposable
keybd_event((byte)key2, 0, KEYEVENTF_EXTENDEDKEY, IntPtr.Zero);
keybd_event((byte)key3, 0, KEYEVENTF_EXTENDEDKEY, IntPtr.Zero);
keybd_event((byte)key3, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, IntPtr.Zero);
keybd_event((byte)key2, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, IntPtr.Zero);
keybd_event((byte)key, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, IntPtr.Zero);
keybd_event((byte)key2, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, IntPtr.Zero);
keybd_event((byte)key3, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, IntPtr.Zero);
}
/// <summary>

84
app/Matrix.Designer.cs generated
View File

@@ -35,23 +35,23 @@
panelMain = new Panel();
panelButtons = new Panel();
buttonReset = new UI.RButton();
panelRotation = new Panel();
comboRotation = new UI.RComboBox();
labelRotation = new Label();
panelScaling = new Panel();
comboScaling = new UI.RComboBox();
labelScaling = new Label();
panelZoom = new Panel();
labelZoom = new Label();
labelZoomTitle = new Label();
panelRotation = new Panel();
comboRotation = new UI.RComboBox();
labelRotation = new Label();
((System.ComponentModel.ISupportInitialize)pictureMatrix).BeginInit();
((System.ComponentModel.ISupportInitialize)trackZoom).BeginInit();
panelPicture.SuspendLayout();
panelMain.SuspendLayout();
panelButtons.SuspendLayout();
panelRotation.SuspendLayout();
panelScaling.SuspendLayout();
panelZoom.SuspendLayout();
panelRotation.SuspendLayout();
SuspendLayout();
//
// pictureMatrix
@@ -109,6 +109,7 @@
//
// panelMain
//
panelMain.AutoSize = true;
panelMain.Controls.Add(panelButtons);
panelMain.Controls.Add(panelRotation);
panelMain.Controls.Add(panelScaling);
@@ -117,7 +118,7 @@
panelMain.Dock = DockStyle.Top;
panelMain.Location = new Point(20, 20);
panelMain.Name = "panelMain";
panelMain.Size = new Size(834, 924);
panelMain.Size = new Size(834, 814);
panelMain.TabIndex = 5;
//
// panelButtons
@@ -149,6 +150,40 @@
buttonReset.TextImageRelation = TextImageRelation.ImageBeforeText;
buttonReset.UseVisualStyleBackColor = false;
//
// panelRotation
//
panelRotation.Controls.Add(comboRotation);
panelRotation.Controls.Add(labelRotation);
panelRotation.Dock = DockStyle.Top;
panelRotation.Location = new Point(0, 642);
panelRotation.Name = "panelRotation";
panelRotation.Size = new Size(834, 78);
panelRotation.TabIndex = 8;
//
// comboRotation
//
comboRotation.BorderColor = Color.White;
comboRotation.ButtonColor = Color.FromArgb(255, 255, 255);
comboRotation.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
comboRotation.FormattingEnabled = true;
comboRotation.ItemHeight = 32;
comboRotation.Items.AddRange(new object[] { "Straight", "Diagonal" });
comboRotation.Location = new Point(229, 17);
comboRotation.Margin = new Padding(4, 11, 4, 8);
comboRotation.Name = "comboRotation";
comboRotation.Size = new Size(322, 40);
comboRotation.TabIndex = 17;
//
// labelRotation
//
labelRotation.AutoSize = true;
labelRotation.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
labelRotation.Location = new Point(16, 20);
labelRotation.Name = "labelRotation";
labelRotation.Size = new Size(190, 32);
labelRotation.TabIndex = 4;
labelRotation.Text = "Image Rotation";
//
// panelScaling
//
panelScaling.Controls.Add(comboScaling);
@@ -216,40 +251,6 @@
labelZoomTitle.TabIndex = 3;
labelZoomTitle.Text = "Zoom";
//
// panelRotation
//
panelRotation.Controls.Add(comboRotation);
panelRotation.Controls.Add(labelRotation);
panelRotation.Dock = DockStyle.Top;
panelRotation.Location = new Point(0, 642);
panelRotation.Name = "panelRotation";
panelRotation.Size = new Size(834, 78);
panelRotation.TabIndex = 8;
//
// comboRotation
//
comboRotation.BorderColor = Color.White;
comboRotation.ButtonColor = Color.FromArgb(255, 255, 255);
comboRotation.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
comboRotation.FormattingEnabled = true;
comboRotation.ItemHeight = 32;
comboRotation.Items.AddRange(new object[] { "Straight", "Diagonal" });
comboRotation.Location = new Point(229, 17);
comboRotation.Margin = new Padding(4, 11, 4, 8);
comboRotation.Name = "comboRotation";
comboRotation.Size = new Size(322, 40);
comboRotation.TabIndex = 17;
//
// labelRotation
//
labelRotation.AutoSize = true;
labelRotation.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
labelRotation.Location = new Point(16, 20);
labelRotation.Name = "labelRotation";
labelRotation.Size = new Size(190, 32);
labelRotation.TabIndex = 4;
labelRotation.Text = "Image Rotation";
//
// Matrix
//
AutoScaleDimensions = new SizeF(192F, 192F);
@@ -271,13 +272,14 @@
panelMain.ResumeLayout(false);
panelMain.PerformLayout();
panelButtons.ResumeLayout(false);
panelRotation.ResumeLayout(false);
panelRotation.PerformLayout();
panelScaling.ResumeLayout(false);
panelScaling.PerformLayout();
panelZoom.ResumeLayout(false);
panelZoom.PerformLayout();
panelRotation.ResumeLayout(false);
panelRotation.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion

View File

@@ -51,7 +51,7 @@
public override int ProfileCount()
{
return 1;
return 3;
}
public override int MaxDPI()
{

View File

@@ -97,7 +97,7 @@ namespace GHelper
gpuControl.InitXGM();
SetAutoModes();
SetAutoModes(init : true);
// Subscribing for system power change events
SystemEvents.PowerModeChanged += SystemEvents_PowerModeChanged;
@@ -129,7 +129,7 @@ namespace GHelper
private static void SystemEvents_SessionEnding(object sender, SessionEndingEventArgs e)
{
gpuControl.StandardModeFix();
BatteryControl.SetBatteryChargeLimit();
BatteryControl.AutoBattery();
}
private static void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
@@ -173,7 +173,7 @@ namespace GHelper
public static void SetAutoModes(bool powerChanged = false)
public static void SetAutoModes(bool powerChanged = false, bool init = false)
{
if (Math.Abs(DateTimeOffset.Now.ToUnixTimeMilliseconds() - lastAuto) < 3000) return;
@@ -194,7 +194,7 @@ namespace GHelper
screenControl.AutoScreen();
}
BatteryControl.SetBatteryChargeLimit();
BatteryControl.AutoBattery(init);
settingsForm.AutoKeyboard();
settingsForm.matrixControl.SetMatrix(true);

View File

@@ -253,7 +253,7 @@
<value>Batteriezustand</value>
</data>
<data name="BatteryLimitFull" xml:space="preserve">
<value>One time charge to 100%</value>
<value>Einmalig auf 100% aufladen</value>
</data>
<data name="BiosAndDriverUpdates" xml:space="preserve">
<value>BIOS und Treiber Updates</value>

View File

@@ -253,7 +253,7 @@
<value>Salud de la batería</value>
</data>
<data name="BatteryLimitFull" xml:space="preserve">
<value>One time charge to 100%</value>
<value>Cargar una vez al 100%</value>
</data>
<data name="BiosAndDriverUpdates" xml:space="preserve">
<value>Actualizaciones de BIOS y Drivers</value>

View File

@@ -0,0 +1,656 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="mimetype" type="xsd:string"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string"/>
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Acceleration" xml:space="preserve">
<value>Akselerasi</value>
</data>
<data name="ACPIError" xml:space="preserve">
<value>Tidak dapat terhubung ke ASUS ACPI. tanpanya aplikasi tidak dapat berfungsi. Cobalah untuk menginstal Asus System Control Interface</value>
</data>
<data name="AlertDGPU" xml:space="preserve">
<value>Tampaknya GPU sedang digunakan intensif, nonaktifkan?</value>
</data>
<data name="AlertDGPUTitle" xml:space="preserve">
<value>Mode Eco</value>
</data>
<data name="AlertUltimateOff" xml:space="preserve">
<value>Mematikan Mode Ultimate memerlukan restart.</value>
</data>
<data name="AlertUltimateOn" xml:space="preserve">
<value>Mode Ultimate memerlukan restart</value>
</data>
<data name="AlertUltimateTitle" xml:space="preserve">
<value>Mulai ulang sekarang?</value>
</data>
<data name="AnimationSpeed" xml:space="preserve">
<value>Kecepatan Animasi</value>
</data>
<data name="AnimeMatrix" xml:space="preserve">
<value>Anime Matrix</value>
</data>
<data name="AppAlreadyRunning" xml:space="preserve">
<value>Aplikasi sudah berjalan</value>
</data>
<data name="AppAlreadyRunningText" xml:space="preserve">
<value>G-Helper sudah berjalan. Periksa system tray untuk menemukan ikonnya.</value>
</data>
<data name="Apply" xml:space="preserve">
<value>Terapkan</value>
</data>
<data name="ApplyFanCurve" xml:space="preserve">
<value>Terapkan Custom Fan Curve</value>
</data>
<data name="ApplyPowerLimits" xml:space="preserve">
<value>Terapkan Batas Daya</value>
</data>
<data name="ApplyWindowsPowerPlan" xml:space="preserve">
<value>Otomatis sesuaikan Mode Daya Windows</value>
</data>
<data name="AsusServicesRunning" xml:space="preserve">
<value>Layanan Asus Berjalan</value>
</data>
<data name="AuraBatteryState" xml:space="preserve">
<value>Status Baterai</value>
</data>
<data name="AuraBreathe" xml:space="preserve">
<value>Bernapas</value>
</data>
<data name="AuraClockwise" xml:space="preserve">
<value>Searah Jarum Jam</value>
</data>
<data name="AuraColorCycle" xml:space="preserve">
<value>Siklus Warna</value>
</data>
<data name="AuraComet" xml:space="preserve">
<value>Komet</value>
</data>
<data name="AuraCounterClockwise" xml:space="preserve">
<value>Berlawanan Jarum Jam</value>
</data>
<data name="AuraFast" xml:space="preserve">
<value>Cepat</value>
</data>
<data name="AuraLightingMode" xml:space="preserve">
<value>Mode Pencahayaan</value>
</data>
<data name="AuraNormal" xml:space="preserve">
<value>Normal</value>
</data>
<data name="AuraRainbow" xml:space="preserve">
<value>Pelangi</value>
</data>
<data name="AuraRandomColor" xml:space="preserve">
<value>Acak</value>
</data>
<data name="AuraReact" xml:space="preserve">
<value>Reaksi</value>
</data>
<data name="AuraSlow" xml:space="preserve">
<value>Pelan</value>
</data>
<data name="AuraStatic" xml:space="preserve">
<value>Statis</value>
</data>
<data name="AuraStrobe" xml:space="preserve">
<value>Berkedip</value>
</data>
<data name="AuraZoneAll" xml:space="preserve">
<value>Semua</value>
</data>
<data name="AuraZoneDock" xml:space="preserve">
<value>Dok</value>
</data>
<data name="AuraZoneLogo" xml:space="preserve">
<value>Logo</value>
</data>
<data name="AuraZoneScroll" xml:space="preserve">
<value>Roda Gulir</value>
</data>
<data name="AuraZoneUnderglow" xml:space="preserve">
<value>Cahaya Bawah</value>
</data>
<data name="AutoApply" xml:space="preserve">
<value>Terapkan Secara Otomatis</value>
</data>
<data name="AutoMode" xml:space="preserve">
<value>Otomatis</value>
</data>
<data name="AutoRefreshTooltip" xml:space="preserve">
<value>Atur ke 60Hz untuk menghemat baterai, dan kembalikan saat mengisi daya</value>
</data>
<data name="Awake" xml:space="preserve">
<value>Bangun</value>
</data>
<data name="BacklightTimeout" xml:space="preserve">
<value>Waktu tunggu dicolokan / menggunakan baterai (0 - Hidup)</value>
</data>
<data name="Balanced" xml:space="preserve">
<value>Seimbang</value>
</data>
<data name="BatteryCharge" xml:space="preserve">
<value>Baterai</value>
</data>
<data name="BatteryChargeLimit" xml:space="preserve">
<value>Batas Pengisian Baterai</value>
</data>
<data name="BatteryHealth" xml:space="preserve">
<value>Kesehatan Baterai</value>
</data>
<data name="BatteryLimitFull" xml:space="preserve">
<value>Isi daya sekali hingga mencapai 100%</value>
</data>
<data name="BiosAndDriverUpdates" xml:space="preserve">
<value>Pembaruan BIOS dan Driver</value>
</data>
<data name="Boot" xml:space="preserve">
<value>Boot</value>
</data>
<data name="BootSound" xml:space="preserve">
<value>Suara Boot</value>
</data>
<data name="Brightness" xml:space="preserve">
<value>Kecerahan</value>
</data>
<data name="BrightnessDown" xml:space="preserve">
<value>Kurangi Kecerahan</value>
</data>
<data name="BrightnessUp" xml:space="preserve">
<value>Tingkatkan Kecerahan</value>
</data>
<data name="Calibrate" xml:space="preserve">
<value>Kalibrasi</value>
</data>
<data name="Charging" xml:space="preserve">
<value>Mengisi Daya</value>
</data>
<data name="Color" xml:space="preserve">
<value>Warna</value>
</data>
<data name="CPUBoost" xml:space="preserve">
<value>CPU Boost</value>
</data>
<data name="Custom" xml:space="preserve">
<value>Kustom</value>
</data>
<data name="Deceleration" xml:space="preserve">
<value>Perlambatan</value>
</data>
<data name="Default" xml:space="preserve">
<value>Standar</value>
</data>
<data name="DisableOverdrive" xml:space="preserve">
<value>Nonaktifkan screen overdrive</value>
</data>
<data name="Discharging" xml:space="preserve">
<value>Discharging</value>
</data>
<data name="DownloadUpdate" xml:space="preserve">
<value>Unduh</value>
</data>
<data name="DriverAndSoftware" xml:space="preserve">
<value>Driver dan Software</value>
</data>
<data name="EcoGPUTooltip" xml:space="preserve">
<value>Menonaktikan dGPU untuk menghemat baterai</value>
</data>
<data name="EcoMode" xml:space="preserve">
<value>Eco</value>
</data>
<data name="EnableOptimusText" xml:space="preserve">
<value>Menonaktikan dGPU dengan masuk ke mode Eco saat Mode Tampilan di Panel Kontrol NVIDIA tidak diatur ke Optimus mungkin dapat menyebabkan masalah dengan kontrol kecerahan hingga mulai ulang berikutnya.
Apakah Anda masih ingin melanjutkan?</value>
</data>
<data name="EnableOptimusTitle" xml:space="preserve">
<value>Mode Tampilan NVIDIA tidak diatur ke Optimus</value>
</data>
<data name="EnergySettings" xml:space="preserve">
<value>Pengaturan Energi</value>
</data>
<data name="Extra" xml:space="preserve">
<value>Ekstra</value>
</data>
<data name="ExtraSettings" xml:space="preserve">
<value>Pengaturan Ekstra</value>
</data>
<data name="FactoryDefaults" xml:space="preserve">
<value>Setelan Pabrik</value>
</data>
<data name="FanCurves" xml:space="preserve">
<value>Kurva Kipas</value>
</data>
<data name="FanProfileCPU" xml:space="preserve">
<value>Profil Kipas CPU</value>
</data>
<data name="FanProfileGPU" xml:space="preserve">
<value>Profil Kipas GPU</value>
</data>
<data name="FanProfileMid" xml:space="preserve">
<value>Profil Kipas Sedang</value>
</data>
<data name="FanProfiles" xml:space="preserve">
<value>Profil Kipas</value>
</data>
<data name="FansAndPower" xml:space="preserve">
<value>Kipas dan Daya</value>
</data>
<data name="FanSpeed" xml:space="preserve">
<value>Kipas</value>
</data>
<data name="FansPower" xml:space="preserve">
<value>Kipas + Daya</value>
</data>
<data name="FnLock" xml:space="preserve">
<value>Proses tombol pintas Fn+F tanpa Fn</value>
</data>
<data name="GPUBoost" xml:space="preserve">
<value>Dynamic Boost</value>
</data>
<data name="GPUChanging" xml:space="preserve">
<value>Mengubah</value>
</data>
<data name="GPUCoreClockOffset" xml:space="preserve">
<value>Core Clock Offset</value>
</data>
<data name="GPUMemoryClockOffset" xml:space="preserve">
<value>Memory Clock Offset</value>
</data>
<data name="GPUMode" xml:space="preserve">
<value>Mode GPU</value>
</data>
<data name="GPUModeEco" xml:space="preserve">
<value>Hanya iGPU</value>
</data>
<data name="GPUModeStandard" xml:space="preserve">
<value>iGPU + dGPU</value>
</data>
<data name="GPUModeUltimate" xml:space="preserve">
<value>dGPU eksklusif</value>
</data>
<data name="GPUSettings" xml:space="preserve">
<value>Pengaturan GPU</value>
</data>
<data name="GPUTempTarget" xml:space="preserve">
<value>Target Suhu</value>
</data>
<data name="HibernateAfter" xml:space="preserve">
<value>Menit hingga Hibernasi dalam mode tidur saat menggunakan baterai (0 - Mati)</value>
</data>
<data name="High" xml:space="preserve">
<value>Tinggi</value>
</data>
<data name="KeyBindings" xml:space="preserve">
<value>Pintasan Keyboard</value>
</data>
<data name="Keyboard" xml:space="preserve">
<value>Keyboard</value>
</data>
<data name="KillGpuApps" xml:space="preserve">
<value>Hentikan semua aplikasi yang menggunakan GPU saat beralih ke mode Eco</value>
</data>
<data name="LaptopBacklight" xml:space="preserve">
<value>Laptop Backlight</value>
</data>
<data name="LaptopKeyboard" xml:space="preserve">
<value>Laptop Keyboard</value>
</data>
<data name="LaptopScreen" xml:space="preserve">
<value>Layar Laptop</value>
</data>
<data name="Lid" xml:space="preserve">
<value>Lid</value>
</data>
<data name="Lightbar" xml:space="preserve">
<value>Lightbar</value>
</data>
<data name="Lighting" xml:space="preserve">
<value>Lighting</value>
</data>
<data name="Logo" xml:space="preserve">
<value>Logo</value>
</data>
<data name="Low" xml:space="preserve">
<value>Rendah</value>
</data>
<data name="MatrixAudio" xml:space="preserve">
<value>Visualisasi Audio</value>
</data>
<data name="MatrixBanner" xml:space="preserve">
<value>Binary Banner</value>
</data>
<data name="MatrixBright" xml:space="preserve">
<value>Terang</value>
</data>
<data name="MatrixClock" xml:space="preserve">
<value>Jam</value>
</data>
<data name="MatrixDim" xml:space="preserve">
<value>Redup</value>
</data>
<data name="MatrixLogo" xml:space="preserve">
<value>Logo Rog</value>
</data>
<data name="MatrixMedium" xml:space="preserve">
<value>Sedang</value>
</data>
<data name="MatrixOff" xml:space="preserve">
<value>Mati</value>
</data>
<data name="MatrixPicture" xml:space="preserve">
<value>Gambar</value>
</data>
<data name="MaxRefreshTooltip" xml:space="preserve">
<value>Maks refresh rate untuk mengurangi latensi</value>
</data>
<data name="MinRefreshTooltip" xml:space="preserve">
<value>60Hz refresh rate untuk menghemat baterai</value>
</data>
<data name="Minute" xml:space="preserve">
<value>Menit</value>
</data>
<data name="Minutes" xml:space="preserve">
<value>Menit</value>
</data>
<data name="MouseAngleSnapping" xml:space="preserve">
<value>Angle Snapping</value>
</data>
<data name="MouseAutoPowerOff" xml:space="preserve">
<value>Mati Otomatis Setelah</value>
</data>
<data name="MouseButtonResponse" xml:space="preserve">
<value>Respon Tombol</value>
</data>
<data name="MouseLiftOffDistance" xml:space="preserve">
<value>Jarak Angkat</value>
</data>
<data name="MouseLowBatteryWarning" xml:space="preserve">
<value>Peringatan Baterai Rendah pada</value>
</data>
<data name="MousePerformance" xml:space="preserve">
<value>Performa</value>
</data>
<data name="MouseSynchronize" xml:space="preserve">
<value>Sinkronkan dengan mouse</value>
</data>
<data name="Multizone" xml:space="preserve">
<value>Multizona</value>
</data>
<data name="MuteMic" xml:space="preserve">
<value>Bisukan Mic</value>
</data>
<data name="Never" xml:space="preserve">
<value>Jangan Pernah</value>
</data>
<data name="NewUpdates" xml:space="preserve">
<value>Pembaruan Terbaru</value>
</data>
<data name="NoNewUpdates" xml:space="preserve">
<value>Tidak ada pembaruan</value>
</data>
<data name="NotConnected" xml:space="preserve">
<value>Tidak Tersambung</value>
</data>
<data name="OpenGHelper" xml:space="preserve">
<value>Buka Jendela G-Helper</value>
</data>
<data name="Optimized" xml:space="preserve">
<value>Dioptimalkan</value>
</data>
<data name="OptimizedGPUTooltip" xml:space="preserve">
<value>Beralih ke Mode Eco saat menggunakan baterai dan ke Mode Standar saat mengisi daya.</value>
</data>
<data name="OptimizedUSBC" xml:space="preserve">
<value>Tetap matikan GPU pada pengisi daya USB-C dalam mode Dioptimalkan</value>
</data>
<data name="Other" xml:space="preserve">
<value>Lainnya</value>
</data>
<data name="Overdrive" xml:space="preserve">
<value>Overdrive</value>
</data>
<data name="PerformanceMode" xml:space="preserve">
<value>Mode</value>
</data>
<data name="Peripherals" xml:space="preserve">
<value>Periferal</value>
</data>
<data name="PictureGif" xml:space="preserve">
<value>Gambar / Gif</value>
</data>
<data name="PlayPause" xml:space="preserve">
<value>Putar / Jeda</value>
</data>
<data name="PollingRate" xml:space="preserve">
<value>Polling Rate</value>
</data>
<data name="PowerLimits" xml:space="preserve">
<value>Batas Daya</value>
</data>
<data name="PPTExperimental" xml:space="preserve">
<value>Batas Daya adalah fitur eksperimental. Gunakan dengan hati-hati dan atas risiko Anda sendiri!</value>
</data>
<data name="PrintScreen" xml:space="preserve">
<value>PrintScreen</value>
</data>
<data name="Profile" xml:space="preserve">
<value>Profil</value>
</data>
<data name="Quit" xml:space="preserve">
<value>Keluar</value>
</data>
<data name="RestartGPU" xml:space="preserve">
<value>Ada yang menggunakan dGPU dan mencegah mode Eco. Biarkan G-Helper mencoba memulai ulang dGPU di pengelola perangkat? (Silakan lanjutkan dengan risiko Anda sendiri)</value>
</data>
<data name="RPM" xml:space="preserve">
<value>RPM</value>
</data>
<data name="RunOnStartup" xml:space="preserve">
<value>Jalankan di Startup</value>
</data>
<data name="ScreenPadDown" xml:space="preserve">
<value>Kurangi Kecerahan Screenpad</value>
</data>
<data name="ScreenPadUp" xml:space="preserve">
<value>Tingkatkan Kecerahan Screenpad</value>
</data>
<data name="Shutdown" xml:space="preserve">
<value>Matikan</value>
</data>
<data name="Silent" xml:space="preserve">
<value>Diam</value>
</data>
<data name="Sleep" xml:space="preserve">
<value>Tidur</value>
</data>
<data name="StandardGPUTooltip" xml:space="preserve">
<value>Mengaktifkan dGPU untuk penggunaan standar</value>
</data>
<data name="StandardMode" xml:space="preserve">
<value>Standar</value>
</data>
<data name="Start" xml:space="preserve">
<value>Mulai</value>
</data>
<data name="StartingServices" xml:space="preserve">
<value>Memulai Services</value>
</data>
<data name="StartupError" xml:space="preserve">
<value>Startup Error</value>
</data>
<data name="Stop" xml:space="preserve">
<value>Berhenti</value>
</data>
<data name="StopGPUApps" xml:space="preserve">
<value>Hentikan Aplikasi GPU</value>
</data>
<data name="StoppingServices" xml:space="preserve">
<value>Menghentikan Services</value>
</data>
<data name="ToggleAura" xml:space="preserve">
<value>Hidupkan/Matikan Aura</value>
</data>
<data name="ToggleClamshellMode" xml:space="preserve">
<value>Otomatis Hidupkan/Matikan Mode Clamshell</value>
</data>
<data name="ToggleFnLock" xml:space="preserve">
<value>Hidupkan/Matikan Fn-Lock</value>
</data>
<data name="ToggleMiniled" xml:space="preserve">
<value>Toggle Miniled (jika didukung)</value>
</data>
<data name="ToggleScreen" xml:space="preserve">
<value>Hidupkan/Matikan Layar</value>
</data>
<data name="Turbo" xml:space="preserve">
<value>Turbo</value>
</data>
<data name="TurnedOff" xml:space="preserve">
<value>Dimatikan</value>
</data>
<data name="TurnOffOnBattery" xml:space="preserve">
<value>Matikan saat menggunakan baterai</value>
</data>
<data name="UltimateGPUTooltip" xml:space="preserve">
<value>Merutekan layar laptop ke dGPU, memaksimalkan FPS</value>
</data>
<data name="UltimateMode" xml:space="preserve">
<value>Ultimate</value>
</data>
<data name="UndervoltingRisky" xml:space="preserve">
<value>Undervolting adalah fitur eksperimental dan berisiko. Jika nilai yang diterapkan terlalu rendah untuk perangkat keras Anda, ini dapat menjadi tidak stabil, mati mendadak, atau menyebabkan kerusakan data. Jika Anda ingin mencobanya, mulailah dengan nilai kecil terlebih dahulu, klik Terapkan, dan uji apa yang cocok untuk Anda.</value>
</data>
<data name="Updates" xml:space="preserve">
<value>Pembaruan</value>
</data>
<data name="VersionLabel" xml:space="preserve">
<value>Versi</value>
</data>
<data name="VolumeDown" xml:space="preserve">
<value>Volume Turun</value>
</data>
<data name="VolumeMute" xml:space="preserve">
<value>Volume Bisu</value>
</data>
<data name="VolumeUp" xml:space="preserve">
<value>Volume Naik</value>
</data>
<data name="WindowTop" xml:space="preserve">
<value>Jaga agar jendela aplikasi selalu di atas</value>
</data>
</root>

View File

@@ -253,7 +253,7 @@
<value>Sveikata</value>
</data>
<data name="BatteryLimitFull" xml:space="preserve">
<value>One time charge to 100%</value>
<value>Vienkartinė įkrova iki 100%</value>
</data>
<data name="BiosAndDriverUpdates" xml:space="preserve">
<value>BIOS ir tvarkyklių naujinimai</value>

View File

@@ -319,7 +319,7 @@ namespace GHelper
sliderBattery.Max = 100;
sliderBattery.Min = 40;
sliderBattery.Name = "sliderBattery";
sliderBattery.Size = new Size(716, 40);
sliderBattery.Size = new Size(706, 40);
sliderBattery.Step = 5;
sliderBattery.TabIndex = 20;
sliderBattery.Text = "sliderBattery";

View File

@@ -884,8 +884,8 @@ namespace GHelper
/// <returns>Focus state</returns>
public bool HasAnyFocus(bool lostFocusCheck = false)
{
return (fansForm != null && fansForm.ContainsFocus) ||
(extraForm != null && extraForm.ContainsFocus) ||
return (fansForm != null && fansForm.ContainsFocus) ||
(extraForm != null && extraForm.ContainsFocus) ||
(updatesForm != null && updatesForm.ContainsFocus) ||
(matrixForm != null && matrixForm.ContainsFocus) ||
this.ContainsFocus ||