MLB-LED-Scoreboard / mlb-led-scoreboard

An LED scoreboard for Major League Baseball :baseball:
GNU General Public License v3.0
590 stars 105 forks source link

Deprecate rotation rates as single Float #427

Closed ty-porter closed 1 year ago

ty-porter commented 1 year ago

With the new config updater, there's a chance to overwrite this value with schema defaults. This PR formally deprecates that functionality and provides an upgrade path to the full dict format.

Deprecates:


{
  "rotation": {
    "rates": 15.0
  }
}

Converts to:

{
  "rotation": {
    "rates": {
    "live": 15.0,
    "final": 15.0,
    "pregame": 15.0
    }
}