Skip to content

Releases: britzl/monarch

Monarch 3.4.5

27 Jan 11:17

Choose a tag to compare

FIX: Fixed warnings about two missing variables (had no actual impact on the behaviour of the code)

Monarch 3.4.4

13 Jan 18:42

Choose a tag to compare

FIX: Transitions were not replaced if a new one was created for the same transition event. Thanks Sergey.

Monarch 3.4.3

19 Aug 12:53

Choose a tag to compare

FIX: A screen added with no_stack should not affect the stack when hidden using monarch.hide().

Monarch 3.4.2

19 Aug 12:37

Choose a tag to compare

FIX: Some monarch callbacks could be invoked more than once (for example the monarch.back() callback)

Monarch 3.4.1

01 Jul 21:56

Choose a tag to compare

FIX: Do not delay transitions by a frame when showing a new view. This will avoid a one frame flicker where the screen would be rendered in its initial position before the transition starts.

Monarch 3.4.0

24 Jun 05:46
20cf731

Choose a tag to compare

CHANGE: Screens are not hidden until the next screen is loaded and ready to be shown. This will avoid flicker if the next screen takes a long time to load.

Monarch 3.3.0

14 Feb 10:55
a19bdd7

Choose a tag to compare

NEW: monarch.is_popup(id)

Monarch 3.2.2

23 Nov 07:33
03baa3e

Choose a tag to compare

FIX: The editor script could target the wrong file and mess up the content.

Monarch 3.2.1

28 May 15:19
00808c0

Choose a tag to compare

FIX: Improved behaviour of monarch.replace() and monarch.show() with pop option. Thanks @dapetcu21 !

Monarch 3.2.0

20 May 13:40
4ad86d4

Choose a tag to compare

NEW: Added monarch.replace(screen_id, [options], [data], [callback]) which will replace the topmost screen with a new screen after transition out has completed
NEW: Added a new option sequential to the show() options. If the sequential flag is set Monarch will start loading the screen only after the previous screen finished transitioning out.