Skip to content

Commit 4de32a9

Browse files
committedApr 14, 2020
Require Electron 8
1 parent 71c5d2e commit 4de32a9

File tree

5 files changed

+31
-18
lines changed

5 files changed

+31
-18
lines changed
 

‎index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ declare namespace contextMenu {
1515
@default 'Correct Automatically'
1616
*/
1717
readonly correctAutomatically?: string;
18-
18+
1919
/**
2020
@default 'Learn Spelling'
2121
*/
@@ -26,7 +26,7 @@ declare namespace contextMenu {
2626
@default 'Look Up “{selection}”'
2727
*/
2828
readonly lookUpSelection?: string;
29-
29+
3030
/**
3131
@default 'Search with Google'
3232
*/
@@ -249,7 +249,7 @@ declare namespace contextMenu {
249249
- `showSaveImageAs`
250250
- `showInspectElement`
251251
- `showServices`
252-
252+
253253
To get spellchecking, “Correct Automatically”, and “Learn Spelling” in the menu, please enable the `spellcheck` preference in browser window: `new BrowserWindow({webPreferences: {spellcheck: true}})`
254254
255255
@default [...dictionarySuggestions, defaultActions.separator(), defaultActions.correctAutomatically(), defaultActions.separator(), defaultActions.learnSpelling(), defaultActions.separator(), defaultActions.lookUpSelection(), defaultActions.separator(),defaultActions.searchWithGoogle(), defaultActions.cut(), defaultActions.copy(), defaultActions.paste(), defaultActions.separator(), defaultActions.saveImage(), defaultActions.saveImageAs(), defaultActions.copyLink(), defaultActions.copyImage(), defaultActions.copyImageAddress(), defaultActions.separator(), defaultActions.copyLink(), defaultActions.separator(), defaultActions.inspect()]

‎index.test-d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {expectType} from 'tsd';
2-
import {app, BrowserWindow, shell} from 'electron';
2+
import {app} from 'electron';
33
import contextMenu = require('.');
44

55
expectType<void>(contextMenu());
@@ -15,10 +15,10 @@ contextMenu({
1515

1616
app.on('web-contents-created', (event, webContents) => {
1717
contextMenu({
18-
prepend: (defaultActions, params) => [{
18+
prepend: (defaultActions, parameters) => [{
1919
label: 'Rainbow',
20-
visible: params.mediaType === 'image'
20+
visible: parameters.mediaType === 'image'
2121
}],
2222
window: webContents
2323
});
24-
})
24+
});

‎license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

‎package.json

+20-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": {
99
"name": "Sindre Sorhus",
1010
"email": "sindresorhus@gmail.com",
11-
"url": "sindresorhus.com"
11+
"url": "https://sindresorhus.com"
1212
},
1313
"scripts": {
1414
"start": "electron fixture.js",
@@ -27,24 +27,37 @@
2727
"menu",
2828
"extensible",
2929
"save",
30-
"image"
30+
"image",
31+
"spellchecking",
32+
"spellcheck",
33+
"spelling",
34+
"spell",
35+
"check",
36+
"correct",
37+
"word",
38+
"words",
39+
"dictionary"
3140
],
3241
"dependencies": {
3342
"cli-truncate": "^2.0.0",
34-
"electron-dl": "^1.2.0",
43+
"electron-dl": "^3.0.0",
3544
"electron-is-dev": "^1.0.1"
3645
},
3746
"devDependencies": {
3847
"@types/node": "^12.0.10",
3948
"ava": "^2.1.0",
40-
"electron": "^8.0.0",
41-
"tsd": "^0.10.0",
42-
"xo": "^0.25.3"
49+
"electron": "^8.2.2",
50+
"tsd": "^0.11.0",
51+
"xo": "^0.29.1"
4352
},
4453
"xo": {
4554
"envs": [
4655
"node",
4756
"browser"
48-
]
57+
],
58+
"rules": {
59+
"@typescript-eslint/no-unsafe-call": "off",
60+
"@typescript-eslint/no-unsafe-member-access": "off"
61+
}
4962
}
5063
}

‎readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<img src="screenshot.png" width="125" align="right">
66

7-
Electron doesn't have a built-in context menu. You're supposed to handle that yourself. But it's both tedious and hard to get right. This module gives you a nice extensible context menu with items like `Cut`/`Copy`/`Paste` for text, `Save Image` for images, and `Copy Link` for links. It also adds an `Inspect Element` menu item when in development to quickly view items in the inspector like in Chrome.
7+
Electron doesn't have a built-in context menu. You're supposed to handle that yourself. But it's both tedious and hard to get right. This module gives you a nice extensible context menu with spellchecking and items like `Cut`/`Copy`/`Paste` for text, `Save Image` for images, and `Copy Link` for links. It also adds an `Inspect Element` menu item when in development to quickly view items in the inspector like in Chrome.
88

99
You can use this module directly in both the main and renderer process.
1010

@@ -14,7 +14,7 @@ You can use this module directly in both the main and renderer process.
1414
$ npm install electron-context-menu
1515
```
1616

17-
*Requires Electron 4 or later.*
17+
*Requires Electron 8 or later.*
1818

1919
## Usage
2020

@@ -207,7 +207,7 @@ The following options are ignored when `menu` is used:
207207
- `showInspectElement`
208208
- `showServices`
209209
- `showSearchWithGoogle`
210-
210+
211211
Default actions:
212212

213213
- `spellCheck`

0 commit comments

Comments
 (0)
Please sign in to comment.