diff --git a/Cargo.lock b/Cargo.lock index 5773c7f..9ce349f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -214,7 +214,7 @@ dependencies = [ [[package]] name = "qmk_hid" -version = "0.1.6" +version = "0.1.7" dependencies = [ "clap", "hidapi", diff --git a/Cargo.toml b/Cargo.toml index 6e4f906..efaee06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qmk_hid" -version = "0.1.6" +version = "0.1.7" edition = "2021" license = "BSD-3-Clause" description = "Commandline tool to interact with QMK devices via their raw HID interface" diff --git a/qmk_gui.py b/qmk_gui.py index f6db902..b3f0d8c 100755 --- a/qmk_gui.py +++ b/qmk_gui.py @@ -16,6 +16,7 @@ # - Show connected devices # - Get firmware version +PROGRAM_VERSION = "0.1.7" FWK_VID = 0x32AC QMK_INTERFACE = 0x01 @@ -180,6 +181,7 @@ def main(devices): [sg.HorizontalSeparator()], [sg.Text("Save Settings")], [sg.Button("Save", k='-SAVE-'), sg.Button("Clear EEPROM", k='-CLEAR-EEPROM-')], + [sg.Text(f"Program Version: {PROGRAM_VERSION}")], ] window = sg.Window("QMK Keyboard Control", layout)