You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a bug with back/forward routing to the landing page (#296).
Deprecated Init struct, replacing it with BeforeMount and AfterMount structs to
better denote state before and after mounting the App occurs.
Added a new function builder which replaces build as part of deprecating Init.
Added a new function build_and_start which replaces finish as part of deprecating Init.
Added IntoInitand IntoAfterMount traits. It is possible to use these
in place of a closure or function to produce the corresponding Init and AfterMount structs.
Messages sent from IntoAfterMount will now be run after the routing message.
Added example app_builder.
events::Listener is included in prelude.
()s have been replaced with structs - e.g. GMs = () => GMs = UndefinedGMs.
WindowEvents alias changed to WindowEventsFn for consistency with other *Fn.