Skip to content

Commit

Permalink
Bumped version to 0.67
Browse files Browse the repository at this point in the history
  • Loading branch information
Serge committed May 22, 2023
1 parent 252cc9d commit 9e6ca7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/AsusACPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public void RunListener()
data[1] = BitConverter.GetBytes(eventHandle.ToInt32())[1];

result = Control(0x222400, data, outBuffer);
Debug.WriteLine(result + ":" + BitConverter.ToString(data) + "|" + BitConverter.ToString(outBuffer));
Logger.WriteLine("ACPI " + result + ":" + BitConverter.ToString(data) + "|" + BitConverter.ToString(outBuffer));

while (true)
{
Expand Down
2 changes: 2 additions & 0 deletions app/AsusUSB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ private static IEnumerable<HidDevice> GetHidDevices(int[] deviceIds, int minInpu
Logger.WriteLine("Input Events" + device.Capabilities.FeatureReportByteLength + "|" + device.Capabilities.InputReportByteLength + device.Description + device.DevicePath);
}

if (input is null) Logger.WriteLine("Input device not found");

return input;
}

Expand Down
2 changes: 1 addition & 1 deletion app/GHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<AssemblyVersion>0.66</AssemblyVersion>
<AssemblyVersion>0.67</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 9e6ca7c

Please sign in to comment.