- fix: add `mainthread_if_needed` decorator to the remaining subscription handler and item selectors
0.13.13
- refactor: replace all `kivy.clock.mainthread` decorators with in-house `mainthread_if_needed` which checks the current thread and applies `mainthread` only if not already in the main thread, this is to fix the weird render delay introduced by chain of unnecessary scheduled `mainthread`s
0.13.12
- refactor: use `kivy.clock.mainthread` wherever needed instead of blindly wrapping all subscriptions of `process_subscribable_value`
0.13.11
- refactor: wrap subscriptions done by `process_subscribable_value` in `kivy.clock.mainthread` as they may be coming from other threads
0.13.10
- fix: closing an application now works even if the application is not the root of its hierarchy
0.13.9
- refactor: set parent of `StackApplicationItem`s like `StackMenuItem`s