@meadowsjared/qhotkeys 1.1.17 → 1.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,21 +5,21 @@ This project utilizes [uiohook-napi](https://npmjs.org/uiohook-napi). It depends
|
|
|
5
5
|
|
|
6
6
|
My purpose in creating qHotkeys was to be a replacement for Electron's global shortcut. With qHotkeys you can create a shortcut such as ``CommandOrControl + X`` and your app will still recognize the input AND your os will perform the 'cut' action
|
|
7
7
|
|
|
8
|
-
This project is early in development. Report any bugs or issues on the [GitHub](https://github.com/
|
|
8
|
+
This project is early in development. Report any bugs or issues on the [GitHub](https://github.com/meadowsjared/qhotkeys/issues/) issue tracker.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
Install qHotkeys using npm:
|
|
13
13
|
|
|
14
14
|
```
|
|
15
|
-
npm i qhotkeys
|
|
15
|
+
npm i @meadowsjared/qhotkeys
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Example Implementation
|
|
19
19
|
|
|
20
20
|
```JavaScript
|
|
21
21
|
|
|
22
|
-
import { qKeys, qHotkeys } from '
|
|
22
|
+
import { qKeys, qHotkeys } from '@meadowsjared/qhotkeys'
|
|
23
23
|
|
|
24
24
|
// Create instance
|
|
25
25
|
var hotkeys = new qHotkeys()
|
|
@@ -74,7 +74,9 @@ Anymore ideas? Create an issue on the github page!
|
|
|
74
74
|
|
|
75
75
|
## License
|
|
76
76
|
|
|
77
|
-
[MIT](https://github.com/
|
|
77
|
+
[MIT](https://github.com/meadowsjared/qHotkeys/blob/main/LICENSE)
|
|
78
78
|
|
|
79
|
-
Maintained by [
|
|
79
|
+
Maintained by [meadowsjared](https://github.com/meadowsjared).
|
|
80
80
|
|
|
81
|
+
## Credits
|
|
82
|
+
Based on the original work by [QarthO](https://github.com/QarthO).
|
package/package.json
CHANGED