try font change setting

This commit is contained in:
Chuck
2025-07-23 12:04:19 -05:00
parent e4294a5e38
commit f3f50b87af
3 changed files with 10723 additions and 722 deletions

9993
assets/fonts/ic8x8u-old.bdf Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -349,6 +349,14 @@ class OfTheDayManager:
logger.debug("OfTheDayManager is disabled, skipping item advance")
return
# Check if internal rotation should happen first
now = time.time()
if now - self.last_category_rotation_time > self.display_rotate_interval:
# Let the internal rotation handle it
logger.debug("Internal rotation timer triggered, skipping external advance")
return
# Only advance if internal rotation hasn't happened recently
category_names = list(self.current_items.keys())
if not category_names:
return