Versions follow CalVer with format YYYY.0M.MICRO.
Until status changes from "Beta" to "Stable", don't expect backwards compatibility.
Action Config: specify it on a Tap or a Group, and it will be respected by all tapper functions in that Tap/Group. For now, has 2 configs:
send_interval: float
- time between keystrokes in "send" command.
send_press_duration: float
- time between key press and release in "send" command.
These can be specified per send
, otherwise inherited from Tap
,
then closest Group
and up the chain to the root
.
Force close window now accepts a delay, and tries regular close first, and only force after the delay, if window's still there.
Used mss
lib for screenshots, for speed.
conditions
now can be added as separate method to Tap
ot Group
, as opposed to args in constructor.
System tray now disappears when termination is invoked on Windows.
suppress_trigger
now accepts True/False, not just internal enum values.
.pyw
script not restarting correctly
pixel_wait_for
method in util
- Image support! Snip, search, wait for images/pixels.
- New
mouse
convenience methods to memorize position and return to it.
- Support for one-symbol text to symbol. e.g. Tap("a", "enter") is now interpreted as one symbol rather than separate letters, even without combo brackets.
- Remove keyboard symbols: "return", "win"(now "os"), "virtual alt/shift/ctrl", "numpad_separator", "pause"; change others from win32-specific to generic.
- Limited linux support: keyboard, except for language, should work for all linux OS
- Tray icon, for visibility and control
- Language support: transliterate, get and change input language
- Parent classes for SignalListener and Commander
- keyboard and mouse dataclasses
- Parent SignalListener+Commander for kb and mouse; factories; Windows impl
- Action runner
- Send Command parser
- Trigger parser
- State(logger/keeper/whatever);
- Wrapper for commanders and listeners(state keeper calls, publish event, bounce fake signal)
- SendCommandProcessor
- Tree (Tap and group) model: api and shadow
- tapper api
- SignalProcessor
- Initializer
- trigger_if - free-style conditions
- kwargs map, to make conditions for Taps much easier; TriggerConditions system
- WindowTriggerConditionsTracker
- Helper: controls, do while pressed/held, recorder
- Basic Readme