@overwolf/ow-electron 34.3.3 → 34.4.1-beta.0

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/electron-api.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "description": "> Control your application's event lifecycle.\n\nProcess: Main\n\nThe following example shows how to quit the application when the last window is closed:",
5
5
  "slug": "app",
6
6
  "websiteUrl": "https://electronjs.org/docs/api/app",
7
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/app.md",
8
- "version": "34.3.3",
7
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/app.md",
8
+ "version": "34.4.1",
9
9
  "type": "Module",
10
10
  "process": {
11
11
  "main": true,
@@ -3177,8 +3177,8 @@
3177
3177
  "description": "> Enable apps to automatically update themselves.\n\nProcess: Main\n\n**See also: A detailed guide about how to implement updates in your application.**\n\n`autoUpdater` is an EventEmitter.\n\n### Platform Notices\n\nCurrently, only macOS and Windows are supported. There is no built-in support for auto-updater on Linux, so it is recommended to use the distribution's package manager to update your app.\n\nIn addition, there are some subtle differences on each platform:\n\n### macOS\n\nOn macOS, the `autoUpdater` module is built upon Squirrel.Mac, meaning you don't need any special setup to make it work. For server-side requirements, you can read Server Support. Note that App Transport Security (ATS) applies to all requests made as part of the update process. Apps that need to disable ATS can add the `NSAllowsArbitraryLoads` key to their app's plist.\n\n**Note:** Your application must be signed for automatic updates on macOS. This is a requirement of `Squirrel.Mac`.\n\n### Windows\n\nOn Windows, you have to install your app into a user's machine before you can use the `autoUpdater`, so it is recommended that you use electron-winstaller or Electron Forge's Squirrel.Windows maker to generate a Windows installer.\n\nApps built with Squirrel.Windows will trigger custom launch events that must be handled by your Electron application to ensure proper setup and teardown.\n\nSquirrel.Windows apps will launch with the `--squirrel-firstrun` argument immediately after installation. During this time, Squirrel.Windows will obtain a file lock on your app, and `autoUpdater` requests will fail until the lock is released. In practice, this means that you won't be able to check for updates on first launch for the first few seconds. You can work around this by not checking for updates when `process.argv` contains the `--squirrel-firstrun` flag or by setting a 10-second timeout on your update checks (see electron/electron#7155 for more information).\n\nThe installer generated with Squirrel.Windows will create a shortcut icon with an Application User Model ID in the format of `com.squirrel.PACKAGE_ID.YOUR_EXE_WITHOUT_DOT_EXE`, examples are `com.squirrel.slack.Slack` and `com.squirrel.code.Code`. You have to use the same ID for your app with `app.setAppUserModelId` API, otherwise Windows will not be able to pin your app properly in task bar.",
3178
3178
  "slug": "auto-updater",
3179
3179
  "websiteUrl": "https://electronjs.org/docs/api/auto-updater",
3180
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/auto-updater.md",
3181
- "version": "34.3.3",
3180
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/auto-updater.md",
3181
+ "version": "34.4.1",
3182
3182
  "type": "Module",
3183
3183
  "process": {
3184
3184
  "main": true,
@@ -3394,8 +3394,8 @@
3394
3394
  "description": "> Create and control windows.\n\nProcess: Main\n\n> **Note** `BaseWindow` provides a flexible way to compose multiple web views in a single window. For windows with only a single, full-size web view, the `BrowserWindow` class may be a simpler option.\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Parent and child windows\n\nBy using `parent` option, you can create child windows:\n\n```\nconst { BaseWindow } = require('electron')\n\nconst parent = new BaseWindow()\nconst child = new BaseWindow({ parent })\n```\n\nThe `child` window will always show on top of the `parent` window.\n\n### Modal windows\n\nA modal window is a child window that disables parent window. To create a modal window, you have to set both the `parent` and `modal` options:\n\n```\nconst { BaseWindow } = require('electron')\n\nconst parent = new BaseWindow()\nconst child = new BaseWindow({ parent, modal: true })\n```\n\n### Platform notices\n\n* On macOS modal windows will be displayed as sheets attached to the parent window.\n* On macOS the child windows will keep the relative position to parent window when parent window moves, while on Windows and Linux child windows will not move.\n* On Linux the type of modal windows will be changed to `dialog`.\n* On Linux many desktop environments do not support hiding a modal window.\n\n### Resource management\n\nWhen you add a `WebContentsView` to a `BaseWindow` and the `BaseWindow` is closed, the `webContents` of the `WebContentsView` are not destroyed automatically.\n\nIt is your responsibility to close the `webContents` when you no longer need them, e.g. when the `BaseWindow` is closed:\n\n```\nconst { BaseWindow, WebContentsView } = require('electron')\n\nconst win = new BaseWindow({ width: 800, height: 600 })\n\nconst view = new WebContentsView()\nwin.contentView.addChildView(view)\n\nwin.on('closed', () => {\n view.webContents.close()\n})\n```\n\nUnlike with a `BrowserWindow`, if you don't explicitly close the `webContents`, you'll encounter memory leaks.\n\n### Class: BaseWindow\n\n> Create and control windows.\n\nProcess: Main\n\n`BaseWindow` is an EventEmitter.\n\nIt creates a new `BaseWindow` with native properties as set by the `options`.",
3395
3395
  "slug": "base-window",
3396
3396
  "websiteUrl": "https://electronjs.org/docs/api/base-window",
3397
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/base-window.md",
3398
- "version": "34.3.3",
3397
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/base-window.md",
3398
+ "version": "34.4.1",
3399
3399
  "type": "Class",
3400
3400
  "process": {
3401
3401
  "main": true,
@@ -6545,8 +6545,8 @@
6545
6545
  "description": "> **Note** The `BrowserView` class is deprecated, and replaced by the new `WebContentsView` class.\n\nA `BrowserView` can be used to embed additional web content into a `BrowserWindow`. It is like a child window, except that it is positioned relative to its owning window. It is meant to be an alternative to the `webview` tag.\n\n### Class: BrowserView\n\n> Create and control views.\n\n> **Note** The `BrowserView` class is deprecated, and replaced by the new `WebContentsView` class.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Example\n\n```\n// In the main process.\nconst { app, BrowserView, BrowserWindow } = require('electron')\n\napp.whenReady().then(() => {\n const win = new BrowserWindow({ width: 800, height: 600 })\n\n const view = new BrowserView()\n win.setBrowserView(view)\n view.setBounds({ x: 0, y: 0, width: 300, height: 300 })\n view.webContents.loadURL('https://electronjs.org')\n})\n```",
6546
6546
  "slug": "browser-view",
6547
6547
  "websiteUrl": "https://electronjs.org/docs/api/browser-view",
6548
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/browser-view.md",
6549
- "version": "34.3.3",
6548
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/browser-view.md",
6549
+ "version": "34.4.1",
6550
6550
  "type": "Class",
6551
6551
  "process": {
6552
6552
  "main": true,
@@ -6713,8 +6713,8 @@
6713
6713
  "description": "> Create and control browser windows.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Window customization\n\nThe `BrowserWindow` class exposes various ways to modify the look and behavior of your app's windows. For more details, see the Window Customization tutorial.\n\n### Showing the window gracefully\n\nWhen loading a page in the window directly, users may see the page load incrementally, which is not a good experience for a native app. To make the window display without a visual flash, there are two solutions for different situations.\n\n### Using the `ready-to-show` event\n\nWhile loading the page, the `ready-to-show` event will be emitted when the renderer process has rendered the page for the first time if the window has not been shown yet. Showing the window after this event will have no visual flash:\n\n```\nconst { BrowserWindow } = require('electron')\nconst win = new BrowserWindow({ show: false })\nwin.once('ready-to-show', () => {\n win.show()\n})\n```\n\nThis event is usually emitted after the `did-finish-load` event, but for pages with many remote resources, it may be emitted before the `did-finish-load` event.\n\nPlease note that using this event implies that the renderer will be considered \"visible\" and paint even though `show` is false. This event will never fire if you use `paintWhenInitiallyHidden: false`\n\n### Setting the `backgroundColor` property\n\nFor a complex app, the `ready-to-show` event could be emitted too late, making the app feel slow. In this case, it is recommended to show the window immediately, and use a `backgroundColor` close to your app's background:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst win = new BrowserWindow({ backgroundColor: '#2e2c29' })\nwin.loadURL('https://github.com')\n```\n\nNote that even for apps that use `ready-to-show` event, it is still recommended to set `backgroundColor` to make the app feel more native.\n\nSome examples of valid `backgroundColor` values include:\n\n```\nconst win = new BrowserWindow()\nwin.setBackgroundColor('hsl(230, 100%, 50%)')\nwin.setBackgroundColor('rgb(255, 145, 145)')\nwin.setBackgroundColor('#ff00a3')\nwin.setBackgroundColor('blueviolet')\n```\n\nFor more information about these color types see valid options in win.setBackgroundColor.\n\n### Parent and child windows\n\nBy using `parent` option, you can create child windows:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst top = new BrowserWindow()\nconst child = new BrowserWindow({ parent: top })\nchild.show()\ntop.show()\n```\n\nThe `child` window will always show on top of the `top` window.\n\n### Modal windows\n\nA modal window is a child window that disables parent window. To create a modal window, you have to set both the `parent` and `modal` options:\n\n```\nconst { BrowserWindow } = require('electron')\n\nconst top = new BrowserWindow()\nconst child = new BrowserWindow({ parent: top, modal: true, show: false })\nchild.loadURL('https://github.com')\nchild.once('ready-to-show', () => {\n child.show()\n})\n```\n\n### Page visibility\n\nThe Page Visibility API works as follows:\n\n* On all platforms, the visibility state tracks whether the window is hidden/minimized or not.\n* Additionally, on macOS, the visibility state also tracks the window occlusion state. If the window is occluded (i.e. fully covered) by another window, the visibility state will be `hidden`. On other platforms, the visibility state will be `hidden` only when the window is minimized or explicitly hidden with `win.hide()`.\n* If a `BrowserWindow` is created with `show: false`, the initial visibility state will be `visible` despite the window actually being hidden.\n* If `backgroundThrottling` is disabled, the visibility state will remain `visible` even if the window is minimized, occluded, or hidden.\n\nIt is recommended that you pause expensive operations when the visibility state is `hidden` in order to minimize power consumption.\n\n### Platform notices\n\n* On macOS modal windows will be displayed as sheets attached to the parent window.\n* On macOS the child windows will keep the relative position to parent window when parent window moves, while on Windows and Linux child windows will not move.\n* On Linux the type of modal windows will be changed to `dialog`.\n* On Linux many desktop environments do not support hiding a modal window.\n\n### Class: BrowserWindow extends `BaseWindow`\n\n> Create and control browser windows.\n\nProcess: Main\n\n`BrowserWindow` is an EventEmitter.\n\nIt creates a new `BrowserWindow` with native properties as set by the `options`.",
6714
6714
  "slug": "browser-window",
6715
6715
  "websiteUrl": "https://electronjs.org/docs/api/browser-window",
6716
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/browser-window.md",
6717
- "version": "34.3.3",
6716
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/browser-window.md",
6717
+ "version": "34.4.1",
6718
6718
  "type": "Class",
6719
6719
  "process": {
6720
6720
  "main": true,
@@ -10339,8 +10339,8 @@
10339
10339
  "description": "> Make HTTP/HTTPS requests.\n\nProcess: Main, Utility\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._\n\n`ClientRequest` implements the Writable Stream interface and is therefore an EventEmitter.",
10340
10340
  "slug": "client-request",
10341
10341
  "websiteUrl": "https://electronjs.org/docs/api/client-request",
10342
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/client-request.md",
10343
- "version": "34.3.3",
10342
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/client-request.md",
10343
+ "version": "34.4.1",
10344
10344
  "type": "Class",
10345
10345
  "process": {
10346
10346
  "main": true,
@@ -11071,8 +11071,8 @@
11071
11071
  "description": "> Perform copy and paste operations on the system clipboard.\n\nProcess: Main, Renderer (non-sandboxed only)\n\nOn Linux, there is also a `selection` clipboard. To manipulate it you need to pass `selection` to each method:",
11072
11072
  "slug": "clipboard",
11073
11073
  "websiteUrl": "https://electronjs.org/docs/api/clipboard",
11074
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/clipboard.md",
11075
- "version": "34.3.3",
11074
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/clipboard.md",
11075
+ "version": "34.4.1",
11076
11076
  "type": "Module",
11077
11077
  "process": {
11078
11078
  "main": true,
@@ -11738,8 +11738,8 @@
11738
11738
  "description": "",
11739
11739
  "slug": "command-line",
11740
11740
  "websiteUrl": "https://electronjs.org/docs/api/command-line",
11741
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/command-line.md",
11742
- "version": "34.3.3",
11741
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/command-line.md",
11742
+ "version": "34.4.1",
11743
11743
  "type": "Class",
11744
11744
  "process": {
11745
11745
  "main": true,
@@ -11866,8 +11866,8 @@
11866
11866
  "description": "> Collect tracing data from Chromium to find performance bottlenecks and slow operations.\n\nProcess: Main\n\nThis module does not include a web interface. To view recorded traces, use trace viewer, available at `chrome://tracing` in Chrome.\n\n**Note:** You should not use this module until the `ready` event of the app module is emitted.",
11867
11867
  "slug": "content-tracing",
11868
11868
  "websiteUrl": "https://electronjs.org/docs/api/content-tracing",
11869
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/content-tracing.md",
11870
- "version": "34.3.3",
11869
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/content-tracing.md",
11870
+ "version": "34.4.1",
11871
11871
  "type": "Module",
11872
11872
  "process": {
11873
11873
  "main": true,
@@ -12004,8 +12004,8 @@
12004
12004
  "description": "> Create a safe, bi-directional, synchronous bridge across isolated contexts\n\nProcess: Renderer\n\nAn example of exposing an API to a renderer from an isolated preload script is given below:\n\n```\n// Preload (Isolated World)\nconst { contextBridge, ipcRenderer } = require('electron')\n\ncontextBridge.exposeInMainWorld(\n 'electron',\n {\n doThing: () => ipcRenderer.send('do-a-thing')\n }\n)\n```\n\n### Glossary\n\n\n\n### Main World\n\nThe \"Main World\" is the JavaScript context that your main renderer code runs in. By default, the page you load in your renderer executes code in this world.\n\n### Isolated World\n\nWhen `contextIsolation` is enabled in your `webPreferences` (this is the default behavior since Electron 12.0.0), your `preload` scripts run in an \"Isolated World\". You can read more about context isolation and what it affects in the security docs.",
12005
12005
  "slug": "context-bridge",
12006
12006
  "websiteUrl": "https://electronjs.org/docs/api/context-bridge",
12007
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/context-bridge.md",
12008
- "version": "34.3.3",
12007
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/context-bridge.md",
12008
+ "version": "34.4.1",
12009
12009
  "type": "Module",
12010
12010
  "process": {
12011
12011
  "main": false,
@@ -12081,8 +12081,8 @@
12081
12081
  "description": "",
12082
12082
  "slug": "cookies",
12083
12083
  "websiteUrl": "https://electronjs.org/docs/api/cookies",
12084
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/cookies.md",
12085
- "version": "34.3.3",
12084
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/cookies.md",
12085
+ "version": "34.4.1",
12086
12086
  "type": "Class",
12087
12087
  "process": {
12088
12088
  "main": true,
@@ -12431,8 +12431,8 @@
12431
12431
  "description": "> Submit crash reports to a remote server.\n\nProcess: Main, Renderer\n\nThe following is an example of setting up Electron to automatically submit crash reports to a remote server:\n\n```\nconst { crashReporter } = require('electron')\n\ncrashReporter.start({ submitURL: 'https://your-domain.com/url-to-submit' })\n```\n\nFor setting up a server to accept and process crash reports, you can use following projects:\n\n* socorro\n* mini-breakpad-server\n\n> **Note:** Electron uses Crashpad, not Breakpad, to collect and upload crashes, but for the time being, the upload protocol is the same.\n\nOr use a 3rd party hosted solution:\n\n* Backtrace\n* Sentry\n* BugSplat\n* Bugsnag\n\nCrash reports are stored temporarily before being uploaded in a directory underneath the app's user data directory, called 'Crashpad'. You can override this directory by calling `app.setPath('crashDumps', '/path/to/crashes')` before starting the crash reporter.\n\nElectron uses crashpad to monitor and report crashes.",
12432
12432
  "slug": "crash-reporter",
12433
12433
  "websiteUrl": "https://electronjs.org/docs/api/crash-reporter",
12434
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/crash-reporter.md",
12435
- "version": "34.3.3",
12434
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/crash-reporter.md",
12435
+ "version": "34.4.1",
12436
12436
  "type": "Module",
12437
12437
  "process": {
12438
12438
  "main": true,
@@ -12704,8 +12704,8 @@
12704
12704
  "description": "",
12705
12705
  "slug": "debugger",
12706
12706
  "websiteUrl": "https://electronjs.org/docs/api/debugger",
12707
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/debugger.md",
12708
- "version": "34.3.3",
12707
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/debugger.md",
12708
+ "version": "34.4.1",
12709
12709
  "type": "Class",
12710
12710
  "process": {
12711
12711
  "main": true,
@@ -12876,8 +12876,8 @@
12876
12876
  "description": "> Access information about media sources that can be used to capture audio and video from the desktop using the `navigator.mediaDevices.getUserMedia` API.\n\nProcess: Main\n\nThe following example shows how to capture video from a desktop window whose title is `Electron`:\n\n```\n// main.js\nconst { app, BrowserWindow, desktopCapturer, session } = require('electron')\n\napp.whenReady().then(() => {\n const mainWindow = new BrowserWindow()\n\n session.defaultSession.setDisplayMediaRequestHandler((request, callback) => {\n desktopCapturer.getSources({ types: ['screen'] }).then((sources) => {\n // Grant access to the first screen found.\n callback({ video: sources[0], audio: 'loopback' })\n })\n // If true, use the system picker if available.\n // Note: this is currently experimental. If the system picker\n // is available, it will be used and the media request handler\n // will not be invoked.\n }, { useSystemPicker: true })\n\n mainWindow.loadFile('index.html')\n})\n```\n\n```\n// renderer.js\nconst startButton = document.getElementById('startButton')\nconst stopButton = document.getElementById('stopButton')\nconst video = document.querySelector('video')\n\nstartButton.addEventListener('click', () => {\n navigator.mediaDevices.getDisplayMedia({\n audio: true,\n video: {\n width: 320,\n height: 240,\n frameRate: 30\n }\n }).then(stream => {\n video.srcObject = stream\n video.onloadedmetadata = (e) => video.play()\n }).catch(e => console.log(e))\n})\n\nstopButton.addEventListener('click', () => {\n video.pause()\n})\n```\n\n```\n<!-- index.html -->\n<html>\n<meta http-equiv=\"content-security-policy\" content=\"script-src 'self' 'unsafe-inline'\" />\n <body>\n <button id=\"startButton\" class=\"button\">Start</button>\n <button id=\"stopButton\" class=\"button\">Stop</button>\n <video width=\"320\" height=\"240\" autoplay></video>\n <script src=\"renderer.js\"></script>\n </body>\n</html>\n```\n\nSee `navigator.mediaDevices.getDisplayMedia` for more information.\n\n**Note:** `navigator.mediaDevices.getDisplayMedia` does not permit the use of `deviceId` for selection of a source - see specification.",
12877
12877
  "slug": "desktop-capturer",
12878
12878
  "websiteUrl": "https://electronjs.org/docs/api/desktop-capturer",
12879
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/desktop-capturer.md",
12880
- "version": "34.3.3",
12879
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/desktop-capturer.md",
12880
+ "version": "34.4.1",
12881
12881
  "type": "Module",
12882
12882
  "process": {
12883
12883
  "main": true,
@@ -12958,8 +12958,8 @@
12958
12958
  "description": "> Display native system dialogs for opening and saving files, alerting, etc.\n\nProcess: Main\n\nAn example of showing a dialog to select multiple files:",
12959
12959
  "slug": "dialog",
12960
12960
  "websiteUrl": "https://electronjs.org/docs/api/dialog",
12961
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/dialog.md",
12962
- "version": "34.3.3",
12961
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/dialog.md",
12962
+ "version": "34.4.1",
12963
12963
  "type": "Module",
12964
12964
  "process": {
12965
12965
  "main": true,
@@ -14041,8 +14041,8 @@
14041
14041
  "description": "",
14042
14042
  "slug": "dock",
14043
14043
  "websiteUrl": "https://electronjs.org/docs/api/dock",
14044
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/dock.md",
14045
- "version": "34.3.3",
14044
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/dock.md",
14045
+ "version": "34.4.1",
14046
14046
  "type": "Class",
14047
14047
  "process": {
14048
14048
  "main": true,
@@ -14286,8 +14286,8 @@
14286
14286
  "description": "",
14287
14287
  "slug": "download-item",
14288
14288
  "websiteUrl": "https://electronjs.org/docs/api/download-item",
14289
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/download-item.md",
14290
- "version": "34.3.3",
14289
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/download-item.md",
14290
+ "version": "34.4.1",
14291
14291
  "type": "Class",
14292
14292
  "process": {
14293
14293
  "main": true,
@@ -14709,8 +14709,8 @@
14709
14709
  "description": "> Detect keyboard events when the application does not have keyboard focus.\n\nProcess: Main\n\nThe `globalShortcut` module can register/unregister a global keyboard shortcut with the operating system so that you can customize the operations for various shortcuts.\n\n**Note:** The shortcut is global; it will work even if the app does not have the keyboard focus. This module cannot be used before the `ready` event of the app module is emitted.",
14710
14710
  "slug": "global-shortcut",
14711
14711
  "websiteUrl": "https://electronjs.org/docs/api/global-shortcut",
14712
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/global-shortcut.md",
14713
- "version": "34.3.3",
14712
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/global-shortcut.md",
14713
+ "version": "34.4.1",
14714
14714
  "type": "Module",
14715
14715
  "process": {
14716
14716
  "main": true,
@@ -14830,8 +14830,8 @@
14830
14830
  "description": "> In-app purchases on Mac App Store.\n\nProcess: Main",
14831
14831
  "slug": "in-app-purchase",
14832
14832
  "websiteUrl": "https://electronjs.org/docs/api/in-app-purchase",
14833
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/in-app-purchase.md",
14834
- "version": "34.3.3",
14833
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/in-app-purchase.md",
14834
+ "version": "34.4.1",
14835
14835
  "type": "Module",
14836
14836
  "process": {
14837
14837
  "main": true,
@@ -15008,8 +15008,8 @@
15008
15008
  "description": "",
15009
15009
  "slug": "incoming-message",
15010
15010
  "websiteUrl": "https://electronjs.org/docs/api/incoming-message",
15011
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/incoming-message.md",
15012
- "version": "34.3.3",
15011
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/incoming-message.md",
15012
+ "version": "34.4.1",
15013
15013
  "type": "Class",
15014
15014
  "process": {
15015
15015
  "main": true,
@@ -15166,8 +15166,8 @@
15166
15166
  "description": "\n\n### ipcMain\n\n> Communicate asynchronously from the main process to renderer processes.\n\nProcess: Main\n\nThe `ipcMain` module is an Event Emitter. When used in the main process, it handles asynchronous and synchronous messages sent from a renderer process (web page). Messages sent from a renderer will be emitted to this module.\n\nFor usage examples, check out the IPC tutorial.\n\n### Sending messages\n\nIt is also possible to send messages from the main process to the renderer process, see webContents.send for more information.\n\n* When sending a message, the event name is the `channel`.\n* To reply to a synchronous message, you need to set `event.returnValue`.\n* To send an asynchronous message back to the sender, you can use `event.reply(...)`. This helper method will automatically handle messages coming from frames that aren't the main frame (e.g. iframes) whereas `event.sender.send(...)` will always send to the main frame.",
15167
15167
  "slug": "ipc-main",
15168
15168
  "websiteUrl": "https://electronjs.org/docs/api/ipc-main",
15169
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/ipc-main.md",
15170
- "version": "34.3.3",
15169
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/ipc-main.md",
15170
+ "version": "34.4.1",
15171
15171
  "type": "Module",
15172
15172
  "process": {
15173
15173
  "main": true,
@@ -15545,8 +15545,8 @@
15545
15545
  "description": "\n\n### ipcRenderer\n\n> Communicate asynchronously from a renderer process to the main process.\n\nProcess: Renderer\n\nThe `ipcRenderer` module is an EventEmitter. It provides a few methods so you can send synchronous and asynchronous messages from the render process (web page) to the main process. You can also receive replies from the main process.\n\nSee IPC tutorial for code examples.",
15546
15546
  "slug": "ipc-renderer",
15547
15547
  "websiteUrl": "https://electronjs.org/docs/api/ipc-renderer",
15548
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/ipc-renderer.md",
15549
- "version": "34.3.3",
15548
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/ipc-renderer.md",
15549
+ "version": "34.4.1",
15550
15550
  "type": "Module",
15551
15551
  "process": {
15552
15552
  "main": false,
@@ -15937,8 +15937,8 @@
15937
15937
  "description": "> Add items to native application menus and context menus.\n\nProcess: Main\n\nSee `Menu` for examples.",
15938
15938
  "slug": "menu-item",
15939
15939
  "websiteUrl": "https://electronjs.org/docs/api/menu-item",
15940
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/menu-item.md",
15941
- "version": "34.3.3",
15940
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/menu-item.md",
15941
+ "version": "34.4.1",
15942
15942
  "type": "Class",
15943
15943
  "process": {
15944
15944
  "main": true,
@@ -16834,8 +16834,8 @@
16834
16834
  "description": "\n\n### Class: Menu\n\n> Create native application menus and context menus.\n\nProcess: Main",
16835
16835
  "slug": "menu",
16836
16836
  "websiteUrl": "https://electronjs.org/docs/api/menu",
16837
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/menu.md",
16838
- "version": "34.3.3",
16837
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/menu.md",
16838
+ "version": "34.4.1",
16839
16839
  "type": "Class",
16840
16840
  "process": {
16841
16841
  "main": true,
@@ -17208,8 +17208,8 @@
17208
17208
  "description": "",
17209
17209
  "slug": "message-channel-main",
17210
17210
  "websiteUrl": "https://electronjs.org/docs/api/message-channel-main",
17211
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/message-channel-main.md",
17212
- "version": "34.3.3",
17211
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/message-channel-main.md",
17212
+ "version": "34.4.1",
17213
17213
  "type": "Class",
17214
17214
  "process": {
17215
17215
  "main": true,
@@ -17249,8 +17249,8 @@
17249
17249
  "description": "",
17250
17250
  "slug": "message-port-main",
17251
17251
  "websiteUrl": "https://electronjs.org/docs/api/message-port-main",
17252
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/message-port-main.md",
17253
- "version": "34.3.3",
17252
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/message-port-main.md",
17253
+ "version": "34.4.1",
17254
17254
  "type": "Class",
17255
17255
  "process": {
17256
17256
  "main": true,
@@ -17356,8 +17356,8 @@
17356
17356
  "description": "> Create tray, dock, and application icons using PNG or JPG files.\n\nProcess: Main, Renderer\n\nThe `nativeImage` module provides a unified interface for manipulating system images. These can be handy if you want to provide multiple scaled versions of the same icon or take advantage of macOS template images.\n\nElectron APIs that take image files accept either file paths or `NativeImage` instances. An empty and transparent image will be used when `null` is passed.\n\nFor example, when creating a Tray or setting a BrowserWindow's icon, you can either pass an image file path as a string:\n\n```\nconst { BrowserWindow, Tray } = require('electron')\n\nconst tray = new Tray('/Users/somebody/images/icon.png')\nconst win = new BrowserWindow({ icon: '/Users/somebody/images/window.png' })\n```\n\nor generate a `NativeImage` instance from the same file:\n\n### Supported Formats\n\nCurrently, `PNG` and `JPEG` image formats are supported across all platforms. `PNG` is recommended because of its support for transparency and lossless compression.\n\nOn Windows, you can also load `ICO` icons from file paths. For best visual quality, we recommend including at least the following sizes:\n\n* Small icon\n * 16x16 (100% DPI scale)\n * 20x20 (125% DPI scale)\n * 24x24 (150% DPI scale)\n * 32x32 (200% DPI scale)\n* Large icon\n * 32x32 (100% DPI scale)\n * 40x40 (125% DPI scale)\n * 48x48 (150% DPI scale)\n * 64x64 (200% DPI scale)\n * 256x256\n\nCheck the _Icon Scaling_ section in the Windows App Icon Construction reference.\n\n:::note\n\nEXIF metadata is currently not supported and will not be taken into account during image encoding and decoding.\n\n:::\n\n### High Resolution Image\n\nOn platforms that support high pixel density displays (such as Apple Retina), you can append `@2x` after image's base filename to mark it as a 2x scale high resolution image.\n\nFor example, if `icon.png` is a normal image that has standard resolution, then `icon@2x.png` will be treated as a high resolution image that has double Dots per Inch (DPI) density.\n\nIf you want to support displays with different DPI densities at the same time, you can put images with different sizes in the same folder and use the filename without DPI suffixes within Electron. For example:\n\n```\nimages/\n├── icon.png\n├── icon@2x.png\n└── icon@3x.png\n```\n\n```\nconst { Tray } = require('electron')\nconst appTray = new Tray('/Users/somebody/images/icon.png')\n```\n\nThe following suffixes for DPI are also supported:\n\n* `@1x`\n* `@1.25x`\n* `@1.33x`\n* `@1.4x`\n* `@1.5x`\n* `@1.8x`\n* `@2x`\n* `@2.5x`\n* `@3x`\n* `@4x`\n* `@5x`\n\n### Template Image _macOS_\n\nOn macOS, template images consist of black and an alpha channel. Template images are not intended to be used as standalone images and are usually mixed with other content to create the desired final appearance.\n\nThe most common case is to use template images for a menu bar (Tray) icon, so it can adapt to both light and dark menu bars.\n\nTo mark an image as a template image, its base filename should end with the word `Template` (e.g. `xxxTemplate.png`). You can also specify template images at different DPI densities (e.g. `xxxTemplate@2x.png`).",
17357
17357
  "slug": "native-image",
17358
17358
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17359
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/native-image.md",
17360
- "version": "34.3.3",
17359
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-image.md",
17360
+ "version": "34.4.1",
17361
17361
  "type": "Module",
17362
17362
  "process": {
17363
17363
  "main": true,
@@ -17603,8 +17603,8 @@
17603
17603
  "description": "",
17604
17604
  "slug": "native-image",
17605
17605
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17606
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/native-image.md",
17607
- "version": "34.3.3",
17606
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-image.md",
17607
+ "version": "34.4.1",
17608
17608
  "type": "Class",
17609
17609
  "process": {
17610
17610
  "main": true,
@@ -18026,8 +18026,8 @@
18026
18026
  "description": "> Read and respond to changes in Chromium's native color theme.\n\nProcess: Main",
18027
18027
  "slug": "native-theme",
18028
18028
  "websiteUrl": "https://electronjs.org/docs/api/native-theme",
18029
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/native-theme.md",
18030
- "version": "34.3.3",
18029
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-theme.md",
18030
+ "version": "34.4.1",
18031
18031
  "type": "Module",
18032
18032
  "process": {
18033
18033
  "main": true,
@@ -18137,8 +18137,8 @@
18137
18137
  "description": "",
18138
18138
  "slug": "navigation-history",
18139
18139
  "websiteUrl": "https://electronjs.org/docs/api/navigation-history",
18140
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/navigation-history.md",
18141
- "version": "34.3.3",
18140
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/navigation-history.md",
18141
+ "version": "34.4.1",
18142
18142
  "type": "Class",
18143
18143
  "process": {
18144
18144
  "main": true,
@@ -18385,8 +18385,8 @@
18385
18385
  "description": "> Logging network events for a session.\n\nProcess: Main\n\n```\nconst { app, netLog } = require('electron')\n\napp.whenReady().then(async () => {\n await netLog.startLogging('/path/to/net-log')\n // After some network events\n const path = await netLog.stopLogging()\n console.log('Net-logs written to', path)\n})\n```\n\nSee `--log-net-log` to log network events throughout the app's lifecycle.\n\n**Note:** All methods unless specified can only be used after the `ready` event of the `app` module gets emitted.",
18386
18386
  "slug": "net-log",
18387
18387
  "websiteUrl": "https://electronjs.org/docs/api/net-log",
18388
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/net-log.md",
18389
- "version": "34.3.3",
18388
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/net-log.md",
18389
+ "version": "34.4.1",
18390
18390
  "type": "Module",
18391
18391
  "process": {
18392
18392
  "main": true,
@@ -18501,8 +18501,8 @@
18501
18501
  "description": "> Issue HTTP/HTTPS requests using Chromium's native networking library\n\nProcess: Main, Utility\n\nThe `net` module is a client-side API for issuing HTTP(S) requests. It is similar to the HTTP and HTTPS modules of Node.js but uses Chromium's native networking library instead of the Node.js implementation, offering better support for web proxies. It also supports checking network status.\n\nThe following is a non-exhaustive list of why you may consider using the `net` module instead of the native Node.js modules:\n\n* Automatic management of system proxy configuration, support of the wpad protocol and proxy pac configuration files.\n* Automatic tunneling of HTTPS requests.\n* Support for authenticating proxies using basic, digest, NTLM, Kerberos or negotiate authentication schemes.\n* Support for traffic monitoring proxies: Fiddler-like proxies used for access control and monitoring.\n\nThe API components (including classes, methods, properties and event names) are similar to those used in Node.js.\n\nExample usage:\n\n```\nconst { app } = require('electron')\napp.whenReady().then(() => {\n const { net } = require('electron')\n const request = net.request('https://github.com')\n request.on('response', (response) => {\n console.log(`STATUS: ${response.statusCode}`)\n console.log(`HEADERS: ${JSON.stringify(response.headers)}`)\n response.on('data', (chunk) => {\n console.log(`BODY: ${chunk}`)\n })\n response.on('end', () => {\n console.log('No more data in response.')\n })\n })\n request.end()\n})\n```\n\nThe `net` API can be used only after the application emits the `ready` event. Trying to use the module before the `ready` event will throw an error.",
18502
18502
  "slug": "net",
18503
18503
  "websiteUrl": "https://electronjs.org/docs/api/net",
18504
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/net.md",
18505
- "version": "34.3.3",
18504
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/net.md",
18505
+ "version": "34.4.1",
18506
18506
  "type": "Module",
18507
18507
  "process": {
18508
18508
  "main": true,
@@ -18742,8 +18742,8 @@
18742
18742
  "description": "> Create OS desktop notifications\n\nProcess: Main\n\n:::info Renderer process notifications\n\nIf you want to show notifications from a renderer process you should use the web Notifications API\n\n:::\n\n### Class: Notification\n\n> Create OS desktop notifications\n\nProcess: Main\n\n`Notification` is an EventEmitter.\n\nIt creates a new `Notification` with native properties as set by the `options`.\n\n### Static Methods\n\nThe `Notification` class has the following static methods:\n\n### `Notification.isSupported()`\n\nReturns `boolean` - Whether or not desktop notifications are supported on the current system",
18743
18743
  "slug": "notification",
18744
18744
  "websiteUrl": "https://electronjs.org/docs/api/notification",
18745
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/notification.md",
18746
- "version": "34.3.3",
18745
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/notification.md",
18746
+ "version": "34.4.1",
18747
18747
  "type": "Class",
18748
18748
  "process": {
18749
18749
  "main": true,
@@ -19249,8 +19249,8 @@
19249
19249
  "description": "> Interface for communication with parent process.\n\nProcess: Utility\n\n`parentPort` is an EventEmitter. _This object is not exported from the `'electron'` module. It is only available as a property of the process object in the Electron API._",
19250
19250
  "slug": "parent-port",
19251
19251
  "websiteUrl": "https://electronjs.org/docs/api/parent-port",
19252
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/parent-port.md",
19253
- "version": "34.3.3",
19252
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/parent-port.md",
19253
+ "version": "34.4.1",
19254
19254
  "type": "Module",
19255
19255
  "process": {
19256
19256
  "main": false,
@@ -19321,8 +19321,8 @@
19321
19321
  "description": "> Monitor power state changes.\n\nProcess: Main",
19322
19322
  "slug": "power-monitor",
19323
19323
  "websiteUrl": "https://electronjs.org/docs/api/power-monitor",
19324
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/power-monitor.md",
19325
- "version": "34.3.3",
19324
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/power-monitor.md",
19325
+ "version": "34.4.1",
19326
19326
  "type": "Module",
19327
19327
  "process": {
19328
19328
  "main": true,
@@ -19591,8 +19591,8 @@
19591
19591
  "description": "> Block the system from entering low-power (sleep) mode.\n\nProcess: Main\n\nFor example:",
19592
19592
  "slug": "power-save-blocker",
19593
19593
  "websiteUrl": "https://electronjs.org/docs/api/power-save-blocker",
19594
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/power-save-blocker.md",
19595
- "version": "34.3.3",
19594
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/power-save-blocker.md",
19595
+ "version": "34.4.1",
19596
19596
  "type": "Module",
19597
19597
  "process": {
19598
19598
  "main": true,
@@ -19681,8 +19681,8 @@
19681
19681
  "description": "> Extensions to process object.\n\nProcess: Main, Renderer\n\nElectron's `process` object is extended from the Node.js `process` object. It adds the following events, properties, and methods:\n\n### Sandbox\n\nIn sandboxed renderers the `process` object contains only a subset of the APIs:\n\n* `crash()`\n* `hang()`\n* `getCreationTime()`\n* `getHeapStatistics()`\n* `getBlinkMemoryInfo()`\n* `getProcessMemoryInfo()`\n* `getSystemMemoryInfo()`\n* `getSystemVersion()`\n* `getCPUUsage()`\n* `uptime()`\n* `argv`\n* `execPath`\n* `env`\n* `pid`\n* `arch`\n* `platform`\n* `sandboxed`\n* `contextIsolated`\n* `type`\n* `version`\n* `versions`\n* `mas`\n* `windowsStore`\n* `contextId`",
19682
19682
  "slug": "process",
19683
19683
  "websiteUrl": "https://electronjs.org/docs/api/process",
19684
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/process.md",
19685
- "version": "34.3.3",
19684
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/process.md",
19685
+ "version": "34.4.1",
19686
19686
  "type": "Module",
19687
19687
  "process": {
19688
19688
  "main": true,
@@ -20198,8 +20198,8 @@
20198
20198
  "description": "> Register a custom protocol and intercept existing protocol requests.\n\nProcess: Main\n\nAn example of implementing a protocol that has the same effect as the `file://` protocol:\n\n```\nconst { app, protocol, net } = require('electron')\nconst path = require('node:path')\nconst url = require('node:url')\n\napp.whenReady().then(() => {\n protocol.handle('atom', (request) => {\n const filePath = request.url.slice('atom://'.length)\n return net.fetch(url.pathToFileURL(path.join(__dirname, filePath)).toString())\n })\n})\n```\n\n**Note:** All methods unless specified can only be used after the `ready` event of the `app` module gets emitted.\n\n### Using `protocol` with a custom `partition` or `session`\n\nA protocol is registered to a specific Electron `session` object. If you don't specify a session, then your `protocol` will be applied to the default session that Electron uses. However, if you define a `partition` or `session` on your `browserWindow`'s `webPreferences`, then that window will use a different session and your custom protocol will not work if you just use `electron.protocol.XXX`.\n\nTo have your custom protocol work in combination with a custom session, you need to register it to that session explicitly.\n\n```\nconst { app, BrowserWindow, net, protocol, session } = require('electron')\nconst path = require('node:path')\nconst url = require('url')\n\napp.whenReady().then(() => {\n const partition = 'persist:example'\n const ses = session.fromPartition(partition)\n\n ses.protocol.handle('atom', (request) => {\n const filePath = request.url.slice('atom://'.length)\n return net.fetch(url.pathToFileURL(path.resolve(__dirname, filePath)).toString())\n })\n\n const mainWindow = new BrowserWindow({ webPreferences: { partition } })\n})\n```",
20199
20199
  "slug": "protocol",
20200
20200
  "websiteUrl": "https://electronjs.org/docs/api/protocol",
20201
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/protocol.md",
20202
- "version": "34.3.3",
20201
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/protocol.md",
20202
+ "version": "34.4.1",
20203
20203
  "type": "Module",
20204
20204
  "process": {
20205
20205
  "main": true,
@@ -21065,8 +21065,8 @@
21065
21065
  "description": "Process: Main\n\n> Register for and receive notifications from remote push notification services\n\nFor example, when registering for push notifications via Apple push notification services (APNS):",
21066
21066
  "slug": "push-notifications",
21067
21067
  "websiteUrl": "https://electronjs.org/docs/api/push-notifications",
21068
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/push-notifications.md",
21069
- "version": "34.3.3",
21068
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/push-notifications.md",
21069
+ "version": "34.4.1",
21070
21070
  "type": "Module",
21071
21071
  "process": {
21072
21072
  "main": true,
@@ -21099,7 +21099,7 @@
21099
21099
  {
21100
21100
  "name": "unregisterForAPNSNotifications",
21101
21101
  "signature": "()",
21102
- "description": "Unregisters the app from notifications received from APNS. See: https://developer.apple.com/documentation/appkit/nsapplication/1428747-unregisterforremotenotifications?language=objc",
21102
+ "description": "Unregisters the app from notifications received from APNS.\n\nApps unregistered through this method can always reregister.\n\nSee: https://developer.apple.com/documentation/appkit/nsapplication/1428747-unregisterforremotenotifications?language=objc",
21103
21103
  "parameters": [],
21104
21104
  "returns": null,
21105
21105
  "additionalTags": [
@@ -21155,8 +21155,8 @@
21155
21155
  "description": "> Allows access to simple encryption and decryption of strings for storage on the local machine.\n\nProcess: Main\n\nThis module adds extra protection to data being stored on disk by using OS-provided cryptography systems. Current security semantics for each platform are outlined below.\n\n* **macOS**: Encryption keys are stored for your app in Keychain Access in a way that prevents other applications from loading them without user override. Therefore, content is protected from other users and other apps running in the same userspace.\n* **Windows**: Encryption keys are generated via DPAPI. As per the Windows documentation: \"Typically, only a user with the same logon credential as the user who encrypted the data can typically decrypt the data\". Therefore, content is protected from other users on the same machine, but not from other apps running in the same userspace.\n* **Linux**: Encryption keys are generated and stored in a secret store that varies depending on your window manager and system setup. Options currently supported are `kwallet`, `kwallet5`, `kwallet6` and `gnome-libsecret`, but more may be available in future versions of Electron. As such, the security semantics of content protected via the `safeStorage` API vary between window managers and secret stores.\n * Note that not all Linux setups have an available secret store. If no secret store is available, items stored in using the `safeStorage` API will be unprotected as they are encrypted via hardcoded plaintext password. You can detect when this happens when `safeStorage.getSelectedStorageBackend()` returns `basic_text`.\n\nNote that on Mac, access to the system Keychain is required and these calls can block the current thread to collect user input. The same is true for Linux, if a password management tool is available.",
21156
21156
  "slug": "safe-storage",
21157
21157
  "websiteUrl": "https://electronjs.org/docs/api/safe-storage",
21158
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/safe-storage.md",
21159
- "version": "34.3.3",
21158
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/safe-storage.md",
21159
+ "version": "34.4.1",
21160
21160
  "type": "Module",
21161
21161
  "process": {
21162
21162
  "main": true,
@@ -21286,8 +21286,8 @@
21286
21286
  "description": "> Retrieve information about screen size, displays, cursor position, etc.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n`screen` is an EventEmitter.\n\n**Note:** In the renderer / DevTools, `window.screen` is a reserved DOM property, so writing `let { screen } = require('electron')` will not work.\n\nAn example of creating a window that fills the whole screen:\n\n```\n// Retrieve information about screen size, displays, cursor position, etc.\n//\n// For more info, see:\n// https://www.electronjs.org/docs/latest/api/screen\n\nconst { app, BrowserWindow, screen } = require('electron/main')\n\nlet mainWindow = null\n\napp.whenReady().then(() => {\n // Create a window that fills the screen's available work area.\n const primaryDisplay = screen.getPrimaryDisplay()\n const { width, height } = primaryDisplay.workAreaSize\n\n mainWindow = new BrowserWindow({ width, height })\n mainWindow.loadURL('https://electronjs.org')\n})\n```\n\nAnother example of creating a window in the external display:",
21287
21287
  "slug": "screen",
21288
21288
  "websiteUrl": "https://electronjs.org/docs/api/screen",
21289
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/screen.md",
21290
- "version": "34.3.3",
21289
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/screen.md",
21290
+ "version": "34.4.1",
21291
21291
  "type": "Module",
21292
21292
  "process": {
21293
21293
  "main": true,
@@ -21584,8 +21584,8 @@
21584
21584
  "description": "",
21585
21585
  "slug": "service-workers",
21586
21586
  "websiteUrl": "https://electronjs.org/docs/api/service-workers",
21587
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/service-workers.md",
21588
- "version": "34.3.3",
21587
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/service-workers.md",
21588
+ "version": "34.4.1",
21589
21589
  "type": "Class",
21590
21590
  "process": {
21591
21591
  "main": true,
@@ -21815,8 +21815,8 @@
21815
21815
  "description": "> Manage browser sessions, cookies, cache, proxy settings, etc.\n\nProcess: Main\n\nThe `session` module can be used to create new `Session` objects.\n\nYou can also access the `session` of existing pages by using the `session` property of `WebContents`, or from the `session` module.",
21816
21816
  "slug": "session",
21817
21817
  "websiteUrl": "https://electronjs.org/docs/api/session",
21818
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/session.md",
21819
- "version": "34.3.3",
21818
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/session.md",
21819
+ "version": "34.4.1",
21820
21820
  "type": "Module",
21821
21821
  "process": {
21822
21822
  "main": true,
@@ -21921,8 +21921,8 @@
21921
21921
  "description": "",
21922
21922
  "slug": "session",
21923
21923
  "websiteUrl": "https://electronjs.org/docs/api/session",
21924
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/session.md",
21925
- "version": "34.3.3",
21924
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/session.md",
21925
+ "version": "34.4.1",
21926
21926
  "type": "Class",
21927
21927
  "process": {
21928
21928
  "main": true,
@@ -25373,8 +25373,8 @@
25373
25373
  "description": "The `ShareMenu` class creates Share Menu on macOS, which can be used to share information from the current context to apps, social media accounts, and other services.\n\nFor including the share menu as a submenu of other menus, please use the `shareMenu` role of `MenuItem`.\n\n### Class: ShareMenu\n\n> Create share menu on macOS.\n\nProcess: Main",
25374
25374
  "slug": "share-menu",
25375
25375
  "websiteUrl": "https://electronjs.org/docs/api/share-menu",
25376
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/share-menu.md",
25377
- "version": "34.3.3",
25376
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/share-menu.md",
25377
+ "version": "34.4.1",
25378
25378
  "type": "Class",
25379
25379
  "process": {
25380
25380
  "main": true,
@@ -25441,8 +25441,8 @@
25441
25441
  "description": "> Manage files and URLs using their default applications.\n\nProcess: Main, Renderer (non-sandboxed only)\n\nThe `shell` module provides functions related to desktop integration.\n\nAn example of opening a URL in the user's default browser:\n\n```\nconst { shell } = require('electron')\n\nshell.openExternal('https://github.com')\n```\n\n**Note:** While the `shell` module can be used in the renderer process, it will not function in a sandboxed renderer.",
25442
25442
  "slug": "shell",
25443
25443
  "websiteUrl": "https://electronjs.org/docs/api/shell",
25444
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/shell.md",
25445
- "version": "34.3.3",
25444
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/shell.md",
25445
+ "version": "34.4.1",
25446
25446
  "type": "Module",
25447
25447
  "process": {
25448
25448
  "main": true,
@@ -25684,8 +25684,8 @@
25684
25684
  "description": "> Get system preferences.\n\nProcess: Main, Utility",
25685
25685
  "slug": "system-preferences",
25686
25686
  "websiteUrl": "https://electronjs.org/docs/api/system-preferences",
25687
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/system-preferences.md",
25688
- "version": "34.3.3",
25687
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/system-preferences.md",
25688
+ "version": "34.4.1",
25689
25689
  "type": "Module",
25690
25690
  "process": {
25691
25691
  "main": true,
@@ -26932,8 +26932,8 @@
26932
26932
  "description": "> Create a button in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
26933
26933
  "slug": "touch-bar-button",
26934
26934
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-button",
26935
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-button.md",
26936
- "version": "34.3.3",
26935
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-button.md",
26936
+ "version": "34.4.1",
26937
26937
  "type": "Class",
26938
26938
  "process": {
26939
26939
  "main": true,
@@ -27124,8 +27124,8 @@
27124
27124
  "description": "> Create a color picker in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27125
27125
  "slug": "touch-bar-color-picker",
27126
27126
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-color-picker",
27127
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-color-picker.md",
27128
- "version": "34.3.3",
27127
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-color-picker.md",
27128
+ "version": "34.4.1",
27129
27129
  "type": "Class",
27130
27130
  "process": {
27131
27131
  "main": true,
@@ -27217,8 +27217,8 @@
27217
27217
  "description": "> Create a group in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27218
27218
  "slug": "touch-bar-group",
27219
27219
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-group",
27220
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-group.md",
27221
- "version": "34.3.3",
27220
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-group.md",
27221
+ "version": "34.4.1",
27222
27222
  "type": "Class",
27223
27223
  "process": {
27224
27224
  "main": true,
@@ -27260,8 +27260,8 @@
27260
27260
  "description": "> Create a label in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27261
27261
  "slug": "touch-bar-label",
27262
27262
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-label",
27263
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-label.md",
27264
- "version": "34.3.3",
27263
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-label.md",
27264
+ "version": "34.4.1",
27265
27265
  "type": "Class",
27266
27266
  "process": {
27267
27267
  "main": true,
@@ -27353,8 +27353,8 @@
27353
27353
  "description": "> Instantiates a special \"other items proxy\", which nests TouchBar elements inherited from Chromium at the space indicated by the proxy. By default, this proxy is added to each TouchBar at the end of the input. For more information, see the AppKit docs on NSTouchBarItemIdentifierOtherItemsProxy\n\nNote: Only one instance of this class can be added per TouchBar.\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27354
27354
  "slug": "touch-bar-other-items-proxy",
27355
27355
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-other-items-proxy",
27356
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-other-items-proxy.md",
27357
- "version": "34.3.3",
27356
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-other-items-proxy.md",
27357
+ "version": "34.4.1",
27358
27358
  "type": "Class",
27359
27359
  "process": {
27360
27360
  "main": true,
@@ -27378,8 +27378,8 @@
27378
27378
  "description": "> Create a popover in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27379
27379
  "slug": "touch-bar-popover",
27380
27380
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-popover",
27381
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-popover.md",
27382
- "version": "34.3.3",
27381
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-popover.md",
27382
+ "version": "34.4.1",
27383
27383
  "type": "Class",
27384
27384
  "process": {
27385
27385
  "main": true,
@@ -27466,8 +27466,8 @@
27466
27466
  "description": "> Create a scrubber (a scrollable selector)\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27467
27467
  "slug": "touch-bar-scrubber",
27468
27468
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-scrubber",
27469
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-scrubber.md",
27470
- "version": "34.3.3",
27469
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-scrubber.md",
27470
+ "version": "34.4.1",
27471
27471
  "type": "Class",
27472
27472
  "process": {
27473
27473
  "main": true,
@@ -27716,8 +27716,8 @@
27716
27716
  "description": "> Create a segmented control (a button group) where one button has a selected state\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27717
27717
  "slug": "touch-bar-segmented-control",
27718
27718
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-segmented-control",
27719
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-segmented-control.md",
27720
- "version": "34.3.3",
27719
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-segmented-control.md",
27720
+ "version": "34.4.1",
27721
27721
  "type": "Class",
27722
27722
  "process": {
27723
27723
  "main": true,
@@ -27908,8 +27908,8 @@
27908
27908
  "description": "> Create a slider in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
27909
27909
  "slug": "touch-bar-slider",
27910
27910
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-slider",
27911
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-slider.md",
27912
- "version": "34.3.3",
27911
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-slider.md",
27912
+ "version": "34.4.1",
27913
27913
  "type": "Class",
27914
27914
  "process": {
27915
27915
  "main": true,
@@ -28032,8 +28032,8 @@
28032
28032
  "description": "> Create a spacer between two items in the touch bar for native macOS applications\n\nProcess: Main\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._",
28033
28033
  "slug": "touch-bar-spacer",
28034
28034
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-spacer",
28035
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar-spacer.md",
28036
- "version": "34.3.3",
28035
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-spacer.md",
28036
+ "version": "34.4.1",
28037
28037
  "type": "Class",
28038
28038
  "process": {
28039
28039
  "main": true,
@@ -28113,8 +28113,8 @@
28113
28113
  "description": "\n\n### Class: TouchBar\n\n> Create TouchBar layouts for native macOS applications\n\nProcess: Main",
28114
28114
  "slug": "touch-bar",
28115
28115
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar",
28116
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/touch-bar.md",
28117
- "version": "34.3.3",
28116
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar.md",
28117
+ "version": "34.4.1",
28118
28118
  "type": "Class",
28119
28119
  "process": {
28120
28120
  "main": true,
@@ -28343,8 +28343,8 @@
28343
28343
  "description": "\n\n### Class: Tray\n\n> Add icons and context menus to the system's notification area.\n\nProcess: Main\n\n`Tray` is an EventEmitter.\n\n```\nconst { app, Menu, Tray } = require('electron')\n\nlet tray = null\napp.whenReady().then(() => {\n tray = new Tray('/path/to/my/icon')\n const contextMenu = Menu.buildFromTemplate([\n { label: 'Item1', type: 'radio' },\n { label: 'Item2', type: 'radio' },\n { label: 'Item3', type: 'radio', checked: true },\n { label: 'Item4', type: 'radio' }\n ])\n tray.setToolTip('This is my application.')\n tray.setContextMenu(contextMenu)\n})\n```\n\n**Platform Considerations**\n\n**Linux**\n\n* Tray icon uses StatusNotifierItem by default, when it is not available in user's desktop environment the `GtkStatusIcon` will be used instead.\n* The `click` event is emitted when the tray icon receives activation from user, however the StatusNotifierItem spec does not specify which action would cause an activation, for some environments it is left mouse click, but for some it might be double left mouse click.\n* In order for changes made to individual `MenuItem`s to take effect, you have to call `setContextMenu` again. For example:\n\n```\nconst { app, Menu, Tray } = require('electron')\n\nlet appIcon = null\napp.whenReady().then(() => {\n appIcon = new Tray('/path/to/my/icon')\n const contextMenu = Menu.buildFromTemplate([\n { label: 'Item1', type: 'radio' },\n { label: 'Item2', type: 'radio' }\n ])\n\n // Make a change to the context menu\n contextMenu.items[1].checked = false\n\n // Call this again for Linux because we modified the context menu\n appIcon.setContextMenu(contextMenu)\n})\n```\n\n**MacOS**\n\n* Icons passed to the Tray constructor should be Template Images.\n* To make sure your icon isn't grainy on retina monitors, be sure your `@2x` image is 144dpi.\n* If you are bundling your application (e.g., with webpack for development), be sure that the file names are not being mangled or hashed. The filename needs to end in Template, and the `@2x` image needs to have the same filename as the standard image, or MacOS will not magically invert your image's colors or use the high density image.\n* 16x16 (72dpi) and 32x32@2x (144dpi) work well for most icons.\n\n**Windows**\n\n* It is recommended to use `ICO` icons to get best visual effects.",
28344
28344
  "slug": "tray",
28345
28345
  "websiteUrl": "https://electronjs.org/docs/api/tray",
28346
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/tray.md",
28347
- "version": "34.3.3",
28346
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/tray.md",
28347
+ "version": "34.4.1",
28348
28348
  "type": "Class",
28349
28349
  "process": {
28350
28350
  "main": true,
@@ -29161,8 +29161,8 @@
29161
29161
  "description": "`utilityProcess` creates a child process with Node.js and Message ports enabled. It provides the equivalent of `child_process.fork` API from Node.js but instead uses Services API from Chromium to launch the child process.\n\nProcess: Main",
29162
29162
  "slug": "utility-process",
29163
29163
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
29164
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/utility-process.md",
29165
- "version": "34.3.3",
29164
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/utility-process.md",
29165
+ "version": "34.4.1",
29166
29166
  "type": "Module",
29167
29167
  "process": {
29168
29168
  "main": true,
@@ -29305,8 +29305,8 @@
29305
29305
  "description": "",
29306
29306
  "slug": "utility-process",
29307
29307
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
29308
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/utility-process.md",
29309
- "version": "34.3.3",
29308
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/utility-process.md",
29309
+ "version": "34.4.1",
29310
29310
  "type": "Class",
29311
29311
  "process": {
29312
29312
  "main": true,
@@ -29501,8 +29501,8 @@
29501
29501
  "description": "> Create and layout native views.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Class: View\n\n> A basic native view.\n\nProcess: Main\n\n`View` is an EventEmitter.",
29502
29502
  "slug": "view",
29503
29503
  "websiteUrl": "https://electronjs.org/docs/api/view",
29504
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/view.md",
29505
- "version": "34.3.3",
29504
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/view.md",
29505
+ "version": "34.4.1",
29506
29506
  "type": "Class",
29507
29507
  "process": {
29508
29508
  "main": true,
@@ -29682,8 +29682,8 @@
29682
29682
  "description": "> A View that displays a WebContents.\n\nProcess: Main\n\nThis module cannot be used until the `ready` event of the `app` module is emitted.\n\n### Class: WebContentsView extends `View`\n\n> A View that displays a WebContents.\n\nProcess: Main\n\n`WebContentsView` inherits from `View`.\n\n`WebContentsView` is an EventEmitter.",
29683
29683
  "slug": "web-contents-view",
29684
29684
  "websiteUrl": "https://electronjs.org/docs/api/web-contents-view",
29685
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-contents-view.md",
29686
- "version": "34.3.3",
29685
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents-view.md",
29686
+ "version": "34.4.1",
29687
29687
  "type": "Class",
29688
29688
  "process": {
29689
29689
  "main": true,
@@ -29745,8 +29745,8 @@
29745
29745
  "description": "> Render and control web pages.\n\nProcess: Main\n\n`webContents` is an EventEmitter. It is responsible for rendering and controlling a web page and is a property of the `BrowserWindow` object. An example of accessing the `webContents` object:\n\n### Navigation Events\n\nSeveral events can be used to monitor navigations as they occur within a `webContents`.\n\n### Document Navigations\n\nWhen a `webContents` navigates to another page (as opposed to an in-page navigation), the following events will be fired.\n\n* `did-start-navigation`\n* `will-frame-navigate`\n* `will-navigate` (only fired when main frame navigates)\n* `will-redirect` (only fired when a redirect happens during navigation)\n* `did-redirect-navigation` (only fired when a redirect happens during navigation)\n* `did-frame-navigate`\n* `did-navigate` (only fired when main frame navigates)\n\nSubsequent events will not fire if `event.preventDefault()` is called on any of the cancellable events.\n\n### In-page Navigation\n\nIn-page navigations don't cause the page to reload, but instead navigate to a location within the current page. These events are not cancellable. For an in-page navigations, the following events will fire in this order:\n\n* `did-start-navigation`\n* `did-navigate-in-page`\n\n### Frame Navigation\n\nThe `will-navigate` and `did-navigate` events only fire when the mainFrame navigates. If you want to also observe navigations in `<iframe>`s, use `will-frame-navigate` and `did-frame-navigate` events.",
29746
29746
  "slug": "web-contents",
29747
29747
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29748
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-contents.md",
29749
- "version": "34.3.3",
29748
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents.md",
29749
+ "version": "34.4.1",
29750
29750
  "type": "Module",
29751
29751
  "process": {
29752
29752
  "main": true,
@@ -29886,8 +29886,8 @@
29886
29886
  "description": "",
29887
29887
  "slug": "web-contents",
29888
29888
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29889
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-contents.md",
29890
- "version": "34.3.3",
29889
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents.md",
29890
+ "version": "34.4.1",
29891
29891
  "type": "Class",
29892
29892
  "process": {
29893
29893
  "main": true,
@@ -35940,8 +35940,8 @@
35940
35940
  "description": "> Control web pages and iframes.\n\nProcess: Main\n\nThe `webFrameMain` module can be used to lookup frames across existing `WebContents` instances. Navigation events are the common use case.\n\n```\nconst { BrowserWindow, webFrameMain } = require('electron')\n\nconst win = new BrowserWindow({ width: 800, height: 1500 })\nwin.loadURL('https://twitter.com')\n\nwin.webContents.on(\n 'did-frame-navigate',\n (event, url, httpResponseCode, httpStatusText, isMainFrame, frameProcessId, frameRoutingId) => {\n const frame = webFrameMain.fromId(frameProcessId, frameRoutingId)\n if (frame) {\n const code = 'document.body.innerHTML = document.body.innerHTML.replaceAll(\"heck\", \"h*ck\")'\n frame.executeJavaScript(code)\n }\n }\n)\n```\n\nYou can also access frames of existing pages by using the `mainFrame` property of `WebContents`.",
35941
35941
  "slug": "web-frame-main",
35942
35942
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35943
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-frame-main.md",
35944
- "version": "34.3.3",
35943
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame-main.md",
35944
+ "version": "34.4.1",
35945
35945
  "type": "Module",
35946
35946
  "process": {
35947
35947
  "main": true,
@@ -35996,8 +35996,8 @@
35996
35996
  "description": "",
35997
35997
  "slug": "web-frame-main",
35998
35998
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35999
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-frame-main.md",
36000
- "version": "34.3.3",
35999
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame-main.md",
36000
+ "version": "34.4.1",
36001
36001
  "type": "Class",
36002
36002
  "process": {
36003
36003
  "main": true,
@@ -36355,8 +36355,8 @@
36355
36355
  "description": "> Customize the rendering of the current web page.\n\nProcess: Renderer\n\n`webFrame` export of the Electron module is an instance of the `WebFrame` class representing the current frame. Sub-frames can be retrieved by certain properties and methods (e.g. `webFrame.firstChild`).\n\nAn example of zooming current page to 200%.",
36356
36356
  "slug": "web-frame",
36357
36357
  "websiteUrl": "https://electronjs.org/docs/api/web-frame",
36358
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-frame.md",
36359
- "version": "34.3.3",
36358
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame.md",
36359
+ "version": "34.4.1",
36360
36360
  "type": "Module",
36361
36361
  "process": {
36362
36362
  "main": false,
@@ -37069,8 +37069,8 @@
37069
37069
  "description": "",
37070
37070
  "slug": "web-request",
37071
37071
  "websiteUrl": "https://electronjs.org/docs/api/web-request",
37072
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-request.md",
37073
- "version": "34.3.3",
37072
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-request.md",
37073
+ "version": "34.4.1",
37074
37074
  "type": "Class",
37075
37075
  "process": {
37076
37076
  "main": true,
@@ -38987,8 +38987,8 @@
38987
38987
  "description": "> A utility layer to interact with Web API objects (Files, Blobs, etc.)\n\nProcess: Renderer",
38988
38988
  "slug": "web-utils",
38989
38989
  "websiteUrl": "https://electronjs.org/docs/api/web-utils",
38990
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/web-utils.md",
38991
- "version": "34.3.3",
38990
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-utils.md",
38991
+ "version": "34.4.1",
38992
38992
  "type": "Module",
38993
38993
  "process": {
38994
38994
  "main": false,
@@ -39029,8 +39029,8 @@
39029
39029
  "description": "\n\n### Warning\n\nElectron's `webview` tag is based on Chromium's `webview`, which is undergoing dramatic architectural changes. This impacts the stability of `webviews`, including rendering, navigation, and event routing. We currently recommend to not use the `webview` tag and to consider alternatives, like `iframe`, a `WebContentsView`, or an architecture that avoids embedded content altogether.\n\n### Enabling\n\nBy default the `webview` tag is disabled in Electron >= 5. You need to enable the tag by setting the `webviewTag` webPreferences option when constructing your `BrowserWindow`. For more information see the BrowserWindow constructor docs.\n\n### Overview\n\n> Display external web content in an isolated frame and process.\n\nProcess: Renderer\n _This class is not exported from the `'electron'` module. It is only available as a return value of other methods in the Electron API._\n\nUse the `webview` tag to embed 'guest' content (such as web pages) in your Electron app. The guest content is contained within the `webview` container. An embedded page within your app controls how the guest content is laid out and rendered.\n\nUnlike an `iframe`, the `webview` runs in a separate process than your app. It doesn't have the same permissions as your web page and all interactions between your app and embedded content will be asynchronous. This keeps your app safe from the embedded content. **Note:** Most methods called on the webview from the host page require a synchronous call to the main process.\n\n### Example\n\nTo embed a web page in your app, add the `webview` tag to your app's embedder page (this is the app page that will display the guest content). In its simplest form, the `webview` tag includes the `src` of the web page and css styles that control the appearance of the `webview` container:\n\n```\n<webview id=\"foo\" src=\"https://www.github.com/\" style=\"display:inline-flex; width:640px; height:480px\"></webview>\n```\n\nIf you want to control the guest content in any way, you can write JavaScript that listens for `webview` events and responds to those events using the `webview` methods. Here's sample code with two event listeners: one that listens for the web page to start loading, the other for the web page to stop loading, and displays a \"loading...\" message during the load time:\n\n```\n<script>\n onload = () => {\n const webview = document.querySelector('webview')\n const indicator = document.querySelector('.indicator')\n\n const loadstart = () => {\n indicator.innerText = 'loading...'\n }\n\n const loadstop = () => {\n indicator.innerText = ''\n }\n\n webview.addEventListener('did-start-loading', loadstart)\n webview.addEventListener('did-stop-loading', loadstop)\n }\n</script>\n```\n\n### Internal implementation\n\nUnder the hood `webview` is implemented with Out-of-Process iframes (OOPIFs). The `webview` tag is essentially a custom element using shadow DOM to wrap an `iframe` element inside it.\n\nSo the behavior of `webview` is very similar to a cross-domain `iframe`, as examples:\n\n* When clicking into a `webview`, the page focus will move from the embedder frame to `webview`.\n* You can not add keyboard, mouse, and scroll event listeners to `webview`.\n* All reactions between the embedder frame and `webview` are asynchronous.\n\n### CSS Styling Notes\n\nPlease note that the `webview` tag's style uses `display:flex;` internally to ensure the child `iframe` element fills the full height and width of its `webview` container when used with traditional and flexbox layouts. Please do not overwrite the default `display:flex;` CSS property, unless specifying `display:inline-flex;` for inline layout.\n\n### Tag Attributes\n\nThe `webview` tag has the following attributes:\n\n### `src`\n\n```\n<webview src=\"https://www.github.com/\"></webview>\n```\n\nA `string` representing the visible URL. Writing to this attribute initiates top-level navigation.\n\nAssigning `src` its own value will reload the current page.\n\nThe `src` attribute can also accept data URLs, such as `data:text/plain,Hello, world!`.\n\n### `nodeintegration`\n\n```\n<webview src=\"https://www.google.com/\" nodeintegration></webview>\n```\n\nA `boolean`. When this attribute is present the guest page in `webview` will have node integration and can use node APIs like `require` and `process` to access low level system resources. Node integration is disabled by default in the guest page.\n\n### `nodeintegrationinsubframes`\n\n```\n<webview src=\"https://www.google.com/\" nodeintegrationinsubframes></webview>\n```\n\nA `boolean` for the experimental option for enabling NodeJS support in sub-frames such as iframes inside the `webview`. All your preloads will load for every iframe, you can use `process.isMainFrame` to determine if you are in the main frame or not. This option is disabled by default in the guest page.\n\n### `plugins`\n\n```\n<webview src=\"https://www.github.com/\" plugins></webview>\n```\n\nA `boolean`. When this attribute is present the guest page in `webview` will be able to use browser plugins. Plugins are disabled by default.\n\n### `preload`\n\n```\n<!-- from a file -->\n<webview src=\"https://www.github.com/\" preload=\"./test.js\"></webview>\n<!-- or if you want to load from an asar archive -->\n<webview src=\"https://www.github.com/\" preload=\"./app.asar/test.js\"></webview>\n```\n\nA `string` that specifies a script that will be loaded before other scripts run in the guest page. The protocol of script's URL must be `file:` (even when using `asar:` archives) because it will be loaded by Node's `require` under the hood, which treats `asar:` archives as virtual directories.\n\nWhen the guest page doesn't have node integration this script will still have access to all Node APIs, but global objects injected by Node will be deleted after this script has finished executing.\n\n### `httpreferrer`\n\n```\n<webview src=\"https://www.github.com/\" httpreferrer=\"https://example.com/\"></webview>\n```\n\nA `string` that sets the referrer URL for the guest page.\n\n### `useragent`\n\n```\n<webview src=\"https://www.github.com/\" useragent=\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; AS; rv:11.0) like Gecko\"></webview>\n```\n\nA `string` that sets the user agent for the guest page before the page is navigated to. Once the page is loaded, use the `setUserAgent` method to change the user agent.\n\n### `disablewebsecurity`\n\n```\n<webview src=\"https://www.github.com/\" disablewebsecurity></webview>\n```\n\nA `boolean`. When this attribute is present the guest page will have web security disabled. Web security is enabled by default.\n\nThis value can only be modified before the first navigation.\n\n### `partition`\n\n```\n<webview src=\"https://github.com\" partition=\"persist:github\"></webview>\n<webview src=\"https://electronjs.org\" partition=\"electron\"></webview>\n```\n\nA `string` that sets the session used by the page. If `partition` starts with `persist:`, the page will use a persistent session available to all pages in the app with the same `partition`. if there is no `persist:` prefix, the page will use an in-memory session. By assigning the same `partition`, multiple pages can share the same session. If the `partition` is unset then default session of the app will be used.\n\nThis value can only be modified before the first navigation, since the session of an active renderer process cannot change. Subsequent attempts to modify the value will fail with a DOM exception.\n\n### `allowpopups`\n\n```\n<webview src=\"https://www.github.com/\" allowpopups></webview>\n```\n\nA `boolean`. When this attribute is present the guest page will be allowed to open new windows. Popups are disabled by default.\n\n### `webpreferences`\n\n```\n<webview src=\"https://github.com\" webpreferences=\"allowRunningInsecureContent, javascript=no\"></webview>\n```\n\nA `string` which is a comma separated list of strings which specifies the web preferences to be set on the webview. The full list of supported preference strings can be found in BrowserWindow.\n\nThe string follows the same format as the features string in `window.open`. A name by itself is given a `true` boolean value. A preference can be set to another value by including an `=`, followed by the value. Special values `yes` and `1` are interpreted as `true`, while `no` and `0` are interpreted as `false`.\n\n### `enableblinkfeatures`\n\n```\n<webview src=\"https://www.github.com/\" enableblinkfeatures=\"PreciseMemoryInfo, CSSVariables\"></webview>\n```\n\nA `string` which is a list of strings which specifies the blink features to be enabled separated by `,`. The full list of supported feature strings can be found in the RuntimeEnabledFeatures.json5 file.\n\n### `disableblinkfeatures`\n\n```\n<webview src=\"https://www.github.com/\" disableblinkfeatures=\"PreciseMemoryInfo, CSSVariables\"></webview>\n```\n\nA `string` which is a list of strings which specifies the blink features to be disabled separated by `,`. The full list of supported feature strings can be found in the RuntimeEnabledFeatures.json5 file.",
39030
39030
  "slug": "webview-tag",
39031
39031
  "websiteUrl": "https://electronjs.org/docs/api/webview-tag",
39032
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/webview-tag.md",
39033
- "version": "34.3.3",
39032
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/webview-tag.md",
39033
+ "version": "34.4.1",
39034
39034
  "type": "Element",
39035
39035
  "process": {
39036
39036
  "main": false,
@@ -42175,8 +42175,8 @@
42175
42175
  "description": "When setting minimum or maximum window size with `minWidth`/`maxWidth`/ `minHeight`/`maxHeight`, it only constrains the users. It won't prevent you from passing a size that does not follow size constraints to `setBounds`/`setSize` or to the constructor of `BrowserWindow`.\n\nThe possible values and behaviors of the `type` option are platform dependent. Possible values are:\n\n* On Linux, possible types are `desktop`, `dock`, `toolbar`, `splash`, `notification`.\n * The `desktop` type places the window at the desktop background window level (kCGDesktopWindowLevel - 1). However, note that a desktop window will not receive focus, keyboard, or mouse events. You can still use globalShortcut to receive input sparingly.\n * The `dock` type creates a dock-like window behavior.\n * The `toolbar` type creates a window with a toolbar appearance.\n * The `splash` type behaves in a specific way. It is not draggable, even if the CSS styling of the window's body contains -webkit-app-region: drag. This type is commonly used for splash screens.\n * The `notification` type creates a window that behaves like a system notification.\n* On macOS, possible types are `desktop`, `textured`, `panel`.\n * The `textured` type adds metal gradient appearance. This option is **deprecated**.\n * The `desktop` type places the window at the desktop background window level (`kCGDesktopWindowLevel - 1`). Note that desktop window will not receive focus, keyboard or mouse events, but you can use `globalShortcut` to receive input sparingly.\n * The `panel` type enables the window to float on top of full-screened apps by adding the `NSWindowStyleMaskNonactivatingPanel` style mask,normally reserved for NSPanel, at runtime. Also, the window will appear on all spaces (desktops).\n* On Windows, possible type is `toolbar`.",
42176
42176
  "slug": "base-window-options",
42177
42177
  "websiteUrl": "https://electronjs.org/docs/api/structures/base-window-options",
42178
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/base-window-options.md",
42179
- "version": "34.3.3",
42178
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/base-window-options.md",
42179
+ "version": "34.4.1",
42180
42180
  "properties": [
42181
42181
  {
42182
42182
  "name": "width",
@@ -42791,8 +42791,8 @@
42791
42791
  "description": "",
42792
42792
  "slug": "bluetooth-device",
42793
42793
  "websiteUrl": "https://electronjs.org/docs/api/structures/bluetooth-device",
42794
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/bluetooth-device.md",
42795
- "version": "34.3.3",
42794
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/bluetooth-device.md",
42795
+ "version": "34.4.1",
42796
42796
  "properties": [
42797
42797
  {
42798
42798
  "name": "deviceName",
@@ -42821,8 +42821,8 @@
42821
42821
  "description": "",
42822
42822
  "slug": "browser-window-options",
42823
42823
  "websiteUrl": "https://electronjs.org/docs/api/structures/browser-window-options",
42824
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/browser-window-options.md",
42825
- "version": "34.3.3",
42824
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/browser-window-options.md",
42825
+ "version": "34.4.1",
42826
42826
  "properties": [
42827
42827
  {
42828
42828
  "name": "webPreferences",
@@ -42848,8 +42848,8 @@
42848
42848
  "description": "",
42849
42849
  "slug": "certificate-principal",
42850
42850
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate-principal",
42851
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/certificate-principal.md",
42852
- "version": "34.3.3",
42851
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/certificate-principal.md",
42852
+ "version": "34.4.1",
42853
42853
  "properties": [
42854
42854
  {
42855
42855
  "name": "commonName",
@@ -42913,8 +42913,8 @@
42913
42913
  "description": "",
42914
42914
  "slug": "certificate",
42915
42915
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate",
42916
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/certificate.md",
42917
- "version": "34.3.3",
42916
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/certificate.md",
42917
+ "version": "34.4.1",
42918
42918
  "properties": [
42919
42919
  {
42920
42920
  "name": "data",
@@ -43009,8 +43009,8 @@
43009
43009
  "description": "",
43010
43010
  "slug": "cookie",
43011
43011
  "websiteUrl": "https://electronjs.org/docs/api/structures/cookie",
43012
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/cookie.md",
43013
- "version": "34.3.3",
43012
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/cookie.md",
43013
+ "version": "34.4.1",
43014
43014
  "properties": [
43015
43015
  {
43016
43016
  "name": "name",
@@ -43122,8 +43122,8 @@
43122
43122
  "description": "",
43123
43123
  "slug": "cpu-usage",
43124
43124
  "websiteUrl": "https://electronjs.org/docs/api/structures/cpu-usage",
43125
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/cpu-usage.md",
43126
- "version": "34.3.3",
43125
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/cpu-usage.md",
43126
+ "version": "34.4.1",
43127
43127
  "properties": [
43128
43128
  {
43129
43129
  "name": "percentCPUUsage",
@@ -43157,8 +43157,8 @@
43157
43157
  "description": "",
43158
43158
  "slug": "crash-report",
43159
43159
  "websiteUrl": "https://electronjs.org/docs/api/structures/crash-report",
43160
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/crash-report.md",
43161
- "version": "34.3.3",
43160
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/crash-report.md",
43161
+ "version": "34.4.1",
43162
43162
  "properties": [
43163
43163
  {
43164
43164
  "name": "date",
@@ -43185,8 +43185,8 @@
43185
43185
  "description": "",
43186
43186
  "slug": "custom-scheme",
43187
43187
  "websiteUrl": "https://electronjs.org/docs/api/structures/custom-scheme",
43188
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/custom-scheme.md",
43189
- "version": "34.3.3",
43188
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/custom-scheme.md",
43189
+ "version": "34.4.1",
43190
43190
  "properties": [
43191
43191
  {
43192
43192
  "name": "scheme",
@@ -43279,8 +43279,8 @@
43279
43279
  "description": "",
43280
43280
  "slug": "desktop-capturer-source",
43281
43281
  "websiteUrl": "https://electronjs.org/docs/api/structures/desktop-capturer-source",
43282
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/desktop-capturer-source.md",
43283
- "version": "34.3.3",
43282
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/desktop-capturer-source.md",
43283
+ "version": "34.4.1",
43284
43284
  "properties": [
43285
43285
  {
43286
43286
  "name": "id",
@@ -43333,8 +43333,8 @@
43333
43333
  "description": "The `Display` object represents a physical display connected to the system. A fake `Display` may exist on a headless system, or a `Display` may correspond to a remote, virtual display.",
43334
43334
  "slug": "display",
43335
43335
  "websiteUrl": "https://electronjs.org/docs/api/structures/display",
43336
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/display.md",
43337
- "version": "34.3.3",
43336
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/display.md",
43337
+ "version": "34.4.1",
43338
43338
  "properties": [
43339
43339
  {
43340
43340
  "name": "accelerometerSupport",
@@ -43526,8 +43526,8 @@
43526
43526
  "description": "",
43527
43527
  "slug": "extension-info",
43528
43528
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension-info",
43529
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/extension-info.md",
43530
- "version": "34.3.3",
43529
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/extension-info.md",
43530
+ "version": "34.4.1",
43531
43531
  "properties": [
43532
43532
  {
43533
43533
  "name": "name",
@@ -43555,8 +43555,8 @@
43555
43555
  "description": "",
43556
43556
  "slug": "extension",
43557
43557
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension",
43558
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/extension.md",
43559
- "version": "34.3.3",
43558
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/extension.md",
43559
+ "version": "34.4.1",
43560
43560
  "properties": [
43561
43561
  {
43562
43562
  "name": "id",
@@ -43619,8 +43619,8 @@
43619
43619
  "description": "",
43620
43620
  "slug": "file-filter",
43621
43621
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-filter",
43622
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/file-filter.md",
43623
- "version": "34.3.3",
43622
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/file-filter.md",
43623
+ "version": "34.4.1",
43624
43624
  "properties": [
43625
43625
  {
43626
43626
  "name": "name",
@@ -43648,8 +43648,8 @@
43648
43648
  "description": "",
43649
43649
  "slug": "file-path-with-headers",
43650
43650
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-path-with-headers",
43651
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/file-path-with-headers.md",
43652
- "version": "34.3.3",
43651
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/file-path-with-headers.md",
43652
+ "version": "34.4.1",
43653
43653
  "properties": [
43654
43654
  {
43655
43655
  "name": "path",
@@ -43689,8 +43689,8 @@
43689
43689
  "description": "",
43690
43690
  "slug": "filesystem-permission-request",
43691
43691
  "websiteUrl": "https://electronjs.org/docs/api/structures/filesystem-permission-request",
43692
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/filesystem-permission-request.md",
43693
- "version": "34.3.3",
43692
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/filesystem-permission-request.md",
43693
+ "version": "34.4.1",
43694
43694
  "properties": [
43695
43695
  {
43696
43696
  "name": "filePath",
@@ -43735,8 +43735,8 @@
43735
43735
  "description": "Possible values:\n\n* `disabled_software` - Software only. Hardware acceleration disabled (yellow)\n* `disabled_off` - Disabled (red)\n* `disabled_off_ok` - Disabled (yellow)\n* `unavailable_software` - Software only, hardware acceleration unavailable (yellow)\n* `unavailable_off` - Unavailable (red)\n* `unavailable_off_ok` - Unavailable (yellow)\n* `enabled_readback` - Hardware accelerated but at reduced performance (yellow)\n* `enabled_force` - Hardware accelerated on all pages (green)\n* `enabled` - Hardware accelerated (green)\n* `enabled_on` - Enabled (green)\n* `enabled_force_on` - Force enabled (green)",
43736
43736
  "slug": "gpu-feature-status",
43737
43737
  "websiteUrl": "https://electronjs.org/docs/api/structures/gpu-feature-status",
43738
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/gpu-feature-status.md",
43739
- "version": "34.3.3",
43738
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/gpu-feature-status.md",
43739
+ "version": "34.4.1",
43740
43740
  "properties": [
43741
43741
  {
43742
43742
  "name": "2d_canvas",
@@ -43863,8 +43863,8 @@
43863
43863
  "description": "",
43864
43864
  "slug": "hid-device",
43865
43865
  "websiteUrl": "https://electronjs.org/docs/api/structures/hid-device",
43866
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/hid-device.md",
43867
- "version": "34.3.3",
43866
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/hid-device.md",
43867
+ "version": "34.4.1",
43868
43868
  "properties": [
43869
43869
  {
43870
43870
  "name": "deviceId",
@@ -43926,8 +43926,8 @@
43926
43926
  "description": "",
43927
43927
  "slug": "input-event",
43928
43928
  "websiteUrl": "https://electronjs.org/docs/api/structures/input-event",
43929
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/input-event.md",
43930
- "version": "34.3.3",
43929
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/input-event.md",
43930
+ "version": "34.4.1",
43931
43931
  "properties": [
43932
43932
  {
43933
43933
  "name": "type",
@@ -44186,8 +44186,8 @@
44186
44186
  "description": "",
44187
44187
  "slug": "ipc-main-event",
44188
44188
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-event",
44189
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/ipc-main-event.md",
44190
- "version": "34.3.3",
44189
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-main-event.md",
44190
+ "version": "34.4.1",
44191
44191
  "properties": [
44192
44192
  {
44193
44193
  "name": "processId",
@@ -44283,8 +44283,8 @@
44283
44283
  "description": "",
44284
44284
  "slug": "ipc-main-invoke-event",
44285
44285
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-invoke-event",
44286
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/ipc-main-invoke-event.md",
44287
- "version": "34.3.3",
44286
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-main-invoke-event.md",
44287
+ "version": "34.4.1",
44288
44288
  "properties": [
44289
44289
  {
44290
44290
  "name": "processId",
@@ -44338,8 +44338,8 @@
44338
44338
  "description": "",
44339
44339
  "slug": "ipc-renderer-event",
44340
44340
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-renderer-event",
44341
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/ipc-renderer-event.md",
44342
- "version": "34.3.3",
44341
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-renderer-event.md",
44342
+ "version": "34.4.1",
44343
44343
  "properties": [
44344
44344
  {
44345
44345
  "name": "sender",
@@ -44365,8 +44365,8 @@
44365
44365
  "description": "**Note:** If a `JumpListCategory` object has neither the `type` nor the `name` property set then its `type` is assumed to be `tasks`. If the `name` property is set but the `type` property is omitted then the `type` is assumed to be `custom`.\n\n**Note:** The maximum length of a Jump List item's `description` property is 260 characters. Beyond this limit, the item will not be added to the Jump List, nor will it be displayed.",
44366
44366
  "slug": "jump-list-category",
44367
44367
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-category",
44368
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/jump-list-category.md",
44369
- "version": "34.3.3",
44368
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/jump-list-category.md",
44369
+ "version": "34.4.1",
44370
44370
  "properties": [
44371
44371
  {
44372
44372
  "name": "type",
@@ -44419,8 +44419,8 @@
44419
44419
  "description": "",
44420
44420
  "slug": "jump-list-item",
44421
44421
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-item",
44422
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/jump-list-item.md",
44423
- "version": "34.3.3",
44422
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/jump-list-item.md",
44423
+ "version": "34.4.1",
44424
44424
  "properties": [
44425
44425
  {
44426
44426
  "name": "type",
@@ -44523,8 +44523,8 @@
44523
44523
  "description": "",
44524
44524
  "slug": "keyboard-event",
44525
44525
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-event",
44526
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/keyboard-event.md",
44527
- "version": "34.3.3",
44526
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/keyboard-event.md",
44527
+ "version": "34.4.1",
44528
44528
  "properties": [
44529
44529
  {
44530
44530
  "name": "ctrlKey",
@@ -44575,8 +44575,8 @@
44575
44575
  "description": "",
44576
44576
  "slug": "keyboard-input-event",
44577
44577
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-input-event",
44578
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/keyboard-input-event.md",
44579
- "version": "34.3.3",
44578
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/keyboard-input-event.md",
44579
+ "version": "34.4.1",
44580
44580
  "properties": [
44581
44581
  {
44582
44582
  "name": "type",
@@ -44622,8 +44622,8 @@
44622
44622
  "description": "",
44623
44623
  "slug": "media-access-permission-request",
44624
44624
  "websiteUrl": "https://electronjs.org/docs/api/structures/media-access-permission-request",
44625
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/media-access-permission-request.md",
44626
- "version": "34.3.3",
44625
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/media-access-permission-request.md",
44626
+ "version": "34.4.1",
44627
44627
  "properties": [
44628
44628
  {
44629
44629
  "name": "securityOrigin",
@@ -44660,8 +44660,8 @@
44660
44660
  "description": "Note that all statistics are reported in Kilobytes.",
44661
44661
  "slug": "memory-info",
44662
44662
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-info",
44663
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/memory-info.md",
44664
- "version": "34.3.3",
44663
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/memory-info.md",
44664
+ "version": "34.4.1",
44665
44665
  "properties": [
44666
44666
  {
44667
44667
  "name": "workingSetSize",
@@ -44697,8 +44697,8 @@
44697
44697
  "description": "",
44698
44698
  "slug": "memory-usage-details",
44699
44699
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-usage-details",
44700
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/memory-usage-details.md",
44701
- "version": "34.3.3",
44700
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/memory-usage-details.md",
44701
+ "version": "34.4.1",
44702
44702
  "properties": [
44703
44703
  {
44704
44704
  "name": "count",
@@ -44732,8 +44732,8 @@
44732
44732
  "description": "",
44733
44733
  "slug": "mime-typed-buffer",
44734
44734
  "websiteUrl": "https://electronjs.org/docs/api/structures/mime-typed-buffer",
44735
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/mime-typed-buffer.md",
44736
- "version": "34.3.3",
44735
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mime-typed-buffer.md",
44736
+ "version": "34.4.1",
44737
44737
  "properties": [
44738
44738
  {
44739
44739
  "name": "mimeType",
@@ -44770,8 +44770,8 @@
44770
44770
  "description": "",
44771
44771
  "slug": "mouse-input-event",
44772
44772
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-input-event",
44773
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/mouse-input-event.md",
44774
- "version": "34.3.3",
44773
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mouse-input-event.md",
44774
+ "version": "34.4.1",
44775
44775
  "properties": [
44776
44776
  {
44777
44777
  "name": "type",
@@ -44898,8 +44898,8 @@
44898
44898
  "description": "",
44899
44899
  "slug": "mouse-wheel-input-event",
44900
44900
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-wheel-input-event",
44901
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/mouse-wheel-input-event.md",
44902
- "version": "34.3.3",
44901
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mouse-wheel-input-event.md",
44902
+ "version": "34.4.1",
44903
44903
  "properties": [
44904
44904
  {
44905
44905
  "name": "type",
@@ -44987,8 +44987,8 @@
44987
44987
  "description": "",
44988
44988
  "slug": "navigation-entry",
44989
44989
  "websiteUrl": "https://electronjs.org/docs/api/structures/navigation-entry",
44990
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/navigation-entry.md",
44991
- "version": "34.3.3",
44990
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/navigation-entry.md",
44991
+ "version": "34.4.1",
44992
44992
  "properties": [
44993
44993
  {
44994
44994
  "name": "url",
@@ -45025,8 +45025,8 @@
45025
45025
  "description": "",
45026
45026
  "slug": "notification-action",
45027
45027
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-action",
45028
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/notification-action.md",
45029
- "version": "34.3.3",
45028
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/notification-action.md",
45029
+ "version": "34.4.1",
45030
45030
  "properties": [
45031
45031
  {
45032
45032
  "name": "type",
@@ -45059,8 +45059,8 @@
45059
45059
  "description": "",
45060
45060
  "slug": "notification-response",
45061
45061
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-response",
45062
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/notification-response.md",
45063
- "version": "34.3.3",
45062
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/notification-response.md",
45063
+ "version": "34.4.1",
45064
45064
  "properties": [
45065
45065
  {
45066
45066
  "name": "actionIdentifier",
@@ -45124,8 +45124,8 @@
45124
45124
  "description": "",
45125
45125
  "slug": "offscreen-shared-texture",
45126
45126
  "websiteUrl": "https://electronjs.org/docs/api/structures/offscreen-shared-texture",
45127
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/offscreen-shared-texture.md",
45128
- "version": "34.3.3",
45127
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/offscreen-shared-texture.md",
45128
+ "version": "34.4.1",
45129
45129
  "properties": [
45130
45130
  {
45131
45131
  "name": "textureInfo",
@@ -45332,8 +45332,8 @@
45332
45332
  "description": "",
45333
45333
  "slug": "open-external-permission-request",
45334
45334
  "websiteUrl": "https://electronjs.org/docs/api/structures/open-external-permission-request",
45335
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/open-external-permission-request.md",
45336
- "version": "34.3.3",
45335
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/open-external-permission-request.md",
45336
+ "version": "34.4.1",
45337
45337
  "properties": [
45338
45338
  {
45339
45339
  "name": "externalURL",
@@ -45352,8 +45352,8 @@
45352
45352
  "description": "",
45353
45353
  "slug": "payment-discount",
45354
45354
  "websiteUrl": "https://electronjs.org/docs/api/structures/payment-discount",
45355
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/payment-discount.md",
45356
- "version": "34.3.3",
45355
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/payment-discount.md",
45356
+ "version": "34.4.1",
45357
45357
  "properties": [
45358
45358
  {
45359
45359
  "name": "identifier",
@@ -45407,8 +45407,8 @@
45407
45407
  "description": "",
45408
45408
  "slug": "permission-request",
45409
45409
  "websiteUrl": "https://electronjs.org/docs/api/structures/permission-request",
45410
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/permission-request.md",
45411
- "version": "34.3.3",
45410
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/permission-request.md",
45411
+ "version": "34.4.1",
45412
45412
  "properties": [
45413
45413
  {
45414
45414
  "name": "requestingUrl",
@@ -45435,8 +45435,8 @@
45435
45435
  "description": "**Note:** Both `x` and `y` must be whole integers, when providing a point object as input to an Electron API we will automatically round your `x` and `y` values to the nearest whole integer.",
45436
45436
  "slug": "point",
45437
45437
  "websiteUrl": "https://electronjs.org/docs/api/structures/point",
45438
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/point.md",
45439
- "version": "34.3.3",
45438
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/point.md",
45439
+ "version": "34.4.1",
45440
45440
  "properties": [
45441
45441
  {
45442
45442
  "name": "x",
@@ -45462,8 +45462,8 @@
45462
45462
  "description": "",
45463
45463
  "slug": "post-body",
45464
45464
  "websiteUrl": "https://electronjs.org/docs/api/structures/post-body",
45465
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/post-body.md",
45466
- "version": "34.3.3",
45465
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/post-body.md",
45466
+ "version": "34.4.1",
45467
45467
  "properties": [
45468
45468
  {
45469
45469
  "name": "data",
@@ -45508,8 +45508,8 @@
45508
45508
  "description": "",
45509
45509
  "slug": "printer-info",
45510
45510
  "websiteUrl": "https://electronjs.org/docs/api/structures/printer-info",
45511
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/printer-info.md",
45512
- "version": "34.3.3",
45511
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/printer-info.md",
45512
+ "version": "34.4.1",
45513
45513
  "properties": [
45514
45514
  {
45515
45515
  "name": "name",
@@ -45571,8 +45571,8 @@
45571
45571
  "description": "",
45572
45572
  "slug": "process-memory-info",
45573
45573
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-memory-info",
45574
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/process-memory-info.md",
45575
- "version": "34.3.3",
45574
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/process-memory-info.md",
45575
+ "version": "34.4.1",
45576
45576
  "properties": [
45577
45577
  {
45578
45578
  "name": "residentSet",
@@ -45609,8 +45609,8 @@
45609
45609
  "description": "",
45610
45610
  "slug": "process-metric",
45611
45611
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-metric",
45612
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/process-metric.md",
45613
- "version": "34.3.3",
45612
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/process-metric.md",
45613
+ "version": "34.4.1",
45614
45614
  "properties": [
45615
45615
  {
45616
45616
  "name": "pid",
@@ -45759,8 +45759,8 @@
45759
45759
  "description": "",
45760
45760
  "slug": "product-discount",
45761
45761
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-discount",
45762
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/product-discount.md",
45763
- "version": "34.3.3",
45762
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product-discount.md",
45763
+ "version": "34.4.1",
45764
45764
  "properties": [
45765
45765
  {
45766
45766
  "name": "identifier",
@@ -45842,8 +45842,8 @@
45842
45842
  "description": "",
45843
45843
  "slug": "product-subscription-period",
45844
45844
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-subscription-period",
45845
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/product-subscription-period.md",
45846
- "version": "34.3.3",
45845
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product-subscription-period.md",
45846
+ "version": "34.4.1",
45847
45847
  "properties": [
45848
45848
  {
45849
45849
  "name": "numberOfUnits",
@@ -45887,8 +45887,8 @@
45887
45887
  "description": "",
45888
45888
  "slug": "product",
45889
45889
  "websiteUrl": "https://electronjs.org/docs/api/structures/product",
45890
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/product.md",
45891
- "version": "34.3.3",
45890
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product.md",
45891
+ "version": "34.4.1",
45892
45892
  "properties": [
45893
45893
  {
45894
45894
  "name": "productIdentifier",
@@ -46009,8 +46009,8 @@
46009
46009
  "description": "",
46010
46010
  "slug": "protocol-request",
46011
46011
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-request",
46012
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/protocol-request.md",
46013
- "version": "34.3.3",
46012
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-request.md",
46013
+ "version": "34.4.1",
46014
46014
  "properties": [
46015
46015
  {
46016
46016
  "name": "url",
@@ -46075,8 +46075,8 @@
46075
46075
  "description": "",
46076
46076
  "slug": "protocol-response-upload-data",
46077
46077
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response-upload-data",
46078
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/protocol-response-upload-data.md",
46079
- "version": "34.3.3",
46078
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-response-upload-data.md",
46079
+ "version": "34.4.1",
46080
46080
  "properties": [
46081
46081
  {
46082
46082
  "name": "contentType",
@@ -46113,8 +46113,8 @@
46113
46113
  "description": "",
46114
46114
  "slug": "protocol-response",
46115
46115
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response",
46116
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/protocol-response.md",
46117
- "version": "34.3.3",
46116
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-response.md",
46117
+ "version": "34.4.1",
46118
46118
  "properties": [
46119
46119
  {
46120
46120
  "name": "error",
@@ -46262,8 +46262,8 @@
46262
46262
  "description": "When `mode` is unspecified, `pacScript` and `proxyRules` are provided together, the `proxyRules` option is ignored and `pacScript` configuration is applied.\n\nThe `proxyRules` has to follow the rules below:\n\nFor example:\n\n* `http=foopy:80;ftp=foopy2` - Use HTTP proxy `foopy:80` for `http://` URLs, and HTTP proxy `foopy2:80` for `ftp://` URLs.\n* `foopy:80` - Use HTTP proxy `foopy:80` for all URLs.\n* `foopy:80,bar,direct://` - Use HTTP proxy `foopy:80` for all URLs, failing over to `bar` if `foopy:80` is unavailable, and after that using no proxy.\n* `socks4://foopy` - Use SOCKS v4 proxy `foopy:1080` for all URLs.\n* `http=foopy,socks5://bar.com` - Use HTTP proxy `foopy` for http URLs, and fail over to the SOCKS5 proxy `bar.com` if `foopy` is unavailable.\n* `http=foopy,direct://` - Use HTTP proxy `foopy` for http URLs, and use no proxy if `foopy` is unavailable.\n* `http=foopy;socks=foopy2` - Use HTTP proxy `foopy` for http URLs, and use `socks4://foopy2` for all other URLs.\n\nThe `proxyBypassRules` is a comma separated list of rules described below:\n\n* `[ URL_SCHEME \"://\" ] HOSTNAME_PATTERN [ \":\" <port> ]`\n\nMatch all hostnames that match the pattern HOSTNAME_PATTERN.\n\nExamples: \"foobar.com\", \"*foobar.com\", \"*.foobar.com\", \"*foobar.com:99\", \"https://x.*.y.com:99\"\n* `\".\" HOSTNAME_SUFFIX_PATTERN [ \":\" PORT ]`\n\nMatch a particular domain suffix.\n\nExamples: \".google.com\", \".com\", \"http://.google.com\"\n* `[ SCHEME \"://\" ] IP_LITERAL [ \":\" PORT ]`\n\nMatch URLs which are IP address literals.\n\nExamples: \"127.0.1\", \"[0:0::1]\", \"[::1]\", \"http://[::1]:99\"\n* `IP_LITERAL \"/\" PREFIX_LENGTH_IN_BITS`\n\nMatch any URL that is to an IP literal that falls between the given range. IP range is specified using CIDR notation.\n\nExamples: \"192.168.1.1/16\", \"fefe:13::abc/33\".\n* `<local>`\n\nMatch local addresses. The meaning of `<local>` is whether the host matches one of: \"127.0.0.1\", \"::1\", \"localhost\".",
46263
46263
  "slug": "proxy-config",
46264
46264
  "websiteUrl": "https://electronjs.org/docs/api/structures/proxy-config",
46265
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/proxy-config.md",
46266
- "version": "34.3.3",
46265
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/proxy-config.md",
46266
+ "version": "34.4.1",
46267
46267
  "properties": [
46268
46268
  {
46269
46269
  "name": "mode",
@@ -46330,8 +46330,8 @@
46330
46330
  "description": "",
46331
46331
  "slug": "rectangle",
46332
46332
  "websiteUrl": "https://electronjs.org/docs/api/structures/rectangle",
46333
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/rectangle.md",
46334
- "version": "34.3.3",
46333
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/rectangle.md",
46334
+ "version": "34.4.1",
46335
46335
  "properties": [
46336
46336
  {
46337
46337
  "name": "x",
@@ -46373,8 +46373,8 @@
46373
46373
  "description": "",
46374
46374
  "slug": "referrer",
46375
46375
  "websiteUrl": "https://electronjs.org/docs/api/structures/referrer",
46376
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/referrer.md",
46377
- "version": "34.3.3",
46376
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/referrer.md",
46377
+ "version": "34.4.1",
46378
46378
  "properties": [
46379
46379
  {
46380
46380
  "name": "url",
@@ -46435,8 +46435,8 @@
46435
46435
  "description": "",
46436
46436
  "slug": "render-process-gone-details",
46437
46437
  "websiteUrl": "https://electronjs.org/docs/api/structures/render-process-gone-details",
46438
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/render-process-gone-details.md",
46439
- "version": "34.3.3",
46438
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/render-process-gone-details.md",
46439
+ "version": "34.4.1",
46440
46440
  "properties": [
46441
46441
  {
46442
46442
  "name": "reason",
@@ -46492,8 +46492,8 @@
46492
46492
  "description": "",
46493
46493
  "slug": "resolved-endpoint",
46494
46494
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-endpoint",
46495
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/resolved-endpoint.md",
46496
- "version": "34.3.3",
46495
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/resolved-endpoint.md",
46496
+ "version": "34.4.1",
46497
46497
  "properties": [
46498
46498
  {
46499
46499
  "name": "address",
@@ -46534,8 +46534,8 @@
46534
46534
  "description": "",
46535
46535
  "slug": "resolved-host",
46536
46536
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-host",
46537
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/resolved-host.md",
46538
- "version": "34.3.3",
46537
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/resolved-host.md",
46538
+ "version": "34.4.1",
46539
46539
  "properties": [
46540
46540
  {
46541
46541
  "name": "endpoints",
@@ -46553,8 +46553,8 @@
46553
46553
  "description": "",
46554
46554
  "slug": "scrubber-item",
46555
46555
  "websiteUrl": "https://electronjs.org/docs/api/structures/scrubber-item",
46556
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/scrubber-item.md",
46557
- "version": "34.3.3",
46556
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/scrubber-item.md",
46557
+ "version": "34.4.1",
46558
46558
  "properties": [
46559
46559
  {
46560
46560
  "name": "label",
@@ -46581,8 +46581,8 @@
46581
46581
  "description": "",
46582
46582
  "slug": "segmented-control-segment",
46583
46583
  "websiteUrl": "https://electronjs.org/docs/api/structures/segmented-control-segment",
46584
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/segmented-control-segment.md",
46585
- "version": "34.3.3",
46584
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/segmented-control-segment.md",
46585
+ "version": "34.4.1",
46586
46586
  "properties": [
46587
46587
  {
46588
46588
  "name": "label",
@@ -46617,8 +46617,8 @@
46617
46617
  "description": "",
46618
46618
  "slug": "serial-port",
46619
46619
  "websiteUrl": "https://electronjs.org/docs/api/structures/serial-port",
46620
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/serial-port.md",
46621
- "version": "34.3.3",
46620
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/serial-port.md",
46621
+ "version": "34.4.1",
46622
46622
  "properties": [
46623
46623
  {
46624
46624
  "name": "portId",
@@ -46704,8 +46704,8 @@
46704
46704
  "description": "",
46705
46705
  "slug": "service-worker-info",
46706
46706
  "websiteUrl": "https://electronjs.org/docs/api/structures/service-worker-info",
46707
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/service-worker-info.md",
46708
- "version": "34.3.3",
46707
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/service-worker-info.md",
46708
+ "version": "34.4.1",
46709
46709
  "properties": [
46710
46710
  {
46711
46711
  "name": "scriptUrl",
@@ -46741,8 +46741,8 @@
46741
46741
  "description": "",
46742
46742
  "slug": "shared-dictionary-info",
46743
46743
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-dictionary-info",
46744
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/shared-dictionary-info.md",
46745
- "version": "34.3.3",
46744
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-dictionary-info.md",
46745
+ "version": "34.4.1",
46746
46746
  "properties": [
46747
46747
  {
46748
46748
  "name": "match",
@@ -46837,8 +46837,8 @@
46837
46837
  "description": "",
46838
46838
  "slug": "shared-dictionary-usage-info",
46839
46839
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-dictionary-usage-info",
46840
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/shared-dictionary-usage-info.md",
46841
- "version": "34.3.3",
46840
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-dictionary-usage-info.md",
46841
+ "version": "34.4.1",
46842
46842
  "properties": [
46843
46843
  {
46844
46844
  "name": "frameOrigin",
@@ -46874,8 +46874,8 @@
46874
46874
  "description": "",
46875
46875
  "slug": "shared-worker-info",
46876
46876
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-worker-info",
46877
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/shared-worker-info.md",
46878
- "version": "34.3.3",
46877
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-worker-info.md",
46878
+ "version": "34.4.1",
46879
46879
  "properties": [
46880
46880
  {
46881
46881
  "name": "id",
@@ -46903,8 +46903,8 @@
46903
46903
  "description": "",
46904
46904
  "slug": "sharing-item",
46905
46905
  "websiteUrl": "https://electronjs.org/docs/api/structures/sharing-item",
46906
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/sharing-item.md",
46907
- "version": "34.3.3",
46906
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/sharing-item.md",
46907
+ "version": "34.4.1",
46908
46908
  "properties": [
46909
46909
  {
46910
46910
  "name": "texts",
@@ -46941,8 +46941,8 @@
46941
46941
  "description": "",
46942
46942
  "slug": "shortcut-details",
46943
46943
  "websiteUrl": "https://electronjs.org/docs/api/structures/shortcut-details",
46944
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/shortcut-details.md",
46945
- "version": "34.3.3",
46944
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shortcut-details.md",
46945
+ "version": "34.4.1",
46946
46946
  "properties": [
46947
46947
  {
46948
46948
  "name": "target",
@@ -47023,8 +47023,8 @@
47023
47023
  "description": "",
47024
47024
  "slug": "size",
47025
47025
  "websiteUrl": "https://electronjs.org/docs/api/structures/size",
47026
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/size.md",
47027
- "version": "34.3.3",
47026
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/size.md",
47027
+ "version": "34.4.1",
47028
47028
  "properties": [
47029
47029
  {
47030
47030
  "name": "width",
@@ -47050,8 +47050,8 @@
47050
47050
  "description": "",
47051
47051
  "slug": "task",
47052
47052
  "websiteUrl": "https://electronjs.org/docs/api/structures/task",
47053
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/task.md",
47054
- "version": "34.3.3",
47053
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/task.md",
47054
+ "version": "34.4.1",
47055
47055
  "properties": [
47056
47056
  {
47057
47057
  "name": "program",
@@ -47123,8 +47123,8 @@
47123
47123
  "description": "The `flags` is an array that can include following `string`s:\n\n* `enabled` - The button is active and available to the user.\n* `disabled` - The button is disabled. It is present, but has a visual state indicating it will not respond to user action.\n* `dismissonclick` - When the button is clicked, the thumbnail window closes immediately.\n* `nobackground` - Do not draw a button border, use only the image.\n* `hidden` - The button is not shown to the user.\n* `noninteractive` - The button is enabled but not interactive; no pressed button state is drawn. This value is intended for instances where the button is used in a notification.",
47124
47124
  "slug": "thumbar-button",
47125
47125
  "websiteUrl": "https://electronjs.org/docs/api/structures/thumbar-button",
47126
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/thumbar-button.md",
47127
- "version": "34.3.3",
47126
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/thumbar-button.md",
47127
+ "version": "34.4.1",
47128
47128
  "properties": [
47129
47129
  {
47130
47130
  "name": "icon",
@@ -47170,8 +47170,8 @@
47170
47170
  "description": "",
47171
47171
  "slug": "trace-categories-and-options",
47172
47172
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-categories-and-options",
47173
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/trace-categories-and-options.md",
47174
- "version": "34.3.3",
47173
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/trace-categories-and-options.md",
47174
+ "version": "34.4.1",
47175
47175
  "properties": [
47176
47176
  {
47177
47177
  "name": "categoryFilter",
@@ -47199,8 +47199,8 @@
47199
47199
  "description": "An example TraceConfig that roughly matches what Chrome DevTools records:",
47200
47200
  "slug": "trace-config",
47201
47201
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-config",
47202
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/trace-config.md",
47203
- "version": "34.3.3",
47202
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/trace-config.md",
47203
+ "version": "34.4.1",
47204
47204
  "properties": [
47205
47205
  {
47206
47206
  "name": "recording_mode",
@@ -47314,8 +47314,8 @@
47314
47314
  "description": "",
47315
47315
  "slug": "transaction",
47316
47316
  "websiteUrl": "https://electronjs.org/docs/api/structures/transaction",
47317
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/transaction.md",
47318
- "version": "34.3.3",
47317
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/transaction.md",
47318
+ "version": "34.4.1",
47319
47319
  "properties": [
47320
47320
  {
47321
47321
  "name": "transactionIdentifier",
@@ -47443,8 +47443,8 @@
47443
47443
  "description": "",
47444
47444
  "slug": "upload-data",
47445
47445
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-data",
47446
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/upload-data.md",
47447
- "version": "34.3.3",
47446
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-data.md",
47447
+ "version": "34.4.1",
47448
47448
  "properties": [
47449
47449
  {
47450
47450
  "name": "bytes",
@@ -47480,8 +47480,8 @@
47480
47480
  "description": "",
47481
47481
  "slug": "upload-file",
47482
47482
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-file",
47483
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/upload-file.md",
47484
- "version": "34.3.3",
47483
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-file.md",
47484
+ "version": "34.4.1",
47485
47485
  "properties": [
47486
47486
  {
47487
47487
  "name": "type",
@@ -47532,8 +47532,8 @@
47532
47532
  "description": "",
47533
47533
  "slug": "upload-raw-data",
47534
47534
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-raw-data",
47535
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/upload-raw-data.md",
47536
- "version": "34.3.3",
47535
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-raw-data.md",
47536
+ "version": "34.4.1",
47537
47537
  "properties": [
47538
47538
  {
47539
47539
  "name": "type",
@@ -47559,8 +47559,8 @@
47559
47559
  "description": "",
47560
47560
  "slug": "usb-device",
47561
47561
  "websiteUrl": "https://electronjs.org/docs/api/structures/usb-device",
47562
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/usb-device.md",
47563
- "version": "34.3.3",
47562
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/usb-device.md",
47563
+ "version": "34.4.1",
47564
47564
  "properties": [
47565
47565
  {
47566
47566
  "name": "deviceId",
@@ -47694,8 +47694,8 @@
47694
47694
  "description": "This type is a helper alias, no object will ever exist of this type.",
47695
47695
  "slug": "user-default-types",
47696
47696
  "websiteUrl": "https://electronjs.org/docs/api/structures/user-default-types",
47697
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/user-default-types.md",
47698
- "version": "34.3.3",
47697
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/user-default-types.md",
47698
+ "version": "34.4.1",
47699
47699
  "properties": [
47700
47700
  {
47701
47701
  "name": "string",
@@ -47788,8 +47788,8 @@
47788
47788
  "description": "",
47789
47789
  "slug": "web-preferences",
47790
47790
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-preferences",
47791
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/web-preferences.md",
47792
- "version": "34.3.3",
47791
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-preferences.md",
47792
+ "version": "34.4.1",
47793
47793
  "properties": [
47794
47794
  {
47795
47795
  "name": "devTools",
@@ -48295,8 +48295,8 @@
48295
48295
  "description": "",
48296
48296
  "slug": "web-request-filter",
48297
48297
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-request-filter",
48298
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/web-request-filter.md",
48299
- "version": "34.3.3",
48298
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-request-filter.md",
48299
+ "version": "34.4.1",
48300
48300
  "properties": [
48301
48301
  {
48302
48302
  "name": "urls",
@@ -48373,8 +48373,8 @@
48373
48373
  "description": "",
48374
48374
  "slug": "web-source",
48375
48375
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-source",
48376
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/web-source.md",
48377
- "version": "34.3.3",
48376
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-source.md",
48377
+ "version": "34.4.1",
48378
48378
  "properties": [
48379
48379
  {
48380
48380
  "name": "code",
@@ -48402,8 +48402,8 @@
48402
48402
  "description": "",
48403
48403
  "slug": "window-open-handler-response",
48404
48404
  "websiteUrl": "https://electronjs.org/docs/api/structures/window-open-handler-response",
48405
- "repoUrl": "https://github.com/electron/electron/blob/v34.3.3/docs/api/structures/window-open-handler-response.md",
48406
- "version": "34.3.3",
48405
+ "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/window-open-handler-response.md",
48406
+ "version": "34.4.1",
48407
48407
  "properties": [
48408
48408
  {
48409
48409
  "name": "action",