Async Tkinter Loop Versions Save

Asynchronous mainloop implementation for tkinter. Makes it possible to use async functions as event handlers and widget commands.

0.9.3

6 months ago

What's Changed

Updates:

New Contributors

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.9.2...0.9.3

0.9.2

8 months ago

What's Changed

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.9.1...0.9.2

0.9.1

9 months ago

What's Changed

  • Mostly, technical update: minimal Python version changed from 3.8.1 to 3.8

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.9.0...0.9.1

0.9.0

9 months ago

What's Changed

The version number 0.9.0 doesn't mean that the next version will be 1.0.0, rather it will be 0.10.0.

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.8.1...0.9.0

0.8.1

1 year ago

What's Changed

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.8.0...0.8.1

0.8.0

1 year ago

What's Changed

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.7.0...0.8.0

0.7.0

1 year ago
  • AsyncTkLoop class replaced with functions;
  • added documentation strings to functions.

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.6.0...0.7.0

0.6.0

1 year ago
  • .destroy() method of the main window now kills the application (but .quit() doesn't);
  • fixed a couple of DeprectionWarnings in the examples and the async_tkinter_loop.py itself.

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.5.0...0.6.0

0.5.0

1 year ago
  • Type annotations are improved
  • The package converted into a single module
  • async_handle converted into a proper decorator
  • Code style improvements

Full Changelog: https://github.com/insolor/async-tkinter-loop/compare/0.3.0...0.5.0

0.2.0

2 years ago
  • Improved handling of the application closing (avoid using .protocol("WM_DELETE_WINDOW", ...) to not interfere with the user's code)
  • Unified two separate wrapper functions (async_command and async_event_handler) into a single async_handler function
  • Added examples, tests and documentation on usage of the async_handler as a decorator
  • Last release with Python 3.6 support