Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ curl -X POST http://your-pi-ip:5000/api/v3/plugins/install \
| Plugin | Description | Preview |
|--------|-------------|---------|
| [News Ticker](./plugins/news/) | RSS news headlines from ESPN, NCAA, custom sources | |
| [Of The Day](./plugins/of-the-day/) | Daily quotes, Bible verses, word of the day | |
| [Of The Day](./plugins/of-the-day/) | Daily quotes, Bible verses, word of the day | <a href="./plugins/of-the-day/"><img src="./docs/assets/of-the-day/hero.png" width="240" alt="of-the-day on an LED panel"></a> |

### Integrations (2)

Expand Down
Binary file added docs/assets/of-the-day/auto-fit.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/assets/of-the-day/categories.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/assets/of-the-day/customization.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/assets/of-the-day/hero.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/assets/of-the-day/panel-sizes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
277 changes: 277 additions & 0 deletions docs/assets/of-the-day/shots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,277 @@
{
"plugin": "of-the-day",
"defaults": {
"width": 128,
"height": 32,
"scale": 6,
"freeze_time": "2026-09-02T16:00:00+00:00",
"config": {
"enabled": true,
"categories": {
"word_of_the_day": {
"enabled": true,
"data_file": "of_the_day/word_of_the_day.json",
"display_name": "Word of the Day"
}
},
"category_order": [
"word_of_the_day"
]
}
},
"shots": [
{
"name": "hero",
"height": 64,
"scale": 6
},
{
"name": "cat-english",
"config": {
"categories": {
"word_of_the_day": {
"enabled": true,
"data_file": "of_the_day/word_of_the_day.json",
"display_name": "Word of the Day"
}
},
"category_order": [
"word_of_the_day"
]
},
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "cat-slovenian",
"config": {
"categories": {
"slovenian_word_of_the_day": {
"enabled": true,
"data_file": "of_the_day/slovenian_word_of_the_day.json",
"display_name": "Slovenian Word of the Day"
}
},
"category_order": [
"slovenian_word_of_the_day"
]
},
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "fit-on",
"config": {
"auto_fit_text": true,
"customization": {
"body_text": {
"font_size": 12
}
}
},
"standalone": false,
"height": 64,
"scale": 6
},
{
"name": "fit-off",
"config": {
"auto_fit_text": false,
"customization": {
"body_text": {
"font_size": 12
}
}
},
"standalone": false,
"height": 64,
"scale": 6
},
{
"name": "col-default",
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "col-amber",
"config": {
"customization": {
"title_text": {
"text_color": [
255,
176,
0
]
},
"body_text": {
"text_color": [
200,
130,
0
]
}
}
},
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "col-cyan",
"config": {
"customization": {
"title_text": {
"text_color": [
0,
229,
255
]
},
"body_text": {
"text_color": [
120,
180,
200
]
}
}
},
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "col-big",
"config": {
"customization": {
"title_text": {
"font_size": 10
},
"body_text": {
"font_size": 8
}
}
},
"height": 64,
"scale": 6,
"standalone": false
},
{
"name": "size-64x32",
"width": 64,
"height": 32,
"scale": 8,
"standalone": false
},
{
"name": "size-128x32",
"width": 128,
"height": 32,
"scale": 8,
"standalone": false
},
{
"name": "size-128x64",
"width": 128,
"height": 64,
"scale": 8,
"standalone": false
},
{
"name": "size-256x32",
"width": 256,
"height": 32,
"scale": 4,
"standalone": false
}
],
"composites": [
{
"name": "categories",
"columns": 1,
"cells": [
{
"shot": "cat-english",
"label": "word_of_the_day",
"sublabel": "the bundled English list, 365 entries"
},
{
"shot": "cat-slovenian",
"label": "slovenian_word_of_the_day",
"sublabel": "the bundled Slovenian list"
}
]
},
{
"name": "auto-fit",
"columns": 1,
"cells": [
{
"shot": "fit-on",
"label": "auto_fit_text: true",
"sublabel": "the default; body font_size 12 is stepped down until the whole definition fits"
},
{
"shot": "fit-off",
"label": "auto_fit_text: false",
"sublabel": "held at 12, so the text is cut to the lines that fit and ellipsized"
}
]
},
{
"name": "customization",
"columns": 2,
"cells": [
{
"shot": "col-default",
"label": "The defaults",
"sublabel": "white title, grey body"
},
{
"shot": "col-amber",
"label": "Amber",
"sublabel": "title_text.text_color and body_text.text_color"
},
{
"shot": "col-cyan",
"label": "Cyan",
"sublabel": ""
},
{
"shot": "col-big",
"label": "Larger sizes",
"sublabel": "title_text.font_size 10, body_text.font_size 8"
}
]
},
{
"name": "panel-sizes",
"columns": 1,
"cells": [
{
"shot": "size-64x32",
"label": "64 x 32",
"sublabel": "only the title and a fragment fit"
},
{
"shot": "size-128x32",
"label": "128 x 32",
"sublabel": "title plus one truncated body line"
},
{
"shot": "size-128x64",
"label": "128 x 64",
"sublabel": "the definition wraps and fits in full"
},
{
"shot": "size-256x32",
"label": "256 x 32",
"sublabel": "a long chain; width buys a longer body line"
}
]
}
]
}
4 changes: 2 additions & 2 deletions plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -653,10 +653,10 @@
"plugin_path": "plugins/of-the-day",
"stars": 0,
"downloads": 0,
"last_updated": "2026-08-06",
"last_updated": "2026-09-02",
"verified": true,
"screenshot": "",
"latest_version": "1.4.1"
"latest_version": "1.4.2"
},
{
"id": "olympics",
Expand Down
Loading
Loading