You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scoreboard pulls the MLB.com editorial blurb (`headline — subhead`) from the `game_content` endpoint and appends it to the scrolling text on the pregame and postgame screens.
104
+
105
+
**Recap** blurbs appear on Final games and are usually published within ~30 minutes of the last out — most games get one.
106
+
107
+
**Preview** blurbs are wired up the same way, but MLB only rarely publishes editorial previews for regular-season games. Expect them mostly on playoff or nationally-broadcast matchups; the feature stays silent the rest of the time.
108
+
109
+
The behavior can be turned off by setting `editorial_blurb` to `false` in your `config.json`.
110
+
101
111
### Division Standings
102
112
It can display standings for the provided division. Since the 32x32 board is too small to display wins and losses together, the wins and losses are alternated on the board every 5 seconds. You can also specify "NL Wild Card" or "AL Wild Card" as a 'division' to see the top 5 teams in each league's wild card race.
103
113
@@ -289,6 +299,7 @@ See [`config.schema.json`](config.schema.json) for a schema for configuration fi
289
299
"scrolling_speed" Integer Sets how fast the scrolling text scrolls. Supports an integer between 0 and 6.
290
300
"sync_delay_seconds" Integer Delays game updates to sychronize with broadcasts. May introduce delay before rendering live games. Must be at least 0, defaults to 0 (no delay).
291
301
"api_refresh_rate" Integer Refresh the game data from the MLB API every X seconds. Must be at least 3, default is 10.
302
+
"editorial_blurb" Bool Append the MLB.com editorial blurb (headline + subhead) to the scrolling text on pregame and postgame screens. Recaps are routinely published; previews are rare. See the Editorial Blurbs feature section.
292
303
"debug" Bool Game and other debug data is written to your console.
293
304
"demo_date" String A date in the format YYYY-MM-DD from which to pull data to demonstrate the scoreboard. A value of `false` will disable demo mode.
0 commit comments