Skip to content

Commit 059805e

Browse files
committed
Merge branch '2.0' of github.com:kwhat/jnativehook into 2.0
2 parents ad4a30a + 454d850 commit 059805e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ChangeLog
22

3-
**JNativeHook 2.0.3 (Oct 27, 2015)**
3+
**JNativeHook 2.0.3 (Oct 28, 2015)**
44
* Added support for media keys on OS X.
55
* Added wiki pages to the project.
66
* Fixed caps-lock key release on OS X.

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## News
22

3-
**JNativeHook 2.0.3 Maintenance Release (Oct 27, 2015)**
3+
**JNativeHook 2.0.3 Maintenance Release (Oct 28, 2015)**
44

55
Maintenance release 3 addresses a few small issues across all supported platforms. Please see the [ChangeLog](ChangeLog.md) for more information. Work has now started on version 2.1 of the library. Future work will include better language support for X11 and possibly Wayland support.
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ demonstration of raw output for all available native events. To run the
7272
application simply execute the jar file provided. Source code available at
7373
[src/java/org/jnativehook/example/NativeHookDemo.java](src/java/org/jnativehook/example/NativeHookDemo.java).
7474

75-
## Sample Code
75+
## Example Code
7676
* [Global Keyboard Listener](wiki/examples/Keyboard.md)
7777
* [Global Mouse Listener](wiki/examples/Mouse.md)
7878
* [Global Mouse Wheel Listener](wiki/examples/MouseWheel.md)

wiki/examples/LibraryLoading.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ public class UrlLibraryLocator implements NativeLibraryLocator {
2121
libFile.deleteOnExit();
2222

2323
FileUtils.copyURLToFile(libUrl, libFile);
24+
25+
ArrayList<libFile> list = new ArrayList(1);
26+
list.add(file);
27+
28+
return list;
2429
}
2530
}
2631
```

0 commit comments

Comments
 (0)