Added version info to startup log

This commit is contained in:
Mark Qvist 2024-08-17 14:23:01 +02:00
parent 51523a216d
commit a55c8a2425
2 changed files with 5 additions and 1 deletions

View file

@ -202,6 +202,8 @@ class SidebandApp(MDApp):
else:
self.sideband = SidebandCore(self, config_path=self.config_path, is_client=False, verbose=(args.verbose or __debug_build__))
self.sideband.version_str = "v"+__version__+" "+__variant__
self.set_ui_theme()
self.font_config()
self.update_input_language()
@ -5520,6 +5522,7 @@ def run():
is_daemon=True
)
sideband.version_str = "v"+__version__+" "+__variant__
sideband.start()
while True:
time.sleep(5)