Changelog for 0.4.4

hotfix/absolute-mouse
Clive Galway 5 years ago
parent b86494316a
commit 8b3522cf1a

@ -57,6 +57,11 @@ namespace AutoHotInterception
return "OK";
}
public void SetState(bool state)
{
SetFilterState(state);
SetThreadState(state);
}
#endregion
#region Subscription Mode

@ -10,6 +10,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Removed
### Fixed
## [0.4.4] - 2019-07-09
- Added SetState to allow toggling on/off of bindings
## [0.4.3] - 2019-06-10 **EXPERIMENTAL TEST RELEASE**
- Fixed issue #39
Almost complete rewrite of mouse polling code

@ -71,7 +71,10 @@ class AutoHotInterception {
SendMouseMoveAbsolute(id, x, y) {
this.Instance.SendMouseMoveAbsolute(id, x, y)
}
*/
SetState(state){
this.Instance.SetState(state)
}
; --------------- Querying ------------------------
GetDeviceId(IsMouse, VID, PID, instance := 1) {
static devType := {0: "Keyboard", 1: "Mouse"}

Loading…
Cancel
Save