Skip to content

Commit 8243d87

Browse files
committed
2 parents 3d95fb3 + 736bead commit 8243d87

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
env:
2929
GH_TOKEN: ${{ github.token }}
3030
run: |
31-
gh release upload ${{ github.ref_name }} GHelper.zip PluginAdvancedSettings.zip
31+
gh release upload ${{ github.ref_name }} GHelper.exe GHelper.zip PluginAdvancedSettings.zip

app/AnimeMatrix/AnimeMatrixDevice.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public void SetLedPlanar(int x, int y, byte value)
278278

279279
if (x >= FirstX(y) && x < Width())
280280
SetLedLinear(RowToLinearAddress(y) - FirstX(y) + x, value);
281-
}
281+
}
282282

283283
public void SetLedDiagonal(int x, int y, byte color, int deltaX = 0, int deltaY = 0)
284284
{
@@ -287,6 +287,9 @@ public void SetLedDiagonal(int x, int y, byte color, int deltaX = 0, int deltaY
287287

288288
int plX = (x - y) / 2;
289289
int plY = x + y;
290+
291+
if (x - y == -1) plX = -1;
292+
290293
SetLedPlanar(plX, plY, color);
291294
}
292295

app/Battery/BatteryControl.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace GHelper.Battery
1+
using GHelper.Properties;
2+
3+
namespace GHelper.Battery
24
{
35
internal class BatteryControl
46
{
@@ -19,7 +21,7 @@ public static void SetBatteryLimitFull()
1921
public static void UnSetBatteryLimitFull()
2022
{
2123
AppConfig.Set("charge_full", 0);
22-
Program.settingsForm.VisualiseBatteryFull();
24+
Program.settingsForm.Invoke(Program.settingsForm.VisualiseBatteryFull);
2325
}
2426

2527
public static void AutoBattery(bool init = false)

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Huge thanks to [@IceStormNG](https://github.com/IceStormNG) 👑 for contributio
136136

137137
G-Helper is **NOT** an operating system, firmware, or driver. It **DOES NOT** "run" your hardware in real-time anyhow.
138138

139-
It's an app that lets you select one of the predefined operating modes created by Asus (and stored in BIOS) and optionally(!) set some settings that already exist on your device same as Armoury Crate can. It does it by using the Asus System Control Interface "driver" that Armoury uses for it.
139+
It's an app that lets you select one of the predefined operating modes created by manufacturer (and stored in BIOS) and optionally(!) set some settings that already exist on your device same as Armoury Crate can. It does it by using the Asus System Control Interface "driver" that Armoury uses for it.
140140

141141
If you use equivalent mode/settings as in Armoury Crate - the performance or the behavior of your device won't be different.
142142

0 commit comments

Comments
 (0)