1 Commits

Author SHA1 Message Date
bc39e7a50d Version bump
I had forgotten to install the kivymd dependency in the python install
through wine, so that was missing leading to a non-functional build.
Fixed now
2025-06-30 08:04:51 +02:00
3 changed files with 14 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ print(
━━━━━━━━━━━┏━┛┃━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┃┃━━┃┃━━
━━━━━━━━━━━┗━━┛━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┗┛━━┗┛━━
Version 3.2.0
Version 3.2.1
=> Initializing....
"""
@@ -186,7 +186,7 @@ class BiogasControllerApp(MDApp):
print("\n", "-" * 20, "\n")
self.icon = "./BiogasControllerAppLogo.png"
self.title = "BiogasControllerApp-V3.2.0"
self.title = "BiogasControllerApp-V3.2.1"
self.screen_manager.add_widget(HomeScreen(com, name="home"))
self.screen_manager.add_widget(MainScreen(com, name="main"))
self.screen_manager.add_widget(ProgramScreen(com, name="program"))
@@ -204,5 +204,11 @@ if __name__ == "__main__":
set_verbosity(verbose)
# Start the application
BiogasControllerApp().run()
try:
BiogasControllerApp().run()
except Exception as e:
print("Failed to run BiogasControllerApp!")
if verbose:
print(e)
time.sleep(5)
print("\n => Exiting!")

View File

@@ -1,4 +1,7 @@
***CHANGELOG***
V3.2.1
- Fix issue with Windows distributable: kivymd not found
V3.2.0
- Fixed a bug with comport assignment
- Refactored some naming

View File

@@ -40,7 +40,7 @@
on_release: root.quit()
MDLabel:
text: "You are running version V3.2.0"
text: "You are running version V3.2.1"
font_size: 13
pos_hint: {"y": -0.45, "x":0}
halign: 'center'