Skip to content

Releases: schell/mogwai

v0.6.8 Copy on write element names

29 Oct 22:56
Compare
Choose a tag to compare
v0.6.8core-v0.2.6dom

Merge remote-tracking branch 'origin/main'

0.6 performance and memory updates

12 Jan 23:00
Compare
Choose a tag to compare
v0.6.3

Merge remote-tracking branch 'origin/main'

v0.6.0

06 Jan 22:14
Compare
Choose a tag to compare

Big release with a rework of the API.

  • ViewBuilder does not take a type variable

Introducing Model

06 Jan 17:18
d472f0a
Compare
Choose a tag to compare

This minor version release introduces Models, which are bits of state that automatically transmit their updates to Receivers.

With Models you can build components that track their own state with less clutter in your Component implementation. Most view updates can be driven by one or more Models and the Component::ViewMsg can be used exclusively for communication with upstream components.

v0.4.x patch releases will include an example + cookbook article about Models.