Releases: boppreh/keyboard
Releases · boppreh/keyboard
v0.10.0
- [OS X] Added experimental OS X support (thanks @glitchassassin!).
- [Windows] Fixed error on fractional
mouse.wheel()
(thanks @bobonthenet!). - [Windows] Fixed name for arrow keys` virtual key codes.
- [Windows] Make backend easier to use in other projects (e.g.
_winkeyboard.prepare_intercept
). - [Linux] Fixed mouse support in Mint VirtualBox guest (thanks @foodforarabbit!).
- [All] Added mouse alias
hold = press
(thanks @DanMossa!). - [All] Added
mouse.drag
. - [All] Added examples on how to use the library.
- [All] Update docs to mention how to differentiate key presses and releases (thanks @TrakJohnson!).
- [All] Change the default value of
add_abbreviation(..., match_suffix)
.
v0.9.12
- [Windows] Fixed some incorrect key names (e.g. enter as '\r', and left keys reported as 'right ...')
- [Python2]
long
scan codes no longer crash thematches
function. - [All] add
read_key
function, which blocks and returns the next event. - [All] Added makefile.
v0.9.11
v0.9.10
- [Windows] Add
suppress
parameter to hotkeys to block the combination from being sent to other programs. - [Windows] Better key mapping for common keys (now using Virtual Key Codes when possible).
- [Windows] Normalize numpad and key code names.
- [Linux] Errors about requiring sudo are now thrown in the main thread, making them catchable.
- [All]
wheel
method in mouse module.