@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.
Files changed (2) hide show
  1. package/README.md +7 -5
  2. 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/qartho/qhotkeys/issues/) issue tracker.
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 'qHotkeys'
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/QarthO/qHotkeys/blob/main/LICENSE)
77
+ [MIT](https://github.com/meadowsjared/qHotkeys/blob/main/LICENSE)
78
78
 
79
- Maintained by [QarthO](https://github.com/qartho).
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meadowsjared/qhotkeys",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "Electron global shortcut registrar that doesn't override pre-existing shortcuts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",