diff --git a/biogascontrollerapp.py b/biogascontrollerapp.py index d701d37..df9e6e4 100644 --- a/biogascontrollerapp.py +++ b/biogascontrollerapp.py @@ -4,7 +4,7 @@ # ╰────────────────────────────────────────────────╯ # # So you would like to read the source code? Nice! -# +# # If you simply want to know how the connection stuff works, then head to # the util/ folder and check out the com.py 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!") diff --git a/changelog b/changelog index acf8f74..c06be17 100644 --- a/changelog +++ b/changelog @@ -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 diff --git a/gui/home/home.kv b/gui/home/home.kv index e3c55a8..084125e 100644 --- a/gui/home/home.kv +++ b/gui/home/home.kv @@ -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'