Skip to content

Commit 473120d

Browse files
committed
feat: Introduce a settings GUI for overlay configuration and key lane recording, and update the startup message.
1 parent ac01f24 commit 473120d

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ build/
77
dist/
88
*.spec
99
*.zip
10-
RainingKeysPython-debug
10+
RainingKeysPython-debug
11+
RELEASE_NOTES.md

core/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class SettingsWindow(QWidget):
88
def __init__(self, settings_manager: SettingsManager):
99
super().__init__()
1010
self.settings = settings_manager
11-
self.setWindowTitle("RainingKeys Config")
11+
self.setWindowTitle(f"RainingKeys Config v{Config.VERSION}")
1212
self.resize(300, 350)
1313

1414
# Recording State

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main():
3434
input_mon.raw_key_pressed.connect(settings_win.handle_raw_key)
3535
input_mon.start()
3636

37-
print("RainingKeys started.")
37+
print(f"RainingKeys v{Config.VERSION} started.")
3838
print(" - Overlay active.")
3939
print(" - Settings window open.")
4040
print("Press Ctrl+C in terminal to stop.")

0 commit comments

Comments
 (0)