Skip to content

Commit 7c5eac3

Browse files
Update the docs for version 4.2.1
1 parent 6a2e016 commit 7c5eac3

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

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

3+
## [v4.2.1](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v4.2.1) (June 18, 2023)
4+
5+
- libuiohook was updated to commit
6+
[34f279c](https://github.com/TolikPylypchuk/libuiohook/tree/34f279c3dc2bb0e92f2b4aca0a3214b6f2e78af9).
7+
8+
- Getting screen info for multiple screens was fixed on Windows.
9+
10+
- A memory leak from getting screen info was fixed.
11+
312
## [v4.2.0](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v4.2.0) (April 8, 2023)
413

514
- libuiohook was updated to commit

README.md

Lines changed: 2 additions & 2 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/v4.2.0/articles/migration.html) is available for upgrading between major
19+
A [migration guide](https://sharphook.tolik.io/v4.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-
- [v4.2.0](https://sharphook.tolik.io/v4.2.0)
27+
- [v4.2.1](https://sharphook.tolik.io/v4.2.1) | [v4.2.0](https://sharphook.tolik.io/v4.2.0)
2828
- [v4.1.0](https://sharphook.tolik.io/v4.1.0)
2929
- [v4.0.1](https://sharphook.tolik.io/v4.0.1) | [v4.0.0](https://sharphook.tolik.io/v4.0.0)
3030
- [v3.1.3](https://sharphook.tolik.io/v3.1.3) | [v3.1.2](https://sharphook.tolik.io/v3.1.2) | [v3.1.1](https://sharphook.tolik.io/v3.1.1) | [v3.1.0](https://sharphook.tolik.io/v3.1.0)

docs/articles/about.md

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

3-
SharpHook. Version 4.2.0. Created by Tolik Pylypchuk.
3+
SharpHook. Version 4.2.1. Created by Tolik Pylypchuk.
44

55
## Library Status
66

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

1111
## Changelog
1212

13+
### [v4.2.1](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v4.2.1) (June 18, 2023)
14+
15+
- libuiohook was updated to commit
16+
[34f279c](https://github.com/TolikPylypchuk/libuiohook/tree/34f279c3dc2bb0e92f2b4aca0a3214b6f2e78af9).
17+
18+
- Getting screen info for multiple screens was fixed on Windows.
19+
20+
- A memory leak from getting screen info was fixed.
21+
1322
### [v4.2.0](https://github.com/TolikPylypchuk/SharpHook/releases/tag/v4.2.0) (April 8, 2023)
1423

1524
- libuiohook was updated to commit

docs/articles/native.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,6 @@ libuiohook also provides functions which get various pieces of information about
215215
These functions are quite straightforward, except for `CreateScreenInfo`. `UioHook` defines two versions of this
216216
function. One is a native function which returns an unmanaged array of `ScreenData` objects (as an `IntPtr`) along
217217
with its length in an output parameter. Another is a wrapper which returs a managed array. Use the second one if you
218-
need it since it's safer.
218+
need it since it's safer. If you decide to use the native version then you must free the returned memory manually.
219219

220220
Next article: [Global Hooks](hooks.md).

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ https://github.com/TolikPylypchuk/SharpHook
2424
## Installation
2525

2626
```
27-
dotnet add package SharpHook --version 4.2.0
28-
dotnet add package SharpHook.Reactive --version 4.2.0
27+
dotnet add package SharpHook --version 4.2.1
28+
dotnet add package SharpHook.Reactive --version 4.2.1
2929
```

0 commit comments

Comments
 (0)