@overwolf/ow-electron 34.4.1 → 34.5.4

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.4.1/docs/api/app.md",
8
- "version": "34.4.1",
7
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/app.md",
8
+ "version": "34.5.4",
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.4.1/docs/api/auto-updater.md",
3181
- "version": "34.4.1",
3180
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/auto-updater.md",
3181
+ "version": "34.5.4",
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.4.1/docs/api/base-window.md",
3398
- "version": "34.4.1",
3397
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/base-window.md",
3398
+ "version": "34.5.4",
3399
3399
  "type": "Class",
3400
3400
  "process": {
3401
3401
  "main": true,
@@ -5924,8 +5924,11 @@
5924
5924
  "name": "autoHideMenuBar",
5925
5925
  "description": "A `boolean` property that determines whether the window menu bar should hide itself automatically. Once set, the menu bar will only show when users press the single `Alt` key.\n\nIf the menu bar is already visible, setting this property to `true` won't hide it immediately.",
5926
5926
  "required": true,
5927
- "additionalTags": [],
5928
- "urlFragment": "#winautohidemenubar",
5927
+ "additionalTags": [
5928
+ "os_linux",
5929
+ "os_windows"
5930
+ ],
5931
+ "urlFragment": "#winautohidemenubar-linux-windows",
5929
5932
  "collection": false,
5930
5933
  "type": "boolean"
5931
5934
  },
@@ -6545,8 +6548,8 @@
6545
6548
  "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
6549
  "slug": "browser-view",
6547
6550
  "websiteUrl": "https://electronjs.org/docs/api/browser-view",
6548
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/browser-view.md",
6549
- "version": "34.4.1",
6551
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/browser-view.md",
6552
+ "version": "34.5.4",
6550
6553
  "type": "Class",
6551
6554
  "process": {
6552
6555
  "main": true,
@@ -6713,8 +6716,8 @@
6713
6716
  "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
6717
  "slug": "browser-window",
6715
6718
  "websiteUrl": "https://electronjs.org/docs/api/browser-window",
6716
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/browser-window.md",
6717
- "version": "34.4.1",
6719
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/browser-window.md",
6720
+ "version": "34.5.4",
6718
6721
  "type": "Class",
6719
6722
  "process": {
6720
6723
  "main": true,
@@ -9668,8 +9671,11 @@
9668
9671
  "name": "autoHideMenuBar",
9669
9672
  "description": "A `boolean` property that determines whether the window menu bar should hide itself automatically. Once set, the menu bar will only show when users press the single `Alt` key.\n\nIf the menu bar is already visible, setting this property to `true` won't hide it immediately.",
9670
9673
  "required": true,
9671
- "additionalTags": [],
9672
- "urlFragment": "#winautohidemenubar",
9674
+ "additionalTags": [
9675
+ "os_linux",
9676
+ "os_windows"
9677
+ ],
9678
+ "urlFragment": "#winautohidemenubar-linux-windows",
9673
9679
  "collection": false,
9674
9680
  "type": "boolean"
9675
9681
  },
@@ -10339,8 +10345,8 @@
10339
10345
  "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
10346
  "slug": "client-request",
10341
10347
  "websiteUrl": "https://electronjs.org/docs/api/client-request",
10342
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/client-request.md",
10343
- "version": "34.4.1",
10348
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/client-request.md",
10349
+ "version": "34.5.4",
10344
10350
  "type": "Class",
10345
10351
  "process": {
10346
10352
  "main": true,
@@ -11071,8 +11077,8 @@
11071
11077
  "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
11078
  "slug": "clipboard",
11073
11079
  "websiteUrl": "https://electronjs.org/docs/api/clipboard",
11074
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/clipboard.md",
11075
- "version": "34.4.1",
11080
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/clipboard.md",
11081
+ "version": "34.5.4",
11076
11082
  "type": "Module",
11077
11083
  "process": {
11078
11084
  "main": true,
@@ -11738,8 +11744,8 @@
11738
11744
  "description": "",
11739
11745
  "slug": "command-line",
11740
11746
  "websiteUrl": "https://electronjs.org/docs/api/command-line",
11741
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/command-line.md",
11742
- "version": "34.4.1",
11747
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/command-line.md",
11748
+ "version": "34.5.4",
11743
11749
  "type": "Class",
11744
11750
  "process": {
11745
11751
  "main": true,
@@ -11866,8 +11872,8 @@
11866
11872
  "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
11873
  "slug": "content-tracing",
11868
11874
  "websiteUrl": "https://electronjs.org/docs/api/content-tracing",
11869
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/content-tracing.md",
11870
- "version": "34.4.1",
11875
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/content-tracing.md",
11876
+ "version": "34.5.4",
11871
11877
  "type": "Module",
11872
11878
  "process": {
11873
11879
  "main": true,
@@ -12004,8 +12010,8 @@
12004
12010
  "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
12011
  "slug": "context-bridge",
12006
12012
  "websiteUrl": "https://electronjs.org/docs/api/context-bridge",
12007
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/context-bridge.md",
12008
- "version": "34.4.1",
12013
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/context-bridge.md",
12014
+ "version": "34.5.4",
12009
12015
  "type": "Module",
12010
12016
  "process": {
12011
12017
  "main": false,
@@ -12081,8 +12087,8 @@
12081
12087
  "description": "",
12082
12088
  "slug": "cookies",
12083
12089
  "websiteUrl": "https://electronjs.org/docs/api/cookies",
12084
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/cookies.md",
12085
- "version": "34.4.1",
12090
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/cookies.md",
12091
+ "version": "34.5.4",
12086
12092
  "type": "Class",
12087
12093
  "process": {
12088
12094
  "main": true,
@@ -12431,8 +12437,8 @@
12431
12437
  "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
12438
  "slug": "crash-reporter",
12433
12439
  "websiteUrl": "https://electronjs.org/docs/api/crash-reporter",
12434
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/crash-reporter.md",
12435
- "version": "34.4.1",
12440
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/crash-reporter.md",
12441
+ "version": "34.5.4",
12436
12442
  "type": "Module",
12437
12443
  "process": {
12438
12444
  "main": true,
@@ -12704,8 +12710,8 @@
12704
12710
  "description": "",
12705
12711
  "slug": "debugger",
12706
12712
  "websiteUrl": "https://electronjs.org/docs/api/debugger",
12707
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/debugger.md",
12708
- "version": "34.4.1",
12713
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/debugger.md",
12714
+ "version": "34.5.4",
12709
12715
  "type": "Class",
12710
12716
  "process": {
12711
12717
  "main": true,
@@ -12876,8 +12882,8 @@
12876
12882
  "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
12883
  "slug": "desktop-capturer",
12878
12884
  "websiteUrl": "https://electronjs.org/docs/api/desktop-capturer",
12879
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/desktop-capturer.md",
12880
- "version": "34.4.1",
12885
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/desktop-capturer.md",
12886
+ "version": "34.5.4",
12881
12887
  "type": "Module",
12882
12888
  "process": {
12883
12889
  "main": true,
@@ -12958,8 +12964,8 @@
12958
12964
  "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
12965
  "slug": "dialog",
12960
12966
  "websiteUrl": "https://electronjs.org/docs/api/dialog",
12961
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/dialog.md",
12962
- "version": "34.4.1",
12967
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/dialog.md",
12968
+ "version": "34.5.4",
12963
12969
  "type": "Module",
12964
12970
  "process": {
12965
12971
  "main": true,
@@ -14041,8 +14047,8 @@
14041
14047
  "description": "",
14042
14048
  "slug": "dock",
14043
14049
  "websiteUrl": "https://electronjs.org/docs/api/dock",
14044
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/dock.md",
14045
- "version": "34.4.1",
14050
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/dock.md",
14051
+ "version": "34.5.4",
14046
14052
  "type": "Class",
14047
14053
  "process": {
14048
14054
  "main": true,
@@ -14286,8 +14292,8 @@
14286
14292
  "description": "",
14287
14293
  "slug": "download-item",
14288
14294
  "websiteUrl": "https://electronjs.org/docs/api/download-item",
14289
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/download-item.md",
14290
- "version": "34.4.1",
14295
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/download-item.md",
14296
+ "version": "34.5.4",
14291
14297
  "type": "Class",
14292
14298
  "process": {
14293
14299
  "main": true,
@@ -14709,8 +14715,8 @@
14709
14715
  "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
14716
  "slug": "global-shortcut",
14711
14717
  "websiteUrl": "https://electronjs.org/docs/api/global-shortcut",
14712
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/global-shortcut.md",
14713
- "version": "34.4.1",
14718
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/global-shortcut.md",
14719
+ "version": "34.5.4",
14714
14720
  "type": "Module",
14715
14721
  "process": {
14716
14722
  "main": true,
@@ -14830,8 +14836,8 @@
14830
14836
  "description": "> In-app purchases on Mac App Store.\n\nProcess: Main",
14831
14837
  "slug": "in-app-purchase",
14832
14838
  "websiteUrl": "https://electronjs.org/docs/api/in-app-purchase",
14833
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/in-app-purchase.md",
14834
- "version": "34.4.1",
14839
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/in-app-purchase.md",
14840
+ "version": "34.5.4",
14835
14841
  "type": "Module",
14836
14842
  "process": {
14837
14843
  "main": true,
@@ -15008,8 +15014,8 @@
15008
15014
  "description": "",
15009
15015
  "slug": "incoming-message",
15010
15016
  "websiteUrl": "https://electronjs.org/docs/api/incoming-message",
15011
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/incoming-message.md",
15012
- "version": "34.4.1",
15017
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/incoming-message.md",
15018
+ "version": "34.5.4",
15013
15019
  "type": "Class",
15014
15020
  "process": {
15015
15021
  "main": true,
@@ -15166,8 +15172,8 @@
15166
15172
  "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
15173
  "slug": "ipc-main",
15168
15174
  "websiteUrl": "https://electronjs.org/docs/api/ipc-main",
15169
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/ipc-main.md",
15170
- "version": "34.4.1",
15175
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/ipc-main.md",
15176
+ "version": "34.5.4",
15171
15177
  "type": "Module",
15172
15178
  "process": {
15173
15179
  "main": true,
@@ -15545,8 +15551,8 @@
15545
15551
  "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
15552
  "slug": "ipc-renderer",
15547
15553
  "websiteUrl": "https://electronjs.org/docs/api/ipc-renderer",
15548
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/ipc-renderer.md",
15549
- "version": "34.4.1",
15554
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/ipc-renderer.md",
15555
+ "version": "34.5.4",
15550
15556
  "type": "Module",
15551
15557
  "process": {
15552
15558
  "main": false,
@@ -15937,8 +15943,8 @@
15937
15943
  "description": "> Add items to native application menus and context menus.\n\nProcess: Main\n\nSee `Menu` for examples.",
15938
15944
  "slug": "menu-item",
15939
15945
  "websiteUrl": "https://electronjs.org/docs/api/menu-item",
15940
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/menu-item.md",
15941
- "version": "34.4.1",
15946
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/menu-item.md",
15947
+ "version": "34.5.4",
15942
15948
  "type": "Class",
15943
15949
  "process": {
15944
15950
  "main": true,
@@ -16834,8 +16840,8 @@
16834
16840
  "description": "\n\n### Class: Menu\n\n> Create native application menus and context menus.\n\nProcess: Main",
16835
16841
  "slug": "menu",
16836
16842
  "websiteUrl": "https://electronjs.org/docs/api/menu",
16837
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/menu.md",
16838
- "version": "34.4.1",
16843
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/menu.md",
16844
+ "version": "34.5.4",
16839
16845
  "type": "Class",
16840
16846
  "process": {
16841
16847
  "main": true,
@@ -17208,8 +17214,8 @@
17208
17214
  "description": "",
17209
17215
  "slug": "message-channel-main",
17210
17216
  "websiteUrl": "https://electronjs.org/docs/api/message-channel-main",
17211
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/message-channel-main.md",
17212
- "version": "34.4.1",
17217
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/message-channel-main.md",
17218
+ "version": "34.5.4",
17213
17219
  "type": "Class",
17214
17220
  "process": {
17215
17221
  "main": true,
@@ -17249,8 +17255,8 @@
17249
17255
  "description": "",
17250
17256
  "slug": "message-port-main",
17251
17257
  "websiteUrl": "https://electronjs.org/docs/api/message-port-main",
17252
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/message-port-main.md",
17253
- "version": "34.4.1",
17258
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/message-port-main.md",
17259
+ "version": "34.5.4",
17254
17260
  "type": "Class",
17255
17261
  "process": {
17256
17262
  "main": true,
@@ -17356,8 +17362,8 @@
17356
17362
  "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
17363
  "slug": "native-image",
17358
17364
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17359
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-image.md",
17360
- "version": "34.4.1",
17365
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/native-image.md",
17366
+ "version": "34.5.4",
17361
17367
  "type": "Module",
17362
17368
  "process": {
17363
17369
  "main": true,
@@ -17603,8 +17609,8 @@
17603
17609
  "description": "",
17604
17610
  "slug": "native-image",
17605
17611
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17606
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-image.md",
17607
- "version": "34.4.1",
17612
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/native-image.md",
17613
+ "version": "34.5.4",
17608
17614
  "type": "Class",
17609
17615
  "process": {
17610
17616
  "main": true,
@@ -18026,8 +18032,8 @@
18026
18032
  "description": "> Read and respond to changes in Chromium's native color theme.\n\nProcess: Main",
18027
18033
  "slug": "native-theme",
18028
18034
  "websiteUrl": "https://electronjs.org/docs/api/native-theme",
18029
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/native-theme.md",
18030
- "version": "34.4.1",
18035
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/native-theme.md",
18036
+ "version": "34.5.4",
18031
18037
  "type": "Module",
18032
18038
  "process": {
18033
18039
  "main": true,
@@ -18137,8 +18143,8 @@
18137
18143
  "description": "",
18138
18144
  "slug": "navigation-history",
18139
18145
  "websiteUrl": "https://electronjs.org/docs/api/navigation-history",
18140
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/navigation-history.md",
18141
- "version": "34.4.1",
18146
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/navigation-history.md",
18147
+ "version": "34.5.4",
18142
18148
  "type": "Class",
18143
18149
  "process": {
18144
18150
  "main": true,
@@ -18385,8 +18391,8 @@
18385
18391
  "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
18392
  "slug": "net-log",
18387
18393
  "websiteUrl": "https://electronjs.org/docs/api/net-log",
18388
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/net-log.md",
18389
- "version": "34.4.1",
18394
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/net-log.md",
18395
+ "version": "34.5.4",
18390
18396
  "type": "Module",
18391
18397
  "process": {
18392
18398
  "main": true,
@@ -18501,8 +18507,8 @@
18501
18507
  "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
18508
  "slug": "net",
18503
18509
  "websiteUrl": "https://electronjs.org/docs/api/net",
18504
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/net.md",
18505
- "version": "34.4.1",
18510
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/net.md",
18511
+ "version": "34.5.4",
18506
18512
  "type": "Module",
18507
18513
  "process": {
18508
18514
  "main": true,
@@ -18742,8 +18748,8 @@
18742
18748
  "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
18749
  "slug": "notification",
18744
18750
  "websiteUrl": "https://electronjs.org/docs/api/notification",
18745
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/notification.md",
18746
- "version": "34.4.1",
18751
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/notification.md",
18752
+ "version": "34.5.4",
18747
18753
  "type": "Class",
18748
18754
  "process": {
18749
18755
  "main": true,
@@ -19249,8 +19255,8 @@
19249
19255
  "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
19256
  "slug": "parent-port",
19251
19257
  "websiteUrl": "https://electronjs.org/docs/api/parent-port",
19252
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/parent-port.md",
19253
- "version": "34.4.1",
19258
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/parent-port.md",
19259
+ "version": "34.5.4",
19254
19260
  "type": "Module",
19255
19261
  "process": {
19256
19262
  "main": false,
@@ -19321,8 +19327,8 @@
19321
19327
  "description": "> Monitor power state changes.\n\nProcess: Main",
19322
19328
  "slug": "power-monitor",
19323
19329
  "websiteUrl": "https://electronjs.org/docs/api/power-monitor",
19324
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/power-monitor.md",
19325
- "version": "34.4.1",
19330
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/power-monitor.md",
19331
+ "version": "34.5.4",
19326
19332
  "type": "Module",
19327
19333
  "process": {
19328
19334
  "main": true,
@@ -19591,8 +19597,8 @@
19591
19597
  "description": "> Block the system from entering low-power (sleep) mode.\n\nProcess: Main\n\nFor example:",
19592
19598
  "slug": "power-save-blocker",
19593
19599
  "websiteUrl": "https://electronjs.org/docs/api/power-save-blocker",
19594
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/power-save-blocker.md",
19595
- "version": "34.4.1",
19600
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/power-save-blocker.md",
19601
+ "version": "34.5.4",
19596
19602
  "type": "Module",
19597
19603
  "process": {
19598
19604
  "main": true,
@@ -19681,8 +19687,8 @@
19681
19687
  "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
19688
  "slug": "process",
19683
19689
  "websiteUrl": "https://electronjs.org/docs/api/process",
19684
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/process.md",
19685
- "version": "34.4.1",
19690
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/process.md",
19691
+ "version": "34.5.4",
19686
19692
  "type": "Module",
19687
19693
  "process": {
19688
19694
  "main": true,
@@ -20198,8 +20204,8 @@
20198
20204
  "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
20205
  "slug": "protocol",
20200
20206
  "websiteUrl": "https://electronjs.org/docs/api/protocol",
20201
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/protocol.md",
20202
- "version": "34.4.1",
20207
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/protocol.md",
20208
+ "version": "34.5.4",
20203
20209
  "type": "Module",
20204
20210
  "process": {
20205
20211
  "main": true,
@@ -21065,8 +21071,8 @@
21065
21071
  "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
21072
  "slug": "push-notifications",
21067
21073
  "websiteUrl": "https://electronjs.org/docs/api/push-notifications",
21068
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/push-notifications.md",
21069
- "version": "34.4.1",
21074
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/push-notifications.md",
21075
+ "version": "34.5.4",
21070
21076
  "type": "Module",
21071
21077
  "process": {
21072
21078
  "main": true,
@@ -21155,8 +21161,8 @@
21155
21161
  "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
21162
  "slug": "safe-storage",
21157
21163
  "websiteUrl": "https://electronjs.org/docs/api/safe-storage",
21158
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/safe-storage.md",
21159
- "version": "34.4.1",
21164
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/safe-storage.md",
21165
+ "version": "34.5.4",
21160
21166
  "type": "Module",
21161
21167
  "process": {
21162
21168
  "main": true,
@@ -21286,8 +21292,8 @@
21286
21292
  "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
21293
  "slug": "screen",
21288
21294
  "websiteUrl": "https://electronjs.org/docs/api/screen",
21289
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/screen.md",
21290
- "version": "34.4.1",
21295
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/screen.md",
21296
+ "version": "34.5.4",
21291
21297
  "type": "Module",
21292
21298
  "process": {
21293
21299
  "main": true,
@@ -21584,8 +21590,8 @@
21584
21590
  "description": "",
21585
21591
  "slug": "service-workers",
21586
21592
  "websiteUrl": "https://electronjs.org/docs/api/service-workers",
21587
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/service-workers.md",
21588
- "version": "34.4.1",
21593
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/service-workers.md",
21594
+ "version": "34.5.4",
21589
21595
  "type": "Class",
21590
21596
  "process": {
21591
21597
  "main": true,
@@ -21815,8 +21821,8 @@
21815
21821
  "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
21822
  "slug": "session",
21817
21823
  "websiteUrl": "https://electronjs.org/docs/api/session",
21818
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/session.md",
21819
- "version": "34.4.1",
21824
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/session.md",
21825
+ "version": "34.5.4",
21820
21826
  "type": "Module",
21821
21827
  "process": {
21822
21828
  "main": true,
@@ -21921,8 +21927,8 @@
21921
21927
  "description": "",
21922
21928
  "slug": "session",
21923
21929
  "websiteUrl": "https://electronjs.org/docs/api/session",
21924
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/session.md",
21925
- "version": "34.4.1",
21930
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/session.md",
21931
+ "version": "34.5.4",
21926
21932
  "type": "Class",
21927
21933
  "process": {
21928
21934
  "main": true,
@@ -25373,8 +25379,8 @@
25373
25379
  "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
25380
  "slug": "share-menu",
25375
25381
  "websiteUrl": "https://electronjs.org/docs/api/share-menu",
25376
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/share-menu.md",
25377
- "version": "34.4.1",
25382
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/share-menu.md",
25383
+ "version": "34.5.4",
25378
25384
  "type": "Class",
25379
25385
  "process": {
25380
25386
  "main": true,
@@ -25441,8 +25447,8 @@
25441
25447
  "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
25448
  "slug": "shell",
25443
25449
  "websiteUrl": "https://electronjs.org/docs/api/shell",
25444
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/shell.md",
25445
- "version": "34.4.1",
25450
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/shell.md",
25451
+ "version": "34.5.4",
25446
25452
  "type": "Module",
25447
25453
  "process": {
25448
25454
  "main": true,
@@ -25684,8 +25690,8 @@
25684
25690
  "description": "> Get system preferences.\n\nProcess: Main, Utility",
25685
25691
  "slug": "system-preferences",
25686
25692
  "websiteUrl": "https://electronjs.org/docs/api/system-preferences",
25687
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/system-preferences.md",
25688
- "version": "34.4.1",
25693
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/system-preferences.md",
25694
+ "version": "34.5.4",
25689
25695
  "type": "Module",
25690
25696
  "process": {
25691
25697
  "main": true,
@@ -26932,8 +26938,8 @@
26932
26938
  "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
26939
  "slug": "touch-bar-button",
26934
26940
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-button",
26935
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-button.md",
26936
- "version": "34.4.1",
26941
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-button.md",
26942
+ "version": "34.5.4",
26937
26943
  "type": "Class",
26938
26944
  "process": {
26939
26945
  "main": true,
@@ -27124,8 +27130,8 @@
27124
27130
  "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
27131
  "slug": "touch-bar-color-picker",
27126
27132
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-color-picker",
27127
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-color-picker.md",
27128
- "version": "34.4.1",
27133
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-color-picker.md",
27134
+ "version": "34.5.4",
27129
27135
  "type": "Class",
27130
27136
  "process": {
27131
27137
  "main": true,
@@ -27217,8 +27223,8 @@
27217
27223
  "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
27224
  "slug": "touch-bar-group",
27219
27225
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-group",
27220
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-group.md",
27221
- "version": "34.4.1",
27226
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-group.md",
27227
+ "version": "34.5.4",
27222
27228
  "type": "Class",
27223
27229
  "process": {
27224
27230
  "main": true,
@@ -27260,8 +27266,8 @@
27260
27266
  "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
27267
  "slug": "touch-bar-label",
27262
27268
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-label",
27263
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-label.md",
27264
- "version": "34.4.1",
27269
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-label.md",
27270
+ "version": "34.5.4",
27265
27271
  "type": "Class",
27266
27272
  "process": {
27267
27273
  "main": true,
@@ -27353,8 +27359,8 @@
27353
27359
  "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
27360
  "slug": "touch-bar-other-items-proxy",
27355
27361
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-other-items-proxy",
27356
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-other-items-proxy.md",
27357
- "version": "34.4.1",
27362
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-other-items-proxy.md",
27363
+ "version": "34.5.4",
27358
27364
  "type": "Class",
27359
27365
  "process": {
27360
27366
  "main": true,
@@ -27378,8 +27384,8 @@
27378
27384
  "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
27385
  "slug": "touch-bar-popover",
27380
27386
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-popover",
27381
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-popover.md",
27382
- "version": "34.4.1",
27387
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-popover.md",
27388
+ "version": "34.5.4",
27383
27389
  "type": "Class",
27384
27390
  "process": {
27385
27391
  "main": true,
@@ -27466,8 +27472,8 @@
27466
27472
  "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
27473
  "slug": "touch-bar-scrubber",
27468
27474
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-scrubber",
27469
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-scrubber.md",
27470
- "version": "34.4.1",
27475
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-scrubber.md",
27476
+ "version": "34.5.4",
27471
27477
  "type": "Class",
27472
27478
  "process": {
27473
27479
  "main": true,
@@ -27716,8 +27722,8 @@
27716
27722
  "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
27723
  "slug": "touch-bar-segmented-control",
27718
27724
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-segmented-control",
27719
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-segmented-control.md",
27720
- "version": "34.4.1",
27725
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-segmented-control.md",
27726
+ "version": "34.5.4",
27721
27727
  "type": "Class",
27722
27728
  "process": {
27723
27729
  "main": true,
@@ -27908,8 +27914,8 @@
27908
27914
  "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
27915
  "slug": "touch-bar-slider",
27910
27916
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-slider",
27911
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-slider.md",
27912
- "version": "34.4.1",
27917
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-slider.md",
27918
+ "version": "34.5.4",
27913
27919
  "type": "Class",
27914
27920
  "process": {
27915
27921
  "main": true,
@@ -28032,8 +28038,8 @@
28032
28038
  "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
28039
  "slug": "touch-bar-spacer",
28034
28040
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-spacer",
28035
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar-spacer.md",
28036
- "version": "34.4.1",
28041
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar-spacer.md",
28042
+ "version": "34.5.4",
28037
28043
  "type": "Class",
28038
28044
  "process": {
28039
28045
  "main": true,
@@ -28113,8 +28119,8 @@
28113
28119
  "description": "\n\n### Class: TouchBar\n\n> Create TouchBar layouts for native macOS applications\n\nProcess: Main",
28114
28120
  "slug": "touch-bar",
28115
28121
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar",
28116
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/touch-bar.md",
28117
- "version": "34.4.1",
28122
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/touch-bar.md",
28123
+ "version": "34.5.4",
28118
28124
  "type": "Class",
28119
28125
  "process": {
28120
28126
  "main": true,
@@ -28343,8 +28349,8 @@
28343
28349
  "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
28350
  "slug": "tray",
28345
28351
  "websiteUrl": "https://electronjs.org/docs/api/tray",
28346
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/tray.md",
28347
- "version": "34.4.1",
28352
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/tray.md",
28353
+ "version": "34.5.4",
28348
28354
  "type": "Class",
28349
28355
  "process": {
28350
28356
  "main": true,
@@ -29161,8 +29167,8 @@
29161
29167
  "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
29168
  "slug": "utility-process",
29163
29169
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
29164
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/utility-process.md",
29165
- "version": "34.4.1",
29170
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/utility-process.md",
29171
+ "version": "34.5.4",
29166
29172
  "type": "Module",
29167
29173
  "process": {
29168
29174
  "main": true,
@@ -29174,7 +29180,7 @@
29174
29180
  {
29175
29181
  "name": "fork",
29176
29182
  "signature": "(modulePath[, args][, options])",
29177
- "description": "",
29183
+ "description": "**Note:** `utilityProcess.fork` can only be called after the `ready` event has been emitted on `App`.",
29178
29184
  "parameters": [
29179
29185
  {
29180
29186
  "name": "modulePath",
@@ -29305,8 +29311,8 @@
29305
29311
  "description": "",
29306
29312
  "slug": "utility-process",
29307
29313
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
29308
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/utility-process.md",
29309
- "version": "34.4.1",
29314
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/utility-process.md",
29315
+ "version": "34.5.4",
29310
29316
  "type": "Class",
29311
29317
  "process": {
29312
29318
  "main": true,
@@ -29501,8 +29507,8 @@
29501
29507
  "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
29508
  "slug": "view",
29503
29509
  "websiteUrl": "https://electronjs.org/docs/api/view",
29504
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/view.md",
29505
- "version": "34.4.1",
29510
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/view.md",
29511
+ "version": "34.5.4",
29506
29512
  "type": "Class",
29507
29513
  "process": {
29508
29514
  "main": true,
@@ -29682,8 +29688,8 @@
29682
29688
  "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
29689
  "slug": "web-contents-view",
29684
29690
  "websiteUrl": "https://electronjs.org/docs/api/web-contents-view",
29685
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents-view.md",
29686
- "version": "34.4.1",
29691
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-contents-view.md",
29692
+ "version": "34.5.4",
29687
29693
  "type": "Class",
29688
29694
  "process": {
29689
29695
  "main": true,
@@ -29745,8 +29751,8 @@
29745
29751
  "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
29752
  "slug": "web-contents",
29747
29753
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29748
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents.md",
29749
- "version": "34.4.1",
29754
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-contents.md",
29755
+ "version": "34.5.4",
29750
29756
  "type": "Module",
29751
29757
  "process": {
29752
29758
  "main": true,
@@ -29886,8 +29892,8 @@
29886
29892
  "description": "",
29887
29893
  "slug": "web-contents",
29888
29894
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29889
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-contents.md",
29890
- "version": "34.4.1",
29895
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-contents.md",
29896
+ "version": "34.5.4",
29891
29897
  "type": "Class",
29892
29898
  "process": {
29893
29899
  "main": true,
@@ -32956,14 +32962,23 @@
32956
32962
  },
32957
32963
  {
32958
32964
  "name": "opener",
32959
- "description": "A `WebFrameMain` property that represents the frame that opened this WebContents, either with open(), or by navigating a link with a target attribute.",
32965
+ "description": "A `WebFrameMain | null` property that represents the frame that opened this WebContents, either with open(), or by navigating a link with a target attribute.",
32960
32966
  "required": true,
32961
32967
  "additionalTags": [
32962
32968
  "availability_readonly"
32963
32969
  ],
32964
32970
  "urlFragment": "#contentsopener-readonly",
32965
32971
  "collection": false,
32966
- "type": "WebFrameMain"
32972
+ "type": [
32973
+ {
32974
+ "collection": false,
32975
+ "type": "WebFrameMain"
32976
+ },
32977
+ {
32978
+ "type": "null",
32979
+ "collection": false
32980
+ }
32981
+ ]
32967
32982
  }
32968
32983
  ],
32969
32984
  "instanceEvents": [
@@ -35940,8 +35955,8 @@
35940
35955
  "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
35956
  "slug": "web-frame-main",
35942
35957
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35943
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame-main.md",
35944
- "version": "34.4.1",
35958
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-frame-main.md",
35959
+ "version": "34.5.4",
35945
35960
  "type": "Module",
35946
35961
  "process": {
35947
35962
  "main": true,
@@ -35996,8 +36011,8 @@
35996
36011
  "description": "",
35997
36012
  "slug": "web-frame-main",
35998
36013
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35999
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame-main.md",
36000
- "version": "34.4.1",
36014
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-frame-main.md",
36015
+ "version": "34.5.4",
36001
36016
  "type": "Class",
36002
36017
  "process": {
36003
36018
  "main": true,
@@ -36355,8 +36370,8 @@
36355
36370
  "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
36371
  "slug": "web-frame",
36357
36372
  "websiteUrl": "https://electronjs.org/docs/api/web-frame",
36358
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-frame.md",
36359
- "version": "34.4.1",
36373
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-frame.md",
36374
+ "version": "34.5.4",
36360
36375
  "type": "Module",
36361
36376
  "process": {
36362
36377
  "main": false,
@@ -37069,8 +37084,8 @@
37069
37084
  "description": "",
37070
37085
  "slug": "web-request",
37071
37086
  "websiteUrl": "https://electronjs.org/docs/api/web-request",
37072
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-request.md",
37073
- "version": "34.4.1",
37087
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-request.md",
37088
+ "version": "34.5.4",
37074
37089
  "type": "Class",
37075
37090
  "process": {
37076
37091
  "main": true,
@@ -38987,8 +39002,8 @@
38987
39002
  "description": "> A utility layer to interact with Web API objects (Files, Blobs, etc.)\n\nProcess: Renderer",
38988
39003
  "slug": "web-utils",
38989
39004
  "websiteUrl": "https://electronjs.org/docs/api/web-utils",
38990
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/web-utils.md",
38991
- "version": "34.4.1",
39005
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/web-utils.md",
39006
+ "version": "34.5.4",
38992
39007
  "type": "Module",
38993
39008
  "process": {
38994
39009
  "main": false,
@@ -39029,8 +39044,8 @@
39029
39044
  "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
39045
  "slug": "webview-tag",
39031
39046
  "websiteUrl": "https://electronjs.org/docs/api/webview-tag",
39032
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/webview-tag.md",
39033
- "version": "34.4.1",
39047
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/webview-tag.md",
39048
+ "version": "34.5.4",
39034
39049
  "type": "Element",
39035
39050
  "process": {
39036
39051
  "main": false,
@@ -42175,8 +42190,8 @@
42175
42190
  "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
42191
  "slug": "base-window-options",
42177
42192
  "websiteUrl": "https://electronjs.org/docs/api/structures/base-window-options",
42178
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/base-window-options.md",
42179
- "version": "34.4.1",
42193
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/base-window-options.md",
42194
+ "version": "34.5.4",
42180
42195
  "properties": [
42181
42196
  {
42182
42197
  "name": "width",
@@ -42462,7 +42477,10 @@
42462
42477
  "name": "autoHideMenuBar",
42463
42478
  "description": "Auto hide the menu bar unless the `Alt` key is pressed. Default is `false`.",
42464
42479
  "required": false,
42465
- "additionalTags": [],
42480
+ "additionalTags": [
42481
+ "os_linux",
42482
+ "os_windows"
42483
+ ],
42466
42484
  "collection": false,
42467
42485
  "type": "boolean"
42468
42486
  },
@@ -42607,7 +42625,8 @@
42607
42625
  "description": "The CSS color of the symbols on the Window Controls Overlay when enabled. Default is the system color.",
42608
42626
  "required": false,
42609
42627
  "additionalTags": [
42610
- "os_windows"
42628
+ "os_windows",
42629
+ "os_linux"
42611
42630
  ],
42612
42631
  "collection": false,
42613
42632
  "type": "String",
@@ -42791,8 +42810,8 @@
42791
42810
  "description": "",
42792
42811
  "slug": "bluetooth-device",
42793
42812
  "websiteUrl": "https://electronjs.org/docs/api/structures/bluetooth-device",
42794
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/bluetooth-device.md",
42795
- "version": "34.4.1",
42813
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/bluetooth-device.md",
42814
+ "version": "34.5.4",
42796
42815
  "properties": [
42797
42816
  {
42798
42817
  "name": "deviceName",
@@ -42821,8 +42840,8 @@
42821
42840
  "description": "",
42822
42841
  "slug": "browser-window-options",
42823
42842
  "websiteUrl": "https://electronjs.org/docs/api/structures/browser-window-options",
42824
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/browser-window-options.md",
42825
- "version": "34.4.1",
42843
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/browser-window-options.md",
42844
+ "version": "34.5.4",
42826
42845
  "properties": [
42827
42846
  {
42828
42847
  "name": "webPreferences",
@@ -42848,8 +42867,8 @@
42848
42867
  "description": "",
42849
42868
  "slug": "certificate-principal",
42850
42869
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate-principal",
42851
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/certificate-principal.md",
42852
- "version": "34.4.1",
42870
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/certificate-principal.md",
42871
+ "version": "34.5.4",
42853
42872
  "properties": [
42854
42873
  {
42855
42874
  "name": "commonName",
@@ -42913,8 +42932,8 @@
42913
42932
  "description": "",
42914
42933
  "slug": "certificate",
42915
42934
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate",
42916
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/certificate.md",
42917
- "version": "34.4.1",
42935
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/certificate.md",
42936
+ "version": "34.5.4",
42918
42937
  "properties": [
42919
42938
  {
42920
42939
  "name": "data",
@@ -43009,8 +43028,8 @@
43009
43028
  "description": "",
43010
43029
  "slug": "cookie",
43011
43030
  "websiteUrl": "https://electronjs.org/docs/api/structures/cookie",
43012
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/cookie.md",
43013
- "version": "34.4.1",
43031
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/cookie.md",
43032
+ "version": "34.5.4",
43014
43033
  "properties": [
43015
43034
  {
43016
43035
  "name": "name",
@@ -43122,8 +43141,8 @@
43122
43141
  "description": "",
43123
43142
  "slug": "cpu-usage",
43124
43143
  "websiteUrl": "https://electronjs.org/docs/api/structures/cpu-usage",
43125
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/cpu-usage.md",
43126
- "version": "34.4.1",
43144
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/cpu-usage.md",
43145
+ "version": "34.5.4",
43127
43146
  "properties": [
43128
43147
  {
43129
43148
  "name": "percentCPUUsage",
@@ -43157,8 +43176,8 @@
43157
43176
  "description": "",
43158
43177
  "slug": "crash-report",
43159
43178
  "websiteUrl": "https://electronjs.org/docs/api/structures/crash-report",
43160
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/crash-report.md",
43161
- "version": "34.4.1",
43179
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/crash-report.md",
43180
+ "version": "34.5.4",
43162
43181
  "properties": [
43163
43182
  {
43164
43183
  "name": "date",
@@ -43185,8 +43204,8 @@
43185
43204
  "description": "",
43186
43205
  "slug": "custom-scheme",
43187
43206
  "websiteUrl": "https://electronjs.org/docs/api/structures/custom-scheme",
43188
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/custom-scheme.md",
43189
- "version": "34.4.1",
43207
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/custom-scheme.md",
43208
+ "version": "34.5.4",
43190
43209
  "properties": [
43191
43210
  {
43192
43211
  "name": "scheme",
@@ -43279,8 +43298,8 @@
43279
43298
  "description": "",
43280
43299
  "slug": "desktop-capturer-source",
43281
43300
  "websiteUrl": "https://electronjs.org/docs/api/structures/desktop-capturer-source",
43282
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/desktop-capturer-source.md",
43283
- "version": "34.4.1",
43301
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/desktop-capturer-source.md",
43302
+ "version": "34.5.4",
43284
43303
  "properties": [
43285
43304
  {
43286
43305
  "name": "id",
@@ -43333,8 +43352,8 @@
43333
43352
  "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
43353
  "slug": "display",
43335
43354
  "websiteUrl": "https://electronjs.org/docs/api/structures/display",
43336
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/display.md",
43337
- "version": "34.4.1",
43355
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/display.md",
43356
+ "version": "34.5.4",
43338
43357
  "properties": [
43339
43358
  {
43340
43359
  "name": "accelerometerSupport",
@@ -43526,8 +43545,8 @@
43526
43545
  "description": "",
43527
43546
  "slug": "extension-info",
43528
43547
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension-info",
43529
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/extension-info.md",
43530
- "version": "34.4.1",
43548
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/extension-info.md",
43549
+ "version": "34.5.4",
43531
43550
  "properties": [
43532
43551
  {
43533
43552
  "name": "name",
@@ -43555,8 +43574,8 @@
43555
43574
  "description": "",
43556
43575
  "slug": "extension",
43557
43576
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension",
43558
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/extension.md",
43559
- "version": "34.4.1",
43577
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/extension.md",
43578
+ "version": "34.5.4",
43560
43579
  "properties": [
43561
43580
  {
43562
43581
  "name": "id",
@@ -43619,8 +43638,8 @@
43619
43638
  "description": "",
43620
43639
  "slug": "file-filter",
43621
43640
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-filter",
43622
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/file-filter.md",
43623
- "version": "34.4.1",
43641
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/file-filter.md",
43642
+ "version": "34.5.4",
43624
43643
  "properties": [
43625
43644
  {
43626
43645
  "name": "name",
@@ -43648,8 +43667,8 @@
43648
43667
  "description": "",
43649
43668
  "slug": "file-path-with-headers",
43650
43669
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-path-with-headers",
43651
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/file-path-with-headers.md",
43652
- "version": "34.4.1",
43670
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/file-path-with-headers.md",
43671
+ "version": "34.5.4",
43653
43672
  "properties": [
43654
43673
  {
43655
43674
  "name": "path",
@@ -43689,8 +43708,8 @@
43689
43708
  "description": "",
43690
43709
  "slug": "filesystem-permission-request",
43691
43710
  "websiteUrl": "https://electronjs.org/docs/api/structures/filesystem-permission-request",
43692
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/filesystem-permission-request.md",
43693
- "version": "34.4.1",
43711
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/filesystem-permission-request.md",
43712
+ "version": "34.5.4",
43694
43713
  "properties": [
43695
43714
  {
43696
43715
  "name": "filePath",
@@ -43735,8 +43754,8 @@
43735
43754
  "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
43755
  "slug": "gpu-feature-status",
43737
43756
  "websiteUrl": "https://electronjs.org/docs/api/structures/gpu-feature-status",
43738
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/gpu-feature-status.md",
43739
- "version": "34.4.1",
43757
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/gpu-feature-status.md",
43758
+ "version": "34.5.4",
43740
43759
  "properties": [
43741
43760
  {
43742
43761
  "name": "2d_canvas",
@@ -43863,8 +43882,8 @@
43863
43882
  "description": "",
43864
43883
  "slug": "hid-device",
43865
43884
  "websiteUrl": "https://electronjs.org/docs/api/structures/hid-device",
43866
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/hid-device.md",
43867
- "version": "34.4.1",
43885
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/hid-device.md",
43886
+ "version": "34.5.4",
43868
43887
  "properties": [
43869
43888
  {
43870
43889
  "name": "deviceId",
@@ -43926,8 +43945,8 @@
43926
43945
  "description": "",
43927
43946
  "slug": "input-event",
43928
43947
  "websiteUrl": "https://electronjs.org/docs/api/structures/input-event",
43929
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/input-event.md",
43930
- "version": "34.4.1",
43948
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/input-event.md",
43949
+ "version": "34.5.4",
43931
43950
  "properties": [
43932
43951
  {
43933
43952
  "name": "type",
@@ -44186,8 +44205,8 @@
44186
44205
  "description": "",
44187
44206
  "slug": "ipc-main-event",
44188
44207
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-event",
44189
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-main-event.md",
44190
- "version": "34.4.1",
44208
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/ipc-main-event.md",
44209
+ "version": "34.5.4",
44191
44210
  "properties": [
44192
44211
  {
44193
44212
  "name": "processId",
@@ -44283,8 +44302,8 @@
44283
44302
  "description": "",
44284
44303
  "slug": "ipc-main-invoke-event",
44285
44304
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-invoke-event",
44286
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-main-invoke-event.md",
44287
- "version": "34.4.1",
44305
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/ipc-main-invoke-event.md",
44306
+ "version": "34.5.4",
44288
44307
  "properties": [
44289
44308
  {
44290
44309
  "name": "processId",
@@ -44338,8 +44357,8 @@
44338
44357
  "description": "",
44339
44358
  "slug": "ipc-renderer-event",
44340
44359
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-renderer-event",
44341
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/ipc-renderer-event.md",
44342
- "version": "34.4.1",
44360
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/ipc-renderer-event.md",
44361
+ "version": "34.5.4",
44343
44362
  "properties": [
44344
44363
  {
44345
44364
  "name": "sender",
@@ -44365,8 +44384,8 @@
44365
44384
  "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
44385
  "slug": "jump-list-category",
44367
44386
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-category",
44368
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/jump-list-category.md",
44369
- "version": "34.4.1",
44387
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/jump-list-category.md",
44388
+ "version": "34.5.4",
44370
44389
  "properties": [
44371
44390
  {
44372
44391
  "name": "type",
@@ -44419,8 +44438,8 @@
44419
44438
  "description": "",
44420
44439
  "slug": "jump-list-item",
44421
44440
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-item",
44422
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/jump-list-item.md",
44423
- "version": "34.4.1",
44441
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/jump-list-item.md",
44442
+ "version": "34.5.4",
44424
44443
  "properties": [
44425
44444
  {
44426
44445
  "name": "type",
@@ -44523,8 +44542,8 @@
44523
44542
  "description": "",
44524
44543
  "slug": "keyboard-event",
44525
44544
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-event",
44526
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/keyboard-event.md",
44527
- "version": "34.4.1",
44545
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/keyboard-event.md",
44546
+ "version": "34.5.4",
44528
44547
  "properties": [
44529
44548
  {
44530
44549
  "name": "ctrlKey",
@@ -44575,8 +44594,8 @@
44575
44594
  "description": "",
44576
44595
  "slug": "keyboard-input-event",
44577
44596
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-input-event",
44578
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/keyboard-input-event.md",
44579
- "version": "34.4.1",
44597
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/keyboard-input-event.md",
44598
+ "version": "34.5.4",
44580
44599
  "properties": [
44581
44600
  {
44582
44601
  "name": "type",
@@ -44622,8 +44641,8 @@
44622
44641
  "description": "",
44623
44642
  "slug": "media-access-permission-request",
44624
44643
  "websiteUrl": "https://electronjs.org/docs/api/structures/media-access-permission-request",
44625
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/media-access-permission-request.md",
44626
- "version": "34.4.1",
44644
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/media-access-permission-request.md",
44645
+ "version": "34.5.4",
44627
44646
  "properties": [
44628
44647
  {
44629
44648
  "name": "securityOrigin",
@@ -44660,8 +44679,8 @@
44660
44679
  "description": "Note that all statistics are reported in Kilobytes.",
44661
44680
  "slug": "memory-info",
44662
44681
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-info",
44663
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/memory-info.md",
44664
- "version": "34.4.1",
44682
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/memory-info.md",
44683
+ "version": "34.5.4",
44665
44684
  "properties": [
44666
44685
  {
44667
44686
  "name": "workingSetSize",
@@ -44697,8 +44716,8 @@
44697
44716
  "description": "",
44698
44717
  "slug": "memory-usage-details",
44699
44718
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-usage-details",
44700
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/memory-usage-details.md",
44701
- "version": "34.4.1",
44719
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/memory-usage-details.md",
44720
+ "version": "34.5.4",
44702
44721
  "properties": [
44703
44722
  {
44704
44723
  "name": "count",
@@ -44732,8 +44751,8 @@
44732
44751
  "description": "",
44733
44752
  "slug": "mime-typed-buffer",
44734
44753
  "websiteUrl": "https://electronjs.org/docs/api/structures/mime-typed-buffer",
44735
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mime-typed-buffer.md",
44736
- "version": "34.4.1",
44754
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/mime-typed-buffer.md",
44755
+ "version": "34.5.4",
44737
44756
  "properties": [
44738
44757
  {
44739
44758
  "name": "mimeType",
@@ -44770,8 +44789,8 @@
44770
44789
  "description": "",
44771
44790
  "slug": "mouse-input-event",
44772
44791
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-input-event",
44773
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mouse-input-event.md",
44774
- "version": "34.4.1",
44792
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/mouse-input-event.md",
44793
+ "version": "34.5.4",
44775
44794
  "properties": [
44776
44795
  {
44777
44796
  "name": "type",
@@ -44898,8 +44917,8 @@
44898
44917
  "description": "",
44899
44918
  "slug": "mouse-wheel-input-event",
44900
44919
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-wheel-input-event",
44901
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/mouse-wheel-input-event.md",
44902
- "version": "34.4.1",
44920
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/mouse-wheel-input-event.md",
44921
+ "version": "34.5.4",
44903
44922
  "properties": [
44904
44923
  {
44905
44924
  "name": "type",
@@ -44987,8 +45006,8 @@
44987
45006
  "description": "",
44988
45007
  "slug": "navigation-entry",
44989
45008
  "websiteUrl": "https://electronjs.org/docs/api/structures/navigation-entry",
44990
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/navigation-entry.md",
44991
- "version": "34.4.1",
45009
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/navigation-entry.md",
45010
+ "version": "34.5.4",
44992
45011
  "properties": [
44993
45012
  {
44994
45013
  "name": "url",
@@ -45025,8 +45044,8 @@
45025
45044
  "description": "",
45026
45045
  "slug": "notification-action",
45027
45046
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-action",
45028
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/notification-action.md",
45029
- "version": "34.4.1",
45047
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/notification-action.md",
45048
+ "version": "34.5.4",
45030
45049
  "properties": [
45031
45050
  {
45032
45051
  "name": "type",
@@ -45059,8 +45078,8 @@
45059
45078
  "description": "",
45060
45079
  "slug": "notification-response",
45061
45080
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-response",
45062
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/notification-response.md",
45063
- "version": "34.4.1",
45081
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/notification-response.md",
45082
+ "version": "34.5.4",
45064
45083
  "properties": [
45065
45084
  {
45066
45085
  "name": "actionIdentifier",
@@ -45124,8 +45143,8 @@
45124
45143
  "description": "",
45125
45144
  "slug": "offscreen-shared-texture",
45126
45145
  "websiteUrl": "https://electronjs.org/docs/api/structures/offscreen-shared-texture",
45127
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/offscreen-shared-texture.md",
45128
- "version": "34.4.1",
45146
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/offscreen-shared-texture.md",
45147
+ "version": "34.5.4",
45129
45148
  "properties": [
45130
45149
  {
45131
45150
  "name": "textureInfo",
@@ -45332,8 +45351,8 @@
45332
45351
  "description": "",
45333
45352
  "slug": "open-external-permission-request",
45334
45353
  "websiteUrl": "https://electronjs.org/docs/api/structures/open-external-permission-request",
45335
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/open-external-permission-request.md",
45336
- "version": "34.4.1",
45354
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/open-external-permission-request.md",
45355
+ "version": "34.5.4",
45337
45356
  "properties": [
45338
45357
  {
45339
45358
  "name": "externalURL",
@@ -45352,8 +45371,8 @@
45352
45371
  "description": "",
45353
45372
  "slug": "payment-discount",
45354
45373
  "websiteUrl": "https://electronjs.org/docs/api/structures/payment-discount",
45355
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/payment-discount.md",
45356
- "version": "34.4.1",
45374
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/payment-discount.md",
45375
+ "version": "34.5.4",
45357
45376
  "properties": [
45358
45377
  {
45359
45378
  "name": "identifier",
@@ -45407,8 +45426,8 @@
45407
45426
  "description": "",
45408
45427
  "slug": "permission-request",
45409
45428
  "websiteUrl": "https://electronjs.org/docs/api/structures/permission-request",
45410
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/permission-request.md",
45411
- "version": "34.4.1",
45429
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/permission-request.md",
45430
+ "version": "34.5.4",
45412
45431
  "properties": [
45413
45432
  {
45414
45433
  "name": "requestingUrl",
@@ -45435,8 +45454,8 @@
45435
45454
  "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
45455
  "slug": "point",
45437
45456
  "websiteUrl": "https://electronjs.org/docs/api/structures/point",
45438
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/point.md",
45439
- "version": "34.4.1",
45457
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/point.md",
45458
+ "version": "34.5.4",
45440
45459
  "properties": [
45441
45460
  {
45442
45461
  "name": "x",
@@ -45462,8 +45481,8 @@
45462
45481
  "description": "",
45463
45482
  "slug": "post-body",
45464
45483
  "websiteUrl": "https://electronjs.org/docs/api/structures/post-body",
45465
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/post-body.md",
45466
- "version": "34.4.1",
45484
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/post-body.md",
45485
+ "version": "34.5.4",
45467
45486
  "properties": [
45468
45487
  {
45469
45488
  "name": "data",
@@ -45508,8 +45527,8 @@
45508
45527
  "description": "",
45509
45528
  "slug": "printer-info",
45510
45529
  "websiteUrl": "https://electronjs.org/docs/api/structures/printer-info",
45511
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/printer-info.md",
45512
- "version": "34.4.1",
45530
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/printer-info.md",
45531
+ "version": "34.5.4",
45513
45532
  "properties": [
45514
45533
  {
45515
45534
  "name": "name",
@@ -45571,8 +45590,8 @@
45571
45590
  "description": "",
45572
45591
  "slug": "process-memory-info",
45573
45592
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-memory-info",
45574
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/process-memory-info.md",
45575
- "version": "34.4.1",
45593
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/process-memory-info.md",
45594
+ "version": "34.5.4",
45576
45595
  "properties": [
45577
45596
  {
45578
45597
  "name": "residentSet",
@@ -45609,8 +45628,8 @@
45609
45628
  "description": "",
45610
45629
  "slug": "process-metric",
45611
45630
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-metric",
45612
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/process-metric.md",
45613
- "version": "34.4.1",
45631
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/process-metric.md",
45632
+ "version": "34.5.4",
45614
45633
  "properties": [
45615
45634
  {
45616
45635
  "name": "pid",
@@ -45759,8 +45778,8 @@
45759
45778
  "description": "",
45760
45779
  "slug": "product-discount",
45761
45780
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-discount",
45762
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product-discount.md",
45763
- "version": "34.4.1",
45781
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/product-discount.md",
45782
+ "version": "34.5.4",
45764
45783
  "properties": [
45765
45784
  {
45766
45785
  "name": "identifier",
@@ -45842,8 +45861,8 @@
45842
45861
  "description": "",
45843
45862
  "slug": "product-subscription-period",
45844
45863
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-subscription-period",
45845
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product-subscription-period.md",
45846
- "version": "34.4.1",
45864
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/product-subscription-period.md",
45865
+ "version": "34.5.4",
45847
45866
  "properties": [
45848
45867
  {
45849
45868
  "name": "numberOfUnits",
@@ -45887,8 +45906,8 @@
45887
45906
  "description": "",
45888
45907
  "slug": "product",
45889
45908
  "websiteUrl": "https://electronjs.org/docs/api/structures/product",
45890
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/product.md",
45891
- "version": "34.4.1",
45909
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/product.md",
45910
+ "version": "34.5.4",
45892
45911
  "properties": [
45893
45912
  {
45894
45913
  "name": "productIdentifier",
@@ -46009,8 +46028,8 @@
46009
46028
  "description": "",
46010
46029
  "slug": "protocol-request",
46011
46030
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-request",
46012
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-request.md",
46013
- "version": "34.4.1",
46031
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/protocol-request.md",
46032
+ "version": "34.5.4",
46014
46033
  "properties": [
46015
46034
  {
46016
46035
  "name": "url",
@@ -46075,8 +46094,8 @@
46075
46094
  "description": "",
46076
46095
  "slug": "protocol-response-upload-data",
46077
46096
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response-upload-data",
46078
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-response-upload-data.md",
46079
- "version": "34.4.1",
46097
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/protocol-response-upload-data.md",
46098
+ "version": "34.5.4",
46080
46099
  "properties": [
46081
46100
  {
46082
46101
  "name": "contentType",
@@ -46113,8 +46132,8 @@
46113
46132
  "description": "",
46114
46133
  "slug": "protocol-response",
46115
46134
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response",
46116
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/protocol-response.md",
46117
- "version": "34.4.1",
46135
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/protocol-response.md",
46136
+ "version": "34.5.4",
46118
46137
  "properties": [
46119
46138
  {
46120
46139
  "name": "error",
@@ -46262,8 +46281,8 @@
46262
46281
  "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
46282
  "slug": "proxy-config",
46264
46283
  "websiteUrl": "https://electronjs.org/docs/api/structures/proxy-config",
46265
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/proxy-config.md",
46266
- "version": "34.4.1",
46284
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/proxy-config.md",
46285
+ "version": "34.5.4",
46267
46286
  "properties": [
46268
46287
  {
46269
46288
  "name": "mode",
@@ -46330,8 +46349,8 @@
46330
46349
  "description": "",
46331
46350
  "slug": "rectangle",
46332
46351
  "websiteUrl": "https://electronjs.org/docs/api/structures/rectangle",
46333
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/rectangle.md",
46334
- "version": "34.4.1",
46352
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/rectangle.md",
46353
+ "version": "34.5.4",
46335
46354
  "properties": [
46336
46355
  {
46337
46356
  "name": "x",
@@ -46373,8 +46392,8 @@
46373
46392
  "description": "",
46374
46393
  "slug": "referrer",
46375
46394
  "websiteUrl": "https://electronjs.org/docs/api/structures/referrer",
46376
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/referrer.md",
46377
- "version": "34.4.1",
46395
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/referrer.md",
46396
+ "version": "34.5.4",
46378
46397
  "properties": [
46379
46398
  {
46380
46399
  "name": "url",
@@ -46435,8 +46454,8 @@
46435
46454
  "description": "",
46436
46455
  "slug": "render-process-gone-details",
46437
46456
  "websiteUrl": "https://electronjs.org/docs/api/structures/render-process-gone-details",
46438
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/render-process-gone-details.md",
46439
- "version": "34.4.1",
46457
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/render-process-gone-details.md",
46458
+ "version": "34.5.4",
46440
46459
  "properties": [
46441
46460
  {
46442
46461
  "name": "reason",
@@ -46492,8 +46511,8 @@
46492
46511
  "description": "",
46493
46512
  "slug": "resolved-endpoint",
46494
46513
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-endpoint",
46495
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/resolved-endpoint.md",
46496
- "version": "34.4.1",
46514
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/resolved-endpoint.md",
46515
+ "version": "34.5.4",
46497
46516
  "properties": [
46498
46517
  {
46499
46518
  "name": "address",
@@ -46534,8 +46553,8 @@
46534
46553
  "description": "",
46535
46554
  "slug": "resolved-host",
46536
46555
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-host",
46537
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/resolved-host.md",
46538
- "version": "34.4.1",
46556
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/resolved-host.md",
46557
+ "version": "34.5.4",
46539
46558
  "properties": [
46540
46559
  {
46541
46560
  "name": "endpoints",
@@ -46553,8 +46572,8 @@
46553
46572
  "description": "",
46554
46573
  "slug": "scrubber-item",
46555
46574
  "websiteUrl": "https://electronjs.org/docs/api/structures/scrubber-item",
46556
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/scrubber-item.md",
46557
- "version": "34.4.1",
46575
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/scrubber-item.md",
46576
+ "version": "34.5.4",
46558
46577
  "properties": [
46559
46578
  {
46560
46579
  "name": "label",
@@ -46581,8 +46600,8 @@
46581
46600
  "description": "",
46582
46601
  "slug": "segmented-control-segment",
46583
46602
  "websiteUrl": "https://electronjs.org/docs/api/structures/segmented-control-segment",
46584
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/segmented-control-segment.md",
46585
- "version": "34.4.1",
46603
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/segmented-control-segment.md",
46604
+ "version": "34.5.4",
46586
46605
  "properties": [
46587
46606
  {
46588
46607
  "name": "label",
@@ -46617,8 +46636,8 @@
46617
46636
  "description": "",
46618
46637
  "slug": "serial-port",
46619
46638
  "websiteUrl": "https://electronjs.org/docs/api/structures/serial-port",
46620
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/serial-port.md",
46621
- "version": "34.4.1",
46639
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/serial-port.md",
46640
+ "version": "34.5.4",
46622
46641
  "properties": [
46623
46642
  {
46624
46643
  "name": "portId",
@@ -46704,8 +46723,8 @@
46704
46723
  "description": "",
46705
46724
  "slug": "service-worker-info",
46706
46725
  "websiteUrl": "https://electronjs.org/docs/api/structures/service-worker-info",
46707
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/service-worker-info.md",
46708
- "version": "34.4.1",
46726
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/service-worker-info.md",
46727
+ "version": "34.5.4",
46709
46728
  "properties": [
46710
46729
  {
46711
46730
  "name": "scriptUrl",
@@ -46741,8 +46760,8 @@
46741
46760
  "description": "",
46742
46761
  "slug": "shared-dictionary-info",
46743
46762
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-dictionary-info",
46744
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-dictionary-info.md",
46745
- "version": "34.4.1",
46763
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/shared-dictionary-info.md",
46764
+ "version": "34.5.4",
46746
46765
  "properties": [
46747
46766
  {
46748
46767
  "name": "match",
@@ -46837,8 +46856,8 @@
46837
46856
  "description": "",
46838
46857
  "slug": "shared-dictionary-usage-info",
46839
46858
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-dictionary-usage-info",
46840
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-dictionary-usage-info.md",
46841
- "version": "34.4.1",
46859
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/shared-dictionary-usage-info.md",
46860
+ "version": "34.5.4",
46842
46861
  "properties": [
46843
46862
  {
46844
46863
  "name": "frameOrigin",
@@ -46874,8 +46893,8 @@
46874
46893
  "description": "",
46875
46894
  "slug": "shared-worker-info",
46876
46895
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-worker-info",
46877
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shared-worker-info.md",
46878
- "version": "34.4.1",
46896
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/shared-worker-info.md",
46897
+ "version": "34.5.4",
46879
46898
  "properties": [
46880
46899
  {
46881
46900
  "name": "id",
@@ -46903,8 +46922,8 @@
46903
46922
  "description": "",
46904
46923
  "slug": "sharing-item",
46905
46924
  "websiteUrl": "https://electronjs.org/docs/api/structures/sharing-item",
46906
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/sharing-item.md",
46907
- "version": "34.4.1",
46925
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/sharing-item.md",
46926
+ "version": "34.5.4",
46908
46927
  "properties": [
46909
46928
  {
46910
46929
  "name": "texts",
@@ -46941,8 +46960,8 @@
46941
46960
  "description": "",
46942
46961
  "slug": "shortcut-details",
46943
46962
  "websiteUrl": "https://electronjs.org/docs/api/structures/shortcut-details",
46944
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/shortcut-details.md",
46945
- "version": "34.4.1",
46963
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/shortcut-details.md",
46964
+ "version": "34.5.4",
46946
46965
  "properties": [
46947
46966
  {
46948
46967
  "name": "target",
@@ -47023,8 +47042,8 @@
47023
47042
  "description": "",
47024
47043
  "slug": "size",
47025
47044
  "websiteUrl": "https://electronjs.org/docs/api/structures/size",
47026
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/size.md",
47027
- "version": "34.4.1",
47045
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/size.md",
47046
+ "version": "34.5.4",
47028
47047
  "properties": [
47029
47048
  {
47030
47049
  "name": "width",
@@ -47050,8 +47069,8 @@
47050
47069
  "description": "",
47051
47070
  "slug": "task",
47052
47071
  "websiteUrl": "https://electronjs.org/docs/api/structures/task",
47053
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/task.md",
47054
- "version": "34.4.1",
47072
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/task.md",
47073
+ "version": "34.5.4",
47055
47074
  "properties": [
47056
47075
  {
47057
47076
  "name": "program",
@@ -47123,8 +47142,8 @@
47123
47142
  "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
47143
  "slug": "thumbar-button",
47125
47144
  "websiteUrl": "https://electronjs.org/docs/api/structures/thumbar-button",
47126
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/thumbar-button.md",
47127
- "version": "34.4.1",
47145
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/thumbar-button.md",
47146
+ "version": "34.5.4",
47128
47147
  "properties": [
47129
47148
  {
47130
47149
  "name": "icon",
@@ -47170,8 +47189,8 @@
47170
47189
  "description": "",
47171
47190
  "slug": "trace-categories-and-options",
47172
47191
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-categories-and-options",
47173
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/trace-categories-and-options.md",
47174
- "version": "34.4.1",
47192
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/trace-categories-and-options.md",
47193
+ "version": "34.5.4",
47175
47194
  "properties": [
47176
47195
  {
47177
47196
  "name": "categoryFilter",
@@ -47199,8 +47218,8 @@
47199
47218
  "description": "An example TraceConfig that roughly matches what Chrome DevTools records:",
47200
47219
  "slug": "trace-config",
47201
47220
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-config",
47202
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/trace-config.md",
47203
- "version": "34.4.1",
47221
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/trace-config.md",
47222
+ "version": "34.5.4",
47204
47223
  "properties": [
47205
47224
  {
47206
47225
  "name": "recording_mode",
@@ -47314,8 +47333,8 @@
47314
47333
  "description": "",
47315
47334
  "slug": "transaction",
47316
47335
  "websiteUrl": "https://electronjs.org/docs/api/structures/transaction",
47317
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/transaction.md",
47318
- "version": "34.4.1",
47336
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/transaction.md",
47337
+ "version": "34.5.4",
47319
47338
  "properties": [
47320
47339
  {
47321
47340
  "name": "transactionIdentifier",
@@ -47443,8 +47462,8 @@
47443
47462
  "description": "",
47444
47463
  "slug": "upload-data",
47445
47464
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-data",
47446
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-data.md",
47447
- "version": "34.4.1",
47465
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/upload-data.md",
47466
+ "version": "34.5.4",
47448
47467
  "properties": [
47449
47468
  {
47450
47469
  "name": "bytes",
@@ -47480,8 +47499,8 @@
47480
47499
  "description": "",
47481
47500
  "slug": "upload-file",
47482
47501
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-file",
47483
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-file.md",
47484
- "version": "34.4.1",
47502
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/upload-file.md",
47503
+ "version": "34.5.4",
47485
47504
  "properties": [
47486
47505
  {
47487
47506
  "name": "type",
@@ -47532,8 +47551,8 @@
47532
47551
  "description": "",
47533
47552
  "slug": "upload-raw-data",
47534
47553
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-raw-data",
47535
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/upload-raw-data.md",
47536
- "version": "34.4.1",
47554
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/upload-raw-data.md",
47555
+ "version": "34.5.4",
47537
47556
  "properties": [
47538
47557
  {
47539
47558
  "name": "type",
@@ -47559,8 +47578,8 @@
47559
47578
  "description": "",
47560
47579
  "slug": "usb-device",
47561
47580
  "websiteUrl": "https://electronjs.org/docs/api/structures/usb-device",
47562
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/usb-device.md",
47563
- "version": "34.4.1",
47581
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/usb-device.md",
47582
+ "version": "34.5.4",
47564
47583
  "properties": [
47565
47584
  {
47566
47585
  "name": "deviceId",
@@ -47694,8 +47713,8 @@
47694
47713
  "description": "This type is a helper alias, no object will ever exist of this type.",
47695
47714
  "slug": "user-default-types",
47696
47715
  "websiteUrl": "https://electronjs.org/docs/api/structures/user-default-types",
47697
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/user-default-types.md",
47698
- "version": "34.4.1",
47716
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/user-default-types.md",
47717
+ "version": "34.5.4",
47699
47718
  "properties": [
47700
47719
  {
47701
47720
  "name": "string",
@@ -47788,8 +47807,8 @@
47788
47807
  "description": "",
47789
47808
  "slug": "web-preferences",
47790
47809
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-preferences",
47791
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-preferences.md",
47792
- "version": "34.4.1",
47810
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/web-preferences.md",
47811
+ "version": "34.5.4",
47793
47812
  "properties": [
47794
47813
  {
47795
47814
  "name": "devTools",
@@ -48295,8 +48314,8 @@
48295
48314
  "description": "",
48296
48315
  "slug": "web-request-filter",
48297
48316
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-request-filter",
48298
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-request-filter.md",
48299
- "version": "34.4.1",
48317
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/web-request-filter.md",
48318
+ "version": "34.5.4",
48300
48319
  "properties": [
48301
48320
  {
48302
48321
  "name": "urls",
@@ -48373,8 +48392,8 @@
48373
48392
  "description": "",
48374
48393
  "slug": "web-source",
48375
48394
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-source",
48376
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/web-source.md",
48377
- "version": "34.4.1",
48395
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/web-source.md",
48396
+ "version": "34.5.4",
48378
48397
  "properties": [
48379
48398
  {
48380
48399
  "name": "code",
@@ -48402,8 +48421,8 @@
48402
48421
  "description": "",
48403
48422
  "slug": "window-open-handler-response",
48404
48423
  "websiteUrl": "https://electronjs.org/docs/api/structures/window-open-handler-response",
48405
- "repoUrl": "https://github.com/electron/electron/blob/v34.4.1/docs/api/structures/window-open-handler-response.md",
48406
- "version": "34.4.1",
48424
+ "repoUrl": "https://github.com/electron/electron/blob/v34.5.4/docs/api/structures/window-open-handler-response.md",
48425
+ "version": "34.5.4",
48407
48426
  "properties": [
48408
48427
  {
48409
48428
  "name": "action",