Changelog
0.9.1 (2017-08-28)
package.json
(this prevented most bundles from loading - whoops!)<a name="0.9.0"></a>
Changelog
0.8.6 (2017-01-29)
dialog-dismiss
and dialog-confirm
buttons sometimes not working (5f06166)undefined
would not emit change
events after declaration (a218dbe), closes #228/graphics
routes (#249) (975c17f)nodecg.log.error
to Rollbar, if Rollbar is enabled (7b19eaa)<a name="0.8.5"></a>
Changelog
0.8.1 (2016-06-10)
<a name="0.8.0"></a>
Changelog
0.8.0 (2016-05-06)
config.rollbar.enabled
before activating rollbar (cffb1a3)replicants: The order of Replicant change
event arguments has been swapped. newVal
is now the first argument, oldVal
is the second argument. Be sure to update all of your change
event handlers accordingly.
To migrate, follow the example below:
Before:
```
myRep.on('change', function (oldVal, newVal) {
// do work
});
```
After:
```
myRep.on('change', function (newVal, oldVal) {
// do work
});
```
replicants: The third Replicant change
event argument has been changed. Previously it was changes
, an array of Object.observe change records. It is now operations
, an array of operation records in NodeCG's internal format. This format is likely to continue changing as we figure out what works best. Any further changes to this format will be considered breaking.
replicants: WeakMap and Object.observe shims have been removed. This probably won't affect anyone, as any browser that supports Proxy also supports WeakMap, but be aware of it.
panels: the routes for panels are now /panel/:bundleName/:panelFile
as opposed to /panel/:bundleName/:panelName
.
sounds: uploads are now called assets, and their manifest format has changed
<a name="0.7.7"></a>
Changelog
0.7.6 (2016-03-31)
dialog-opened
event in a dialog's document
when it opens (bb527eb)<a name="0.7.5"></a>
Changelog
0.7.5 (2016-03-13)
<a name="0.7.4"></a>