Skip to content

Latest commit

 

History

History
72 lines (41 loc) · 1.65 KB

CHANGELOG.md

File metadata and controls

72 lines (41 loc) · 1.65 KB

0.2.1 (2016-03-07)

Bug Fixes

  • dialog: fix manifest path to dialog (a7582d0)

0.2.0 (2016-03-07)

Features

  • slack: add Slack integration (d77957e)

BREAKING CHANGES

  • slack: Config format changed.

    To migrate the config follow the example below:

    Before:

     {
       "appToken": "",
       "deliveryToken": ""
     }

    After:

     {
       pushover: {
         "enabled": true,
         "appToken": "",
         "deliveryToken": ""
       }
     }

    This is due to the addition of Slack support, which requires it's own configuration, therefore each service has an object inside the configuration file.

0.1.1 (2016-02-20)

Bug Fixes

  • button: fix button not showing up when login security was disabled (9abcc65)
  • pushover: revert to previous pushover response handling behavior (81690e2)
  • toast: use a dedicated instance of nodecg-toast (f48dfcc)

Features

  • configschema: add config validation via a configschema.json (1e9a87e)

0.1.0 (2015-10-14)