From a4a4fbb22f97f82350db7ca873abe6c516f6d026 Mon Sep 17 00:00:00 2001 From: LupaDevStudio Date: Fri, 31 May 2024 09:08:50 +0200 Subject: [PATCH] update version number to 1.0.0 --- screens/home.py | 14 +++++++------- tools/constants.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/screens/home.py b/screens/home.py index 8a0dd8b..06b4596 100644 --- a/screens/home.py +++ b/screens/home.py @@ -47,7 +47,7 @@ def on_enter(self, *args): current_music = USER_DATA.settings["current_music"] if music_mixer.musics[current_music].state == "stop": music_mixer.play(current_music, loop=True) - + today_date = datetime.today().strftime('%m/%d/%Y') if USER_DATA.ads["current_day_date"] != today_date: USER_DATA.ads["current_day_date"] = today_date @@ -56,12 +56,12 @@ def on_enter(self, *args): if not USER_DATA.ads["has_seen_daily_wheel"]: USER_DATA.ads["has_seen_daily_wheel"] = True - popup = DailyWheelPopup( - font_ratio=self.font_ratio, - primary_color=self.primary_color, - secondary_color=self.secondary_color - ) - popup.open() + # popup = DailyWheelPopup( + # font_ratio=self.font_ratio, + # primary_color=self.primary_color, + # secondary_color=self.secondary_color + # ) + # popup.open() USER_DATA.save_changes() return super().on_enter(*args) diff --git a/tools/constants.py b/tools/constants.py index 3a4d916..0e1a3da 100644 --- a/tools/constants.py +++ b/tools/constants.py @@ -50,7 +50,7 @@ ### Version ### -__version__ = "0.1.3" +__version__ = "1.0.0" ### Mode ###