Skip to content

0.2.1

Compare
Choose a tag to compare
@bodil bodil released this 24 Feb 15:28
· 44 commits to master since this release
vgtk-v0.2.1
4011eb2

ADDED

  • A new function vgtk::start() has been added to initialise an Application component without starting the GTK event loop. It has the added benefit of returning a Scope which you can use to communicate with your component from async jobs other than the standard UpdateAction::defer() mechanism.
  • UpdateAction now has a From implementation for Future<Output = Component::Message>, allowing you to return async {...}.into() from your update function instead of the slightly more verbose UpdateAction::defer(async {...}).