Skip to content

Commit

Permalink
Changelog for 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
evilC committed Jul 9, 2019
1 parent b864943 commit 8b3522c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions C#/AutoHotInterception/Manager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ public string OkCheck()
return "OK";
}

public void SetState(bool state)
{
SetFilterState(state);
SetThreadState(state);
}
#endregion

#region Subscription Mode
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion Lib/AutoHotInterception.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit 8b3522c

Please sign in to comment.