Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,13 @@ def validate_config(self, config: Dict[str, Any]) -> List[str]:
if cat not in CATEGORIES:
errors.append(f"Unknown category '{cat}'")

for key in ("rotate_seconds", "refresh_seconds"):
value = config.get(key, 60)
if not isinstance(value, int) or value < 60:
errors.append(f"{key} must be an integer >= 60")
rotate_value = config.get("rotate_seconds", 600)
if not isinstance(rotate_value, int) or rotate_value < 60:
errors.append("rotate_seconds must be an integer >= 60")

refresh_value = config.get("refresh_seconds", 300)
if not isinstance(refresh_value, int) or refresh_value < 30:
errors.append("refresh_seconds must be an integer >= 30")

message = config.get("message", "") or ""
if len(message) > 22:
Expand Down
Binary file added docs/board-ally.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-arc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-diagonal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-equality.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-heart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-progress.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-sparkle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/board-trans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 42 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,49 @@
"screenshots": [
{
"src": "docs/board-display.png",
"alt": "Pride art displayed on a Vestaboard",
"caption": "Rainbow Pride flag rendered on the flagship 6x22 display",
"alt": "Rainbow Pride flag on a Vestaboard",
"caption": "Rainbow Pride flag — six stripes from red to violet",
"primary": true
},
{
"src": "docs/board-trans.png",
"alt": "Trans Pride flag on a Vestaboard",
"caption": "Trans Pride flag — blue / white / red / white / blue"
},
{
"src": "docs/board-progress.png",
"alt": "Progress Pride base flag on a Vestaboard",
"caption": "Progress Pride base flag (chevron overlays land in v0.3)"
},
{
"src": "docs/board-ally.png",
"alt": "Ally flag on a Vestaboard",
"caption": "Ally flag — black/white stripes with a centered rainbow pyramid"
},
{
"src": "docs/board-heart.png",
"alt": "Rainbow Heart on a Vestaboard",
"caption": "Rainbow Heart — red apex fading to violet point on black"
},
{
"src": "docs/board-diagonal.png",
"alt": "Rainbow diagonal pattern on a Vestaboard",
"caption": "Rainbow Diagonal — diagonal sweep across the spectrum"
},
{
"src": "docs/board-sparkle.png",
"alt": "Rainbow Sparkle on a Vestaboard",
"caption": "Rainbow Sparkle — slowly-evolving sparkle field, one tile per 30s"
},
{
"src": "docs/board-arc.png",
"alt": "Rainbow Arc pyramid on a Vestaboard",
"caption": "Rainbow Arc — centered pyramid bands, red on top"
},
{
"src": "docs/board-equality.png",
"alt": "Equality symbol on a Vestaboard",
"caption": "Equality — two yellow bars on a blue field"
}
],
"demos": [
Expand Down
Loading