Skip to content

Commit

Permalink
update version number to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LupaDevStudio committed May 31, 2024
1 parent 56d76a1 commit a4a4fbb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions screens/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion tools/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

### Version ###

__version__ = "0.1.3"
__version__ = "1.0.0"

### Mode ###

Expand Down

0 comments on commit a4a4fbb

Please sign in to comment.