14
0
forked from pool/python-pynput

- update to 1.8.1:

* Remove incorrectly merged line for the *Xorg* backend.
  * Let events know about the new ``injected`` parameter.
  * Add a flag to callbacks to allow detecting injected input
    events.
  * Add ``media_stop`` key for *macOS*. Thanks to *laura-3*!
  * Add ``eject`` key for *macOS*. Thanks to *DiMNDev*!
  * Rename method for listeners to not conflict with new
    ``threading.Thread`` field.
  * Small corrections to the documentation.
  * Handle explicit timeout when calling ``join`` on listeners.
  * Correct regression in hot key handling for special keys.
  * Reverted changes to lazy loading of ``CoreFoundation`` and
    ``Quartz``, since this still does not appear to work.
  * Let the type of values in ``Key`` be ``KeyCode`` so that type
    checkers are not confused.
  * Do not crash in ``__del__`` on *Xorg* if display creation fails.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pynput?expand=0&rev=9
This commit is contained in:
2025-04-28 14:06:05 +00:00
committed by Git OBS Bridge
parent 9f2674e352
commit 2420141252
4 changed files with 26 additions and 5 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Mon Apr 28 14:04:49 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 1.8.1:
* Remove incorrectly merged line for the *Xorg* backend.
* Let events know about the new ``injected`` parameter.
* Add a flag to callbacks to allow detecting injected input
events.
* Add ``media_stop`` key for *macOS*. Thanks to *laura-3*!
* Add ``eject`` key for *macOS*. Thanks to *DiMNDev*!
* Rename method for listeners to not conflict with new
``threading.Thread`` field.
* Small corrections to the documentation.
* Handle explicit timeout when calling ``join`` on listeners.
* Correct regression in hot key handling for special keys.
* Reverted changes to lazy loading of ``CoreFoundation`` and
``Quartz``, since this still does not appear to work.
* Let the type of values in ``Key`` be ``KeyCode`` so that type
checkers are not confused.
* Do not crash in ``__del__`` on *Xorg* if display creation fails.
-------------------------------------------------------------------
Wed Aug 16 09:51:47 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>