Skip to content

Commit b66bde0

Browse files
Update the docs for version 5.2.1
1 parent 315875d commit b66bde0

File tree

6 files changed

+33
-11
lines changed

6 files changed

+33
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# SharpHook Changelog
22

3+
## [v5.2.1](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v5.2.1) (January 3, 2024)
4+
5+
- `HookEventArgs.IsEventSimulated` has been fixed - previously it always returned `true`.
6+
7+
- `kCGEventTapDisabledByTimeout` doesn't break the global hook on macOS anymore.
8+
9+
- The packages are now marked as AOT-compatible.
10+
11+
- libuiohook was updated to commit
12+
[7dbdc09](https://github.com/TolikPylypchuk/libuiohook/commit/7dbdc09cd9d5a8ef5be5bb005e853b70ce28d67f).
13+
314
## [v5.2.0](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v5.2.0) (December 16, 2023)
415

516
- Simulated events can now be distinguished from real events using the `HookEventArgs.IsEventSimulated` property.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ dotnet add package SharpHook.Reactive
1616

1717
## Upgrading
1818

19-
A [migration guide](https://sharphook.tolik.io/v5.2.0/articles/migration.html) is available for upgrading between major
19+
A [migration guide](https://sharphook.tolik.io/v5.2.1/articles/migration.html) is available for upgrading between major
2020
versions.
2121

2222
## Docs
2323

2424
You can find more information (including the API reference) in the docs at
2525
[https://sharphook.tolik.io](https://sharphook.tolik.io). Or if you need a specific version:
2626

27-
- [v5.2.0](https://sharphook.tolik.io/v5.2.0)
27+
- [v5.2.1](https://sharphook.tolik.io/v5.2.1) | [v5.2.0](https://sharphook.tolik.io/v5.2.0)
2828
- [v5.1.2](https://sharphook.tolik.io/v5.1.2) | [v5.1.1](https://sharphook.tolik.io/v5.1.1) | [v5.1.0](https://sharphook.tolik.io/v5.1.0)
2929
- [v5.0.0](https://sharphook.tolik.io/v5.0.0)
3030
- [v4.2.1](https://sharphook.tolik.io/v4.2.1) | [v4.2.0](https://sharphook.tolik.io/v4.2.0)
@@ -87,7 +87,7 @@ the accessibility API be enabled for the application if it wants to create a glo
8787
[may be coming](https://github.com/kwhat/libuiohook/issues/100), but it's not yet here.
8888

8989
More info on OS support can be found in
90-
[an article on OS-specific constraints](https://sharphook.tolik.io/v5.2.0/articles/os-constraints.html).
90+
[an article on OS-specific constraints](https://sharphook.tolik.io/v5.2.1/articles/os-constraints.html).
9191

9292
## Usage
9393

docs/articles/about.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About SharpHook
22

3-
SharpHook. Version 5.2.0. Created by Tolik Pylypchuk.
3+
SharpHook. Version 5.2.1. Created by Tolik Pylypchuk.
44

55
## Library Status
66

@@ -10,6 +10,17 @@ rest assured that it's not abandoned! I'm not giving up on this library any time
1010

1111
## Changelog
1212

13+
### [v5.2.1](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v5.2.1) (January 3, 2024)
14+
15+
- `HookEventArgs.IsEventSimulated` has been fixed - previously it always returned `true`.
16+
17+
- `kCGEventTapDisabledByTimeout` doesn't break the global hook on macOS anymore.
18+
19+
- The packages are now marked as AOT-compatible.
20+
21+
- libuiohook was updated to commit
22+
[7dbdc09](https://github.com/TolikPylypchuk/libuiohook/commit/7dbdc09cd9d5a8ef5be5bb005e853b70ce28d67f).
23+
1324
### [v5.2.0](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v5.2.0) (December 16, 2023)
1425

1526
- Simulated events can now be distinguished from real events using the `HookEventArgs.IsEventSimulated` property.

docs/articles/native.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ is ignored.
192192

193193
## Simulating Text Entry
194194

195-
Starting with version 5.0.0, SharpHook also provides text entry simulation. `UioHook` contains the `PostText` method
195+
Starting with version 5, SharpHook also provides text entry simulation. `UioHook` contains the `PostText` method
196196
which accepts a `string`. The text to simulate doesn't depend on the current keyboard layout. The full range of UTF-16
197197
(including surrogate pairs, e.g. emojis) is supported.
198198

docs/docfx.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"src": [
55
{
66
"files": [
7-
"SharpHook/bin/Release/net7.0/SharpHook.dll",
8-
"SharpHook.Reactive/bin/Release/net7.0/SharpHook.Reactive.dll"
7+
"SharpHook/bin/Release/net8.0/SharpHook.dll",
8+
"SharpHook.Reactive/bin/Release/net8.0/SharpHook.Reactive.dll"
99
],
1010
"src": "../"
1111
}
1212
],
1313
"dest": "api",
1414
"properties": {
15-
"TargetFramework": "net7.0"
15+
"TargetFramework": "net8.0"
1616
},
1717
"disableGitFeatures": false,
1818
"disableDefaultFilter": false
@@ -76,7 +76,7 @@
7676
"template"
7777
],
7878
"sitemap": {
79-
"baseUrl": "https://sharphook.tolik.io/v5.0.0/"
79+
"baseUrl": "https://sharphook.tolik.io/v5.2.1/"
8080
},
8181
"postProcessors": [ "ExtractSearchIndex" ],
8282
"markdownEngineName": "markdig",

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ features as well as higher-level types to work with it.
77
## Installation
88

99
```
10-
dotnet add package SharpHook --version 5.2.0
11-
dotnet add package SharpHook.Reactive --version 5.2.0
10+
dotnet add package SharpHook --version 5.2.1
11+
dotnet add package SharpHook.Reactive --version 5.2.1
1212
```
1313

1414
## Supported Platforms

0 commit comments

Comments
 (0)