2019-10-23 06:19:32 +08:00
|
|
|
### Changes
|
|
|
|
|
|
|
|
* Mithril
|
|
|
|
- See changes from v0.2.x @ https://mithril.js.org/migration-v02x.html
|
|
|
|
- Kept `m.prop` and `m.withAttr`
|
|
|
|
- Actual Promises are used now instead of `m.deferred`
|
|
|
|
* Component
|
|
|
|
- Use new Mithril lifecycle hooks (`component.config` is gone)
|
2020-01-06 05:57:48 +08:00
|
|
|
- When implementing your own, you *must* call `super.<hook>(vnode)` to update `this.attrs`
|
2019-10-23 06:19:32 +08:00
|
|
|
- `component.render` is gone
|
|
|
|
* Application
|
|
|
|
- New different methods
|
|
|
|
- `app.bus` for some event hooking
|
|
|
|
* Translator
|
|
|
|
- Added `app.translator.transText`, automatically extracts text from `translator.trans` output
|
2020-01-04 05:28:15 +08:00
|
|
|
* Utils
|
|
|
|
- Changed `computed` util to require multiple keys to be passed as an array
|
2020-01-06 05:57:48 +08:00
|
|
|
- `SubtreeRetainer` now has an `update` method instead of `retain`, and its output is used in `onbeforeupdate` lifecycle hook
|
2019-10-23 06:19:32 +08:00
|
|
|
|
|
|
|
#### Forum
|
|
|
|
* Forum Application
|
|
|
|
- Renamed to `Forum`
|
|
|
|
- `app.search` is no longer global, extend using `extend`
|