Skip to content

Commit

Permalink
Version 1.0.1 - Fixed Windows 10 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
centomila committed Nov 14, 2024
1 parent 3550914 commit 6a6350a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,10 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file

If you find this tool useful, consider [buying me a coffee](https://centomila.com/software/stupid-chord-generator/).

For more information and updates, visit [https://centomila.com/software/stupid-chord-generator/](https://centomila.com/software/stupid-chord-generator/).
For more information and updates, visit [https://centomila.com/software/stupid-chord-generator/](https://centomila.com/software/stupid-chord-generator/).

## Change Log

* **1.0.1** - Fixed a bug that was causing an error "_This is supported starting with Windows 11 Build 22000_" on Windows 10 and earlier Windows 11 versions. - Thanks to the Reddit user _Complete-Log6610_ on _/r/Bitwig_ for reporting the issue.

* 1.0.0 - Initial release
2 changes: 1 addition & 1 deletion src/GlobalVars.ahk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Requires AutoHotkey v2.0

APP_NAME := "Stupid Chord Generator"
APP_VERSION := "1.0.0"
APP_VERSION := "1.0.1"

APP_NAME_OSD := "Stupid Chord Generator OSD"

Expand Down
5 changes: 4 additions & 1 deletion src/TopGui.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ BuildTopOSDGui() {
topGuiOSDButtons.SetDarkTitle()
topGuiOSDButtons.SetDarkMenu()
topGuiOSDButtons.BackColor := 0x202020
topGuiOSDButtons.SetWindowColor(, topGuiOSDButtons.BackColor, topGuiOSDButtons.BackColor)
if (VerCompare(A_OSVersion, "10.0.22600") >= 0) {
topGuiOSDButtons.SetWindowColor(, topGuiOSDButtons.BackColor, topGuiOSDButtons.BackColor)
}

topGuiOSDButtons.MarginX := 10
topGuiOSDButtons.MarginY := 10

Expand Down

0 comments on commit 6a6350a

Please # to comment.