@overwolf/ow-electron 31.7.6 → 31.7.7

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/v31.7.6/docs/api/app.md",
8
- "version": "31.7.6",
7
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/app.md",
8
+ "version": "31.7.7",
9
9
  "type": "Module",
10
10
  "process": {
11
11
  "main": true,
@@ -3104,8 +3104,8 @@
3104
3104
  "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 the electron-winstaller, Electron Forge or the grunt-electron-installer package to generate a Windows installer.\n\nWhen using electron-winstaller or Electron Forge make sure you do not try to update your app the first time it runs (Also see this issue for more info). It's also recommended to use electron-squirrel-startup to get desktop shortcuts for your app.\n\nThe installer generated with Squirrel 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.\n\nLike Squirrel.Mac, Windows can host updates on S3 or any other static file host. You can read the documents of Squirrel.Windows to get more details about how Squirrel.Windows works.",
3105
3105
  "slug": "auto-updater",
3106
3106
  "websiteUrl": "https://electronjs.org/docs/api/auto-updater",
3107
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/auto-updater.md",
3108
- "version": "31.7.6",
3107
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/auto-updater.md",
3108
+ "version": "31.7.7",
3109
3109
  "type": "Module",
3110
3110
  "process": {
3111
3111
  "main": true,
@@ -3321,8 +3321,8 @@
3321
3321
  "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### 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`.",
3322
3322
  "slug": "base-window",
3323
3323
  "websiteUrl": "https://electronjs.org/docs/api/base-window",
3324
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/base-window.md",
3325
- "version": "31.7.6",
3324
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/base-window.md",
3325
+ "version": "31.7.7",
3326
3326
  "type": "Class",
3327
3327
  "process": {
3328
3328
  "main": true,
@@ -6472,8 +6472,8 @@
6472
6472
  "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```",
6473
6473
  "slug": "browser-view",
6474
6474
  "websiteUrl": "https://electronjs.org/docs/api/browser-view",
6475
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/browser-view.md",
6476
- "version": "31.7.6",
6475
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/browser-view.md",
6476
+ "version": "31.7.7",
6477
6477
  "type": "Class",
6478
6478
  "process": {
6479
6479
  "main": true,
@@ -6640,8 +6640,8 @@
6640
6640
  "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`.",
6641
6641
  "slug": "browser-window",
6642
6642
  "websiteUrl": "https://electronjs.org/docs/api/browser-window",
6643
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/browser-window.md",
6644
- "version": "31.7.6",
6643
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/browser-window.md",
6644
+ "version": "31.7.7",
6645
6645
  "type": "Class",
6646
6646
  "process": {
6647
6647
  "main": true,
@@ -10266,8 +10266,8 @@
10266
10266
  "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.",
10267
10267
  "slug": "client-request",
10268
10268
  "websiteUrl": "https://electronjs.org/docs/api/client-request",
10269
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/client-request.md",
10270
- "version": "31.7.6",
10269
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/client-request.md",
10270
+ "version": "31.7.7",
10271
10271
  "type": "Class",
10272
10272
  "process": {
10273
10273
  "main": true,
@@ -10998,8 +10998,8 @@
10998
10998
  "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:",
10999
10999
  "slug": "clipboard",
11000
11000
  "websiteUrl": "https://electronjs.org/docs/api/clipboard",
11001
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/clipboard.md",
11002
- "version": "31.7.6",
11001
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/clipboard.md",
11002
+ "version": "31.7.7",
11003
11003
  "type": "Module",
11004
11004
  "process": {
11005
11005
  "main": true,
@@ -11665,8 +11665,8 @@
11665
11665
  "description": "",
11666
11666
  "slug": "command-line",
11667
11667
  "websiteUrl": "https://electronjs.org/docs/api/command-line",
11668
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/command-line.md",
11669
- "version": "31.7.6",
11668
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/command-line.md",
11669
+ "version": "31.7.7",
11670
11670
  "type": "Class",
11671
11671
  "process": {
11672
11672
  "main": true,
@@ -11793,8 +11793,8 @@
11793
11793
  "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.",
11794
11794
  "slug": "content-tracing",
11795
11795
  "websiteUrl": "https://electronjs.org/docs/api/content-tracing",
11796
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/content-tracing.md",
11797
- "version": "31.7.6",
11796
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/content-tracing.md",
11797
+ "version": "31.7.7",
11798
11798
  "type": "Module",
11799
11799
  "process": {
11800
11800
  "main": true,
@@ -11931,8 +11931,8 @@
11931
11931
  "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.",
11932
11932
  "slug": "context-bridge",
11933
11933
  "websiteUrl": "https://electronjs.org/docs/api/context-bridge",
11934
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/context-bridge.md",
11935
- "version": "31.7.6",
11934
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/context-bridge.md",
11935
+ "version": "31.7.7",
11936
11936
  "type": "Module",
11937
11937
  "process": {
11938
11938
  "main": false,
@@ -12008,8 +12008,8 @@
12008
12008
  "description": "",
12009
12009
  "slug": "cookies",
12010
12010
  "websiteUrl": "https://electronjs.org/docs/api/cookies",
12011
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/cookies.md",
12012
- "version": "31.7.6",
12011
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/cookies.md",
12012
+ "version": "31.7.7",
12013
12013
  "type": "Class",
12014
12014
  "process": {
12015
12015
  "main": true,
@@ -12358,8 +12358,8 @@
12358
12358
  "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.",
12359
12359
  "slug": "crash-reporter",
12360
12360
  "websiteUrl": "https://electronjs.org/docs/api/crash-reporter",
12361
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/crash-reporter.md",
12362
- "version": "31.7.6",
12361
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/crash-reporter.md",
12362
+ "version": "31.7.7",
12363
12363
  "type": "Module",
12364
12364
  "process": {
12365
12365
  "main": true,
@@ -12631,8 +12631,8 @@
12631
12631
  "description": "",
12632
12632
  "slug": "debugger",
12633
12633
  "websiteUrl": "https://electronjs.org/docs/api/debugger",
12634
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/debugger.md",
12635
- "version": "31.7.6",
12634
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/debugger.md",
12635
+ "version": "31.7.7",
12636
12636
  "type": "Class",
12637
12637
  "process": {
12638
12638
  "main": true,
@@ -12803,8 +12803,8 @@
12803
12803
  "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 })\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.",
12804
12804
  "slug": "desktop-capturer",
12805
12805
  "websiteUrl": "https://electronjs.org/docs/api/desktop-capturer",
12806
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/desktop-capturer.md",
12807
- "version": "31.7.6",
12806
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/desktop-capturer.md",
12807
+ "version": "31.7.7",
12808
12808
  "type": "Module",
12809
12809
  "process": {
12810
12810
  "main": true,
@@ -12885,8 +12885,8 @@
12885
12885
  "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:",
12886
12886
  "slug": "dialog",
12887
12887
  "websiteUrl": "https://electronjs.org/docs/api/dialog",
12888
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/dialog.md",
12889
- "version": "31.7.6",
12888
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/dialog.md",
12889
+ "version": "31.7.7",
12890
12890
  "type": "Module",
12891
12891
  "process": {
12892
12892
  "main": true,
@@ -13968,8 +13968,8 @@
13968
13968
  "description": "",
13969
13969
  "slug": "dock",
13970
13970
  "websiteUrl": "https://electronjs.org/docs/api/dock",
13971
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/dock.md",
13972
- "version": "31.7.6",
13971
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/dock.md",
13972
+ "version": "31.7.7",
13973
13973
  "type": "Class",
13974
13974
  "process": {
13975
13975
  "main": true,
@@ -14213,8 +14213,8 @@
14213
14213
  "description": "",
14214
14214
  "slug": "download-item",
14215
14215
  "websiteUrl": "https://electronjs.org/docs/api/download-item",
14216
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/download-item.md",
14217
- "version": "31.7.6",
14216
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/download-item.md",
14217
+ "version": "31.7.7",
14218
14218
  "type": "Class",
14219
14219
  "process": {
14220
14220
  "main": true,
@@ -14636,8 +14636,8 @@
14636
14636
  "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.",
14637
14637
  "slug": "global-shortcut",
14638
14638
  "websiteUrl": "https://electronjs.org/docs/api/global-shortcut",
14639
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/global-shortcut.md",
14640
- "version": "31.7.6",
14639
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/global-shortcut.md",
14640
+ "version": "31.7.7",
14641
14641
  "type": "Module",
14642
14642
  "process": {
14643
14643
  "main": true,
@@ -14757,8 +14757,8 @@
14757
14757
  "description": "> In-app purchases on Mac App Store.\n\nProcess: Main",
14758
14758
  "slug": "in-app-purchase",
14759
14759
  "websiteUrl": "https://electronjs.org/docs/api/in-app-purchase",
14760
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/in-app-purchase.md",
14761
- "version": "31.7.6",
14760
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/in-app-purchase.md",
14761
+ "version": "31.7.7",
14762
14762
  "type": "Module",
14763
14763
  "process": {
14764
14764
  "main": true,
@@ -14935,8 +14935,8 @@
14935
14935
  "description": "",
14936
14936
  "slug": "incoming-message",
14937
14937
  "websiteUrl": "https://electronjs.org/docs/api/incoming-message",
14938
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/incoming-message.md",
14939
- "version": "31.7.6",
14938
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/incoming-message.md",
14939
+ "version": "31.7.7",
14940
14940
  "type": "Class",
14941
14941
  "process": {
14942
14942
  "main": true,
@@ -15093,8 +15093,8 @@
15093
15093
  "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.",
15094
15094
  "slug": "ipc-main",
15095
15095
  "websiteUrl": "https://electronjs.org/docs/api/ipc-main",
15096
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/ipc-main.md",
15097
- "version": "31.7.6",
15096
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/ipc-main.md",
15097
+ "version": "31.7.7",
15098
15098
  "type": "Module",
15099
15099
  "process": {
15100
15100
  "main": true,
@@ -15388,8 +15388,8 @@
15388
15388
  "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.",
15389
15389
  "slug": "ipc-renderer",
15390
15390
  "websiteUrl": "https://electronjs.org/docs/api/ipc-renderer",
15391
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/ipc-renderer.md",
15392
- "version": "31.7.6",
15391
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/ipc-renderer.md",
15392
+ "version": "31.7.7",
15393
15393
  "type": "Module",
15394
15394
  "process": {
15395
15395
  "main": false,
@@ -15780,8 +15780,8 @@
15780
15780
  "description": "> Add items to native application menus and context menus.\n\nProcess: Main\n\nSee `Menu` for examples.",
15781
15781
  "slug": "menu-item",
15782
15782
  "websiteUrl": "https://electronjs.org/docs/api/menu-item",
15783
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/menu-item.md",
15784
- "version": "31.7.6",
15783
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/menu-item.md",
15784
+ "version": "31.7.7",
15785
15785
  "type": "Class",
15786
15786
  "process": {
15787
15787
  "main": true,
@@ -16677,8 +16677,8 @@
16677
16677
  "description": "\n\n### Class: Menu\n\n> Create native application menus and context menus.\n\nProcess: Main",
16678
16678
  "slug": "menu",
16679
16679
  "websiteUrl": "https://electronjs.org/docs/api/menu",
16680
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/menu.md",
16681
- "version": "31.7.6",
16680
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/menu.md",
16681
+ "version": "31.7.7",
16682
16682
  "type": "Class",
16683
16683
  "process": {
16684
16684
  "main": true,
@@ -17051,8 +17051,8 @@
17051
17051
  "description": "",
17052
17052
  "slug": "message-channel-main",
17053
17053
  "websiteUrl": "https://electronjs.org/docs/api/message-channel-main",
17054
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/message-channel-main.md",
17055
- "version": "31.7.6",
17054
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/message-channel-main.md",
17055
+ "version": "31.7.7",
17056
17056
  "type": "Class",
17057
17057
  "process": {
17058
17058
  "main": true,
@@ -17092,8 +17092,8 @@
17092
17092
  "description": "",
17093
17093
  "slug": "message-port-main",
17094
17094
  "websiteUrl": "https://electronjs.org/docs/api/message-port-main",
17095
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/message-port-main.md",
17096
- "version": "31.7.6",
17095
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/message-port-main.md",
17096
+ "version": "31.7.7",
17097
17097
  "type": "Class",
17098
17098
  "process": {
17099
17099
  "main": true,
@@ -17199,8 +17199,8 @@
17199
17199
  "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`).",
17200
17200
  "slug": "native-image",
17201
17201
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17202
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/native-image.md",
17203
- "version": "31.7.6",
17202
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/native-image.md",
17203
+ "version": "31.7.7",
17204
17204
  "type": "Module",
17205
17205
  "process": {
17206
17206
  "main": true,
@@ -17446,8 +17446,8 @@
17446
17446
  "description": "",
17447
17447
  "slug": "native-image",
17448
17448
  "websiteUrl": "https://electronjs.org/docs/api/native-image",
17449
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/native-image.md",
17450
- "version": "31.7.6",
17449
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/native-image.md",
17450
+ "version": "31.7.7",
17451
17451
  "type": "Class",
17452
17452
  "process": {
17453
17453
  "main": true,
@@ -17869,8 +17869,8 @@
17869
17869
  "description": "> Read and respond to changes in Chromium's native color theme.\n\nProcess: Main",
17870
17870
  "slug": "native-theme",
17871
17871
  "websiteUrl": "https://electronjs.org/docs/api/native-theme",
17872
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/native-theme.md",
17873
- "version": "31.7.6",
17872
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/native-theme.md",
17873
+ "version": "31.7.7",
17874
17874
  "type": "Module",
17875
17875
  "process": {
17876
17876
  "main": true,
@@ -17980,8 +17980,8 @@
17980
17980
  "description": "",
17981
17981
  "slug": "navigation-history",
17982
17982
  "websiteUrl": "https://electronjs.org/docs/api/navigation-history",
17983
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/navigation-history.md",
17984
- "version": "31.7.6",
17983
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/navigation-history.md",
17984
+ "version": "31.7.7",
17985
17985
  "type": "Class",
17986
17986
  "process": {
17987
17987
  "main": true,
@@ -18067,8 +18067,8 @@
18067
18067
  "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.",
18068
18068
  "slug": "net-log",
18069
18069
  "websiteUrl": "https://electronjs.org/docs/api/net-log",
18070
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/net-log.md",
18071
- "version": "31.7.6",
18070
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/net-log.md",
18071
+ "version": "31.7.7",
18072
18072
  "type": "Module",
18073
18073
  "process": {
18074
18074
  "main": true,
@@ -18183,8 +18183,8 @@
18183
18183
  "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.",
18184
18184
  "slug": "net",
18185
18185
  "websiteUrl": "https://electronjs.org/docs/api/net",
18186
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/net.md",
18187
- "version": "31.7.6",
18186
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/net.md",
18187
+ "version": "31.7.7",
18188
18188
  "type": "Module",
18189
18189
  "process": {
18190
18190
  "main": true,
@@ -18424,8 +18424,8 @@
18424
18424
  "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",
18425
18425
  "slug": "notification",
18426
18426
  "websiteUrl": "https://electronjs.org/docs/api/notification",
18427
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/notification.md",
18428
- "version": "31.7.6",
18427
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/notification.md",
18428
+ "version": "31.7.7",
18429
18429
  "type": "Class",
18430
18430
  "process": {
18431
18431
  "main": true,
@@ -18931,8 +18931,8 @@
18931
18931
  "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._",
18932
18932
  "slug": "parent-port",
18933
18933
  "websiteUrl": "https://electronjs.org/docs/api/parent-port",
18934
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/parent-port.md",
18935
- "version": "31.7.6",
18934
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/parent-port.md",
18935
+ "version": "31.7.7",
18936
18936
  "type": "Module",
18937
18937
  "process": {
18938
18938
  "main": false,
@@ -19003,8 +19003,8 @@
19003
19003
  "description": "> Monitor power state changes.\n\nProcess: Main",
19004
19004
  "slug": "power-monitor",
19005
19005
  "websiteUrl": "https://electronjs.org/docs/api/power-monitor",
19006
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/power-monitor.md",
19007
- "version": "31.7.6",
19006
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/power-monitor.md",
19007
+ "version": "31.7.7",
19008
19008
  "type": "Module",
19009
19009
  "process": {
19010
19010
  "main": true,
@@ -19232,8 +19232,8 @@
19232
19232
  "description": "> Block the system from entering low-power (sleep) mode.\n\nProcess: Main\n\nFor example:",
19233
19233
  "slug": "power-save-blocker",
19234
19234
  "websiteUrl": "https://electronjs.org/docs/api/power-save-blocker",
19235
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/power-save-blocker.md",
19236
- "version": "31.7.6",
19235
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/power-save-blocker.md",
19236
+ "version": "31.7.7",
19237
19237
  "type": "Module",
19238
19238
  "process": {
19239
19239
  "main": true,
@@ -19322,8 +19322,8 @@
19322
19322
  "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`",
19323
19323
  "slug": "process",
19324
19324
  "websiteUrl": "https://electronjs.org/docs/api/process",
19325
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/process.md",
19326
- "version": "31.7.6",
19325
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/process.md",
19326
+ "version": "31.7.7",
19327
19327
  "type": "Module",
19328
19328
  "process": {
19329
19329
  "main": true,
@@ -19839,8 +19839,8 @@
19839
19839
  "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```",
19840
19840
  "slug": "protocol",
19841
19841
  "websiteUrl": "https://electronjs.org/docs/api/protocol",
19842
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/protocol.md",
19843
- "version": "31.7.6",
19842
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/protocol.md",
19843
+ "version": "31.7.7",
19844
19844
  "type": "Module",
19845
19845
  "process": {
19846
19846
  "main": true,
@@ -20706,8 +20706,8 @@
20706
20706
  "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):",
20707
20707
  "slug": "push-notifications",
20708
20708
  "websiteUrl": "https://electronjs.org/docs/api/push-notifications",
20709
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/push-notifications.md",
20710
- "version": "31.7.6",
20709
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/push-notifications.md",
20710
+ "version": "31.7.7",
20711
20711
  "type": "Module",
20712
20712
  "process": {
20713
20713
  "main": true,
@@ -20796,8 +20796,8 @@
20796
20796
  "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.",
20797
20797
  "slug": "safe-storage",
20798
20798
  "websiteUrl": "https://electronjs.org/docs/api/safe-storage",
20799
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/safe-storage.md",
20800
- "version": "31.7.6",
20799
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/safe-storage.md",
20800
+ "version": "31.7.7",
20801
20801
  "type": "Module",
20802
20802
  "process": {
20803
20803
  "main": true,
@@ -20927,8 +20927,8 @@
20927
20927
  "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:",
20928
20928
  "slug": "screen",
20929
20929
  "websiteUrl": "https://electronjs.org/docs/api/screen",
20930
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/screen.md",
20931
- "version": "31.7.6",
20930
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/screen.md",
20931
+ "version": "31.7.7",
20932
20932
  "type": "Module",
20933
20933
  "process": {
20934
20934
  "main": true,
@@ -21225,8 +21225,8 @@
21225
21225
  "description": "",
21226
21226
  "slug": "service-workers",
21227
21227
  "websiteUrl": "https://electronjs.org/docs/api/service-workers",
21228
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/service-workers.md",
21229
- "version": "31.7.6",
21228
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/service-workers.md",
21229
+ "version": "31.7.7",
21230
21230
  "type": "Class",
21231
21231
  "process": {
21232
21232
  "main": true,
@@ -21456,8 +21456,8 @@
21456
21456
  "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.",
21457
21457
  "slug": "session",
21458
21458
  "websiteUrl": "https://electronjs.org/docs/api/session",
21459
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/session.md",
21460
- "version": "31.7.6",
21459
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/session.md",
21460
+ "version": "31.7.7",
21461
21461
  "type": "Module",
21462
21462
  "process": {
21463
21463
  "main": true,
@@ -21562,8 +21562,8 @@
21562
21562
  "description": "",
21563
21563
  "slug": "session",
21564
21564
  "websiteUrl": "https://electronjs.org/docs/api/session",
21565
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/session.md",
21566
- "version": "31.7.6",
21565
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/session.md",
21566
+ "version": "31.7.7",
21567
21567
  "type": "Class",
21568
21568
  "process": {
21569
21569
  "main": true,
@@ -24802,8 +24802,8 @@
24802
24802
  "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",
24803
24803
  "slug": "share-menu",
24804
24804
  "websiteUrl": "https://electronjs.org/docs/api/share-menu",
24805
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/share-menu.md",
24806
- "version": "31.7.6",
24805
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/share-menu.md",
24806
+ "version": "31.7.7",
24807
24807
  "type": "Class",
24808
24808
  "process": {
24809
24809
  "main": true,
@@ -24870,8 +24870,8 @@
24870
24870
  "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.",
24871
24871
  "slug": "shell",
24872
24872
  "websiteUrl": "https://electronjs.org/docs/api/shell",
24873
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/shell.md",
24874
- "version": "31.7.6",
24873
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/shell.md",
24874
+ "version": "31.7.7",
24875
24875
  "type": "Module",
24876
24876
  "process": {
24877
24877
  "main": true,
@@ -25113,8 +25113,8 @@
25113
25113
  "description": "> Get system preferences.\n\nProcess: Main, Utility",
25114
25114
  "slug": "system-preferences",
25115
25115
  "websiteUrl": "https://electronjs.org/docs/api/system-preferences",
25116
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/system-preferences.md",
25117
- "version": "31.7.6",
25116
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/system-preferences.md",
25117
+ "version": "31.7.7",
25118
25118
  "type": "Module",
25119
25119
  "process": {
25120
25120
  "main": true,
@@ -26360,8 +26360,8 @@
26360
26360
  "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._",
26361
26361
  "slug": "touch-bar-button",
26362
26362
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-button",
26363
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-button.md",
26364
- "version": "31.7.6",
26363
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-button.md",
26364
+ "version": "31.7.7",
26365
26365
  "type": "Class",
26366
26366
  "process": {
26367
26367
  "main": true,
@@ -26552,8 +26552,8 @@
26552
26552
  "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._",
26553
26553
  "slug": "touch-bar-color-picker",
26554
26554
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-color-picker",
26555
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-color-picker.md",
26556
- "version": "31.7.6",
26555
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-color-picker.md",
26556
+ "version": "31.7.7",
26557
26557
  "type": "Class",
26558
26558
  "process": {
26559
26559
  "main": true,
@@ -26645,8 +26645,8 @@
26645
26645
  "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._",
26646
26646
  "slug": "touch-bar-group",
26647
26647
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-group",
26648
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-group.md",
26649
- "version": "31.7.6",
26648
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-group.md",
26649
+ "version": "31.7.7",
26650
26650
  "type": "Class",
26651
26651
  "process": {
26652
26652
  "main": true,
@@ -26688,8 +26688,8 @@
26688
26688
  "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._",
26689
26689
  "slug": "touch-bar-label",
26690
26690
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-label",
26691
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-label.md",
26692
- "version": "31.7.6",
26691
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-label.md",
26692
+ "version": "31.7.7",
26693
26693
  "type": "Class",
26694
26694
  "process": {
26695
26695
  "main": true,
@@ -26781,8 +26781,8 @@
26781
26781
  "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._",
26782
26782
  "slug": "touch-bar-other-items-proxy",
26783
26783
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-other-items-proxy",
26784
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-other-items-proxy.md",
26785
- "version": "31.7.6",
26784
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-other-items-proxy.md",
26785
+ "version": "31.7.7",
26786
26786
  "type": "Class",
26787
26787
  "process": {
26788
26788
  "main": true,
@@ -26806,8 +26806,8 @@
26806
26806
  "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._",
26807
26807
  "slug": "touch-bar-popover",
26808
26808
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-popover",
26809
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-popover.md",
26810
- "version": "31.7.6",
26809
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-popover.md",
26810
+ "version": "31.7.7",
26811
26811
  "type": "Class",
26812
26812
  "process": {
26813
26813
  "main": true,
@@ -26894,8 +26894,8 @@
26894
26894
  "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._",
26895
26895
  "slug": "touch-bar-scrubber",
26896
26896
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-scrubber",
26897
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-scrubber.md",
26898
- "version": "31.7.6",
26897
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-scrubber.md",
26898
+ "version": "31.7.7",
26899
26899
  "type": "Class",
26900
26900
  "process": {
26901
26901
  "main": true,
@@ -27144,8 +27144,8 @@
27144
27144
  "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._",
27145
27145
  "slug": "touch-bar-segmented-control",
27146
27146
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-segmented-control",
27147
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-segmented-control.md",
27148
- "version": "31.7.6",
27147
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-segmented-control.md",
27148
+ "version": "31.7.7",
27149
27149
  "type": "Class",
27150
27150
  "process": {
27151
27151
  "main": true,
@@ -27336,8 +27336,8 @@
27336
27336
  "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._",
27337
27337
  "slug": "touch-bar-slider",
27338
27338
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-slider",
27339
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-slider.md",
27340
- "version": "31.7.6",
27339
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-slider.md",
27340
+ "version": "31.7.7",
27341
27341
  "type": "Class",
27342
27342
  "process": {
27343
27343
  "main": true,
@@ -27460,8 +27460,8 @@
27460
27460
  "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._",
27461
27461
  "slug": "touch-bar-spacer",
27462
27462
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar-spacer",
27463
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar-spacer.md",
27464
- "version": "31.7.6",
27463
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar-spacer.md",
27464
+ "version": "31.7.7",
27465
27465
  "type": "Class",
27466
27466
  "process": {
27467
27467
  "main": true,
@@ -27541,8 +27541,8 @@
27541
27541
  "description": "\n\n### Class: TouchBar\n\n> Create TouchBar layouts for native macOS applications\n\nProcess: Main",
27542
27542
  "slug": "touch-bar",
27543
27543
  "websiteUrl": "https://electronjs.org/docs/api/touch-bar",
27544
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/touch-bar.md",
27545
- "version": "31.7.6",
27544
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/touch-bar.md",
27545
+ "version": "31.7.7",
27546
27546
  "type": "Class",
27547
27547
  "process": {
27548
27548
  "main": true,
@@ -27771,8 +27771,8 @@
27771
27771
  "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.",
27772
27772
  "slug": "tray",
27773
27773
  "websiteUrl": "https://electronjs.org/docs/api/tray",
27774
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/tray.md",
27775
- "version": "31.7.6",
27774
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/tray.md",
27775
+ "version": "31.7.7",
27776
27776
  "type": "Class",
27777
27777
  "process": {
27778
27778
  "main": true,
@@ -28589,8 +28589,8 @@
28589
28589
  "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",
28590
28590
  "slug": "utility-process",
28591
28591
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
28592
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/utility-process.md",
28593
- "version": "31.7.6",
28592
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/utility-process.md",
28593
+ "version": "31.7.7",
28594
28594
  "type": "Module",
28595
28595
  "process": {
28596
28596
  "main": true,
@@ -28725,8 +28725,8 @@
28725
28725
  "description": "",
28726
28726
  "slug": "utility-process",
28727
28727
  "websiteUrl": "https://electronjs.org/docs/api/utility-process",
28728
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/utility-process.md",
28729
- "version": "31.7.6",
28728
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/utility-process.md",
28729
+ "version": "31.7.7",
28730
28730
  "type": "Class",
28731
28731
  "process": {
28732
28732
  "main": true,
@@ -28879,8 +28879,8 @@
28879
28879
  "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.",
28880
28880
  "slug": "view",
28881
28881
  "websiteUrl": "https://electronjs.org/docs/api/view",
28882
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/view.md",
28883
- "version": "31.7.6",
28882
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/view.md",
28883
+ "version": "31.7.7",
28884
28884
  "type": "Class",
28885
28885
  "process": {
28886
28886
  "main": true,
@@ -29031,8 +29031,8 @@
29031
29031
  "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.",
29032
29032
  "slug": "web-contents-view",
29033
29033
  "websiteUrl": "https://electronjs.org/docs/api/web-contents-view",
29034
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-contents-view.md",
29035
- "version": "31.7.6",
29034
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-contents-view.md",
29035
+ "version": "31.7.7",
29036
29036
  "type": "Class",
29037
29037
  "process": {
29038
29038
  "main": true,
@@ -29094,8 +29094,8 @@
29094
29094
  "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.",
29095
29095
  "slug": "web-contents",
29096
29096
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29097
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-contents.md",
29098
- "version": "31.7.6",
29097
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-contents.md",
29098
+ "version": "31.7.7",
29099
29099
  "type": "Module",
29100
29100
  "process": {
29101
29101
  "main": true,
@@ -29235,8 +29235,8 @@
29235
29235
  "description": "",
29236
29236
  "slug": "web-contents",
29237
29237
  "websiteUrl": "https://electronjs.org/docs/api/web-contents",
29238
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-contents.md",
29239
- "version": "31.7.6",
29238
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-contents.md",
29239
+ "version": "31.7.7",
29240
29240
  "type": "Class",
29241
29241
  "process": {
29242
29242
  "main": true,
@@ -35153,8 +35153,8 @@
35153
35153
  "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`.",
35154
35154
  "slug": "web-frame-main",
35155
35155
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35156
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-frame-main.md",
35157
- "version": "31.7.6",
35156
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-frame-main.md",
35157
+ "version": "31.7.7",
35158
35158
  "type": "Module",
35159
35159
  "process": {
35160
35160
  "main": true,
@@ -35209,8 +35209,8 @@
35209
35209
  "description": "",
35210
35210
  "slug": "web-frame-main",
35211
35211
  "websiteUrl": "https://electronjs.org/docs/api/web-frame-main",
35212
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-frame-main.md",
35213
- "version": "31.7.6",
35212
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-frame-main.md",
35213
+ "version": "31.7.7",
35214
35214
  "type": "Class",
35215
35215
  "process": {
35216
35216
  "main": true,
@@ -35509,8 +35509,8 @@
35509
35509
  "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%.",
35510
35510
  "slug": "web-frame",
35511
35511
  "websiteUrl": "https://electronjs.org/docs/api/web-frame",
35512
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-frame.md",
35513
- "version": "31.7.6",
35512
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-frame.md",
35513
+ "version": "31.7.7",
35514
35514
  "type": "Module",
35515
35515
  "process": {
35516
35516
  "main": false,
@@ -36223,8 +36223,8 @@
36223
36223
  "description": "",
36224
36224
  "slug": "web-request",
36225
36225
  "websiteUrl": "https://electronjs.org/docs/api/web-request",
36226
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-request.md",
36227
- "version": "31.7.6",
36226
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-request.md",
36227
+ "version": "31.7.7",
36228
36228
  "type": "Class",
36229
36229
  "process": {
36230
36230
  "main": true,
@@ -38069,8 +38069,8 @@
38069
38069
  "description": "> A utility layer to interact with Web API objects (Files, Blobs, etc.)\n\nProcess: Renderer",
38070
38070
  "slug": "web-utils",
38071
38071
  "websiteUrl": "https://electronjs.org/docs/api/web-utils",
38072
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/web-utils.md",
38073
- "version": "31.7.6",
38072
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/web-utils.md",
38073
+ "version": "31.7.7",
38074
38074
  "type": "Module",
38075
38075
  "process": {
38076
38076
  "main": false,
@@ -38111,8 +38111,8 @@
38111
38111
  "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.",
38112
38112
  "slug": "webview-tag",
38113
38113
  "websiteUrl": "https://electronjs.org/docs/api/webview-tag",
38114
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/webview-tag.md",
38115
- "version": "31.7.6",
38114
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/webview-tag.md",
38115
+ "version": "31.7.7",
38116
38116
  "type": "Element",
38117
38117
  "process": {
38118
38118
  "main": false,
@@ -41257,8 +41257,8 @@
41257
41257
  "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 (`NSWindowStyleMaskTexturedBackground`).\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`.",
41258
41258
  "slug": "base-window-options",
41259
41259
  "websiteUrl": "https://electronjs.org/docs/api/structures/base-window-options",
41260
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/base-window-options.md",
41261
- "version": "31.7.6",
41260
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/base-window-options.md",
41261
+ "version": "31.7.7",
41262
41262
  "properties": [
41263
41263
  {
41264
41264
  "name": "width",
@@ -41872,8 +41872,8 @@
41872
41872
  "description": "",
41873
41873
  "slug": "bluetooth-device",
41874
41874
  "websiteUrl": "https://electronjs.org/docs/api/structures/bluetooth-device",
41875
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/bluetooth-device.md",
41876
- "version": "31.7.6",
41875
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/bluetooth-device.md",
41876
+ "version": "31.7.7",
41877
41877
  "properties": [
41878
41878
  {
41879
41879
  "name": "deviceName",
@@ -41902,8 +41902,8 @@
41902
41902
  "description": "",
41903
41903
  "slug": "browser-window-options",
41904
41904
  "websiteUrl": "https://electronjs.org/docs/api/structures/browser-window-options",
41905
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/browser-window-options.md",
41906
- "version": "31.7.6",
41905
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/browser-window-options.md",
41906
+ "version": "31.7.7",
41907
41907
  "properties": [
41908
41908
  {
41909
41909
  "name": "webPreferences",
@@ -41929,8 +41929,8 @@
41929
41929
  "description": "",
41930
41930
  "slug": "certificate-principal",
41931
41931
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate-principal",
41932
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/certificate-principal.md",
41933
- "version": "31.7.6",
41932
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/certificate-principal.md",
41933
+ "version": "31.7.7",
41934
41934
  "properties": [
41935
41935
  {
41936
41936
  "name": "commonName",
@@ -41994,8 +41994,8 @@
41994
41994
  "description": "",
41995
41995
  "slug": "certificate",
41996
41996
  "websiteUrl": "https://electronjs.org/docs/api/structures/certificate",
41997
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/certificate.md",
41998
- "version": "31.7.6",
41997
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/certificate.md",
41998
+ "version": "31.7.7",
41999
41999
  "properties": [
42000
42000
  {
42001
42001
  "name": "data",
@@ -42090,8 +42090,8 @@
42090
42090
  "description": "",
42091
42091
  "slug": "cookie",
42092
42092
  "websiteUrl": "https://electronjs.org/docs/api/structures/cookie",
42093
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/cookie.md",
42094
- "version": "31.7.6",
42093
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/cookie.md",
42094
+ "version": "31.7.7",
42095
42095
  "properties": [
42096
42096
  {
42097
42097
  "name": "name",
@@ -42203,8 +42203,8 @@
42203
42203
  "description": "",
42204
42204
  "slug": "cpu-usage",
42205
42205
  "websiteUrl": "https://electronjs.org/docs/api/structures/cpu-usage",
42206
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/cpu-usage.md",
42207
- "version": "31.7.6",
42206
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/cpu-usage.md",
42207
+ "version": "31.7.7",
42208
42208
  "properties": [
42209
42209
  {
42210
42210
  "name": "percentCPUUsage",
@@ -42230,8 +42230,8 @@
42230
42230
  "description": "",
42231
42231
  "slug": "crash-report",
42232
42232
  "websiteUrl": "https://electronjs.org/docs/api/structures/crash-report",
42233
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/crash-report.md",
42234
- "version": "31.7.6",
42233
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/crash-report.md",
42234
+ "version": "31.7.7",
42235
42235
  "properties": [
42236
42236
  {
42237
42237
  "name": "date",
@@ -42258,8 +42258,8 @@
42258
42258
  "description": "",
42259
42259
  "slug": "custom-scheme",
42260
42260
  "websiteUrl": "https://electronjs.org/docs/api/structures/custom-scheme",
42261
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/custom-scheme.md",
42262
- "version": "31.7.6",
42261
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/custom-scheme.md",
42262
+ "version": "31.7.7",
42263
42263
  "properties": [
42264
42264
  {
42265
42265
  "name": "scheme",
@@ -42352,8 +42352,8 @@
42352
42352
  "description": "",
42353
42353
  "slug": "desktop-capturer-source",
42354
42354
  "websiteUrl": "https://electronjs.org/docs/api/structures/desktop-capturer-source",
42355
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/desktop-capturer-source.md",
42356
- "version": "31.7.6",
42355
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/desktop-capturer-source.md",
42356
+ "version": "31.7.7",
42357
42357
  "properties": [
42358
42358
  {
42359
42359
  "name": "id",
@@ -42406,8 +42406,8 @@
42406
42406
  "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.",
42407
42407
  "slug": "display",
42408
42408
  "websiteUrl": "https://electronjs.org/docs/api/structures/display",
42409
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/display.md",
42410
- "version": "31.7.6",
42409
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/display.md",
42410
+ "version": "31.7.7",
42411
42411
  "properties": [
42412
42412
  {
42413
42413
  "name": "accelerometerSupport",
@@ -42599,8 +42599,8 @@
42599
42599
  "description": "",
42600
42600
  "slug": "extension-info",
42601
42601
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension-info",
42602
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/extension-info.md",
42603
- "version": "31.7.6",
42602
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/extension-info.md",
42603
+ "version": "31.7.7",
42604
42604
  "properties": [
42605
42605
  {
42606
42606
  "name": "name",
@@ -42628,8 +42628,8 @@
42628
42628
  "description": "",
42629
42629
  "slug": "extension",
42630
42630
  "websiteUrl": "https://electronjs.org/docs/api/structures/extension",
42631
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/extension.md",
42632
- "version": "31.7.6",
42631
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/extension.md",
42632
+ "version": "31.7.7",
42633
42633
  "properties": [
42634
42634
  {
42635
42635
  "name": "id",
@@ -42692,8 +42692,8 @@
42692
42692
  "description": "",
42693
42693
  "slug": "file-filter",
42694
42694
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-filter",
42695
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/file-filter.md",
42696
- "version": "31.7.6",
42695
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/file-filter.md",
42696
+ "version": "31.7.7",
42697
42697
  "properties": [
42698
42698
  {
42699
42699
  "name": "name",
@@ -42721,8 +42721,8 @@
42721
42721
  "description": "",
42722
42722
  "slug": "file-path-with-headers",
42723
42723
  "websiteUrl": "https://electronjs.org/docs/api/structures/file-path-with-headers",
42724
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/file-path-with-headers.md",
42725
- "version": "31.7.6",
42724
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/file-path-with-headers.md",
42725
+ "version": "31.7.7",
42726
42726
  "properties": [
42727
42727
  {
42728
42728
  "name": "path",
@@ -42762,8 +42762,8 @@
42762
42762
  "description": "",
42763
42763
  "slug": "filesystem-permission-request",
42764
42764
  "websiteUrl": "https://electronjs.org/docs/api/structures/filesystem-permission-request",
42765
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/filesystem-permission-request.md",
42766
- "version": "31.7.6",
42765
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/filesystem-permission-request.md",
42766
+ "version": "31.7.7",
42767
42767
  "properties": [
42768
42768
  {
42769
42769
  "name": "filePath",
@@ -42808,8 +42808,8 @@
42808
42808
  "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)",
42809
42809
  "slug": "gpu-feature-status",
42810
42810
  "websiteUrl": "https://electronjs.org/docs/api/structures/gpu-feature-status",
42811
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/gpu-feature-status.md",
42812
- "version": "31.7.6",
42811
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/gpu-feature-status.md",
42812
+ "version": "31.7.7",
42813
42813
  "properties": [
42814
42814
  {
42815
42815
  "name": "2d_canvas",
@@ -42936,8 +42936,8 @@
42936
42936
  "description": "",
42937
42937
  "slug": "hid-device",
42938
42938
  "websiteUrl": "https://electronjs.org/docs/api/structures/hid-device",
42939
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/hid-device.md",
42940
- "version": "31.7.6",
42939
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/hid-device.md",
42940
+ "version": "31.7.7",
42941
42941
  "properties": [
42942
42942
  {
42943
42943
  "name": "deviceId",
@@ -42999,8 +42999,8 @@
42999
42999
  "description": "",
43000
43000
  "slug": "input-event",
43001
43001
  "websiteUrl": "https://electronjs.org/docs/api/structures/input-event",
43002
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/input-event.md",
43003
- "version": "31.7.6",
43002
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/input-event.md",
43003
+ "version": "31.7.7",
43004
43004
  "properties": [
43005
43005
  {
43006
43006
  "name": "type",
@@ -43259,8 +43259,8 @@
43259
43259
  "description": "",
43260
43260
  "slug": "ipc-main-event",
43261
43261
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-event",
43262
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/ipc-main-event.md",
43263
- "version": "31.7.6",
43262
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/ipc-main-event.md",
43263
+ "version": "31.7.7",
43264
43264
  "properties": [
43265
43265
  {
43266
43266
  "name": "processId",
@@ -43347,8 +43347,8 @@
43347
43347
  "description": "",
43348
43348
  "slug": "ipc-main-invoke-event",
43349
43349
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-main-invoke-event",
43350
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/ipc-main-invoke-event.md",
43351
- "version": "31.7.6",
43350
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/ipc-main-invoke-event.md",
43351
+ "version": "31.7.7",
43352
43352
  "properties": [
43353
43353
  {
43354
43354
  "name": "processId",
@@ -43393,8 +43393,8 @@
43393
43393
  "description": "",
43394
43394
  "slug": "ipc-renderer-event",
43395
43395
  "websiteUrl": "https://electronjs.org/docs/api/structures/ipc-renderer-event",
43396
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/ipc-renderer-event.md",
43397
- "version": "31.7.6",
43396
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/ipc-renderer-event.md",
43397
+ "version": "31.7.7",
43398
43398
  "properties": [
43399
43399
  {
43400
43400
  "name": "sender",
@@ -43420,8 +43420,8 @@
43420
43420
  "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.",
43421
43421
  "slug": "jump-list-category",
43422
43422
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-category",
43423
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/jump-list-category.md",
43424
- "version": "31.7.6",
43423
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/jump-list-category.md",
43424
+ "version": "31.7.7",
43425
43425
  "properties": [
43426
43426
  {
43427
43427
  "name": "type",
@@ -43474,8 +43474,8 @@
43474
43474
  "description": "",
43475
43475
  "slug": "jump-list-item",
43476
43476
  "websiteUrl": "https://electronjs.org/docs/api/structures/jump-list-item",
43477
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/jump-list-item.md",
43478
- "version": "31.7.6",
43477
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/jump-list-item.md",
43478
+ "version": "31.7.7",
43479
43479
  "properties": [
43480
43480
  {
43481
43481
  "name": "type",
@@ -43578,8 +43578,8 @@
43578
43578
  "description": "",
43579
43579
  "slug": "keyboard-event",
43580
43580
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-event",
43581
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/keyboard-event.md",
43582
- "version": "31.7.6",
43581
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/keyboard-event.md",
43582
+ "version": "31.7.7",
43583
43583
  "properties": [
43584
43584
  {
43585
43585
  "name": "ctrlKey",
@@ -43630,8 +43630,8 @@
43630
43630
  "description": "",
43631
43631
  "slug": "keyboard-input-event",
43632
43632
  "websiteUrl": "https://electronjs.org/docs/api/structures/keyboard-input-event",
43633
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/keyboard-input-event.md",
43634
- "version": "31.7.6",
43633
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/keyboard-input-event.md",
43634
+ "version": "31.7.7",
43635
43635
  "properties": [
43636
43636
  {
43637
43637
  "name": "type",
@@ -43677,8 +43677,8 @@
43677
43677
  "description": "",
43678
43678
  "slug": "media-access-permission-request",
43679
43679
  "websiteUrl": "https://electronjs.org/docs/api/structures/media-access-permission-request",
43680
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/media-access-permission-request.md",
43681
- "version": "31.7.6",
43680
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/media-access-permission-request.md",
43681
+ "version": "31.7.7",
43682
43682
  "properties": [
43683
43683
  {
43684
43684
  "name": "securityOrigin",
@@ -43715,8 +43715,8 @@
43715
43715
  "description": "Note that all statistics are reported in Kilobytes.",
43716
43716
  "slug": "memory-info",
43717
43717
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-info",
43718
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/memory-info.md",
43719
- "version": "31.7.6",
43718
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/memory-info.md",
43719
+ "version": "31.7.7",
43720
43720
  "properties": [
43721
43721
  {
43722
43722
  "name": "workingSetSize",
@@ -43752,8 +43752,8 @@
43752
43752
  "description": "",
43753
43753
  "slug": "memory-usage-details",
43754
43754
  "websiteUrl": "https://electronjs.org/docs/api/structures/memory-usage-details",
43755
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/memory-usage-details.md",
43756
- "version": "31.7.6",
43755
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/memory-usage-details.md",
43756
+ "version": "31.7.7",
43757
43757
  "properties": [
43758
43758
  {
43759
43759
  "name": "count",
@@ -43787,8 +43787,8 @@
43787
43787
  "description": "",
43788
43788
  "slug": "mime-typed-buffer",
43789
43789
  "websiteUrl": "https://electronjs.org/docs/api/structures/mime-typed-buffer",
43790
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/mime-typed-buffer.md",
43791
- "version": "31.7.6",
43790
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/mime-typed-buffer.md",
43791
+ "version": "31.7.7",
43792
43792
  "properties": [
43793
43793
  {
43794
43794
  "name": "mimeType",
@@ -43825,8 +43825,8 @@
43825
43825
  "description": "",
43826
43826
  "slug": "mouse-input-event",
43827
43827
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-input-event",
43828
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/mouse-input-event.md",
43829
- "version": "31.7.6",
43828
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/mouse-input-event.md",
43829
+ "version": "31.7.7",
43830
43830
  "properties": [
43831
43831
  {
43832
43832
  "name": "type",
@@ -43953,8 +43953,8 @@
43953
43953
  "description": "",
43954
43954
  "slug": "mouse-wheel-input-event",
43955
43955
  "websiteUrl": "https://electronjs.org/docs/api/structures/mouse-wheel-input-event",
43956
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/mouse-wheel-input-event.md",
43957
- "version": "31.7.6",
43956
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/mouse-wheel-input-event.md",
43957
+ "version": "31.7.7",
43958
43958
  "properties": [
43959
43959
  {
43960
43960
  "name": "type",
@@ -44042,8 +44042,8 @@
44042
44042
  "description": "",
44043
44043
  "slug": "notification-action",
44044
44044
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-action",
44045
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/notification-action.md",
44046
- "version": "31.7.6",
44045
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/notification-action.md",
44046
+ "version": "31.7.7",
44047
44047
  "properties": [
44048
44048
  {
44049
44049
  "name": "type",
@@ -44076,8 +44076,8 @@
44076
44076
  "description": "",
44077
44077
  "slug": "notification-response",
44078
44078
  "websiteUrl": "https://electronjs.org/docs/api/structures/notification-response",
44079
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/notification-response.md",
44080
- "version": "31.7.6",
44079
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/notification-response.md",
44080
+ "version": "31.7.7",
44081
44081
  "properties": [
44082
44082
  {
44083
44083
  "name": "actionIdentifier",
@@ -44142,8 +44142,8 @@
44142
44142
  "description": "",
44143
44143
  "slug": "open-external-permission-request",
44144
44144
  "websiteUrl": "https://electronjs.org/docs/api/structures/open-external-permission-request",
44145
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/open-external-permission-request.md",
44146
- "version": "31.7.6",
44145
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/open-external-permission-request.md",
44146
+ "version": "31.7.7",
44147
44147
  "properties": [
44148
44148
  {
44149
44149
  "name": "externalURL",
@@ -44162,8 +44162,8 @@
44162
44162
  "description": "",
44163
44163
  "slug": "payment-discount",
44164
44164
  "websiteUrl": "https://electronjs.org/docs/api/structures/payment-discount",
44165
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/payment-discount.md",
44166
- "version": "31.7.6",
44165
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/payment-discount.md",
44166
+ "version": "31.7.7",
44167
44167
  "properties": [
44168
44168
  {
44169
44169
  "name": "identifier",
@@ -44217,8 +44217,8 @@
44217
44217
  "description": "",
44218
44218
  "slug": "permission-request",
44219
44219
  "websiteUrl": "https://electronjs.org/docs/api/structures/permission-request",
44220
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/permission-request.md",
44221
- "version": "31.7.6",
44220
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/permission-request.md",
44221
+ "version": "31.7.7",
44222
44222
  "properties": [
44223
44223
  {
44224
44224
  "name": "requestingUrl",
@@ -44245,8 +44245,8 @@
44245
44245
  "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.",
44246
44246
  "slug": "point",
44247
44247
  "websiteUrl": "https://electronjs.org/docs/api/structures/point",
44248
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/point.md",
44249
- "version": "31.7.6",
44248
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/point.md",
44249
+ "version": "31.7.7",
44250
44250
  "properties": [
44251
44251
  {
44252
44252
  "name": "x",
@@ -44272,8 +44272,8 @@
44272
44272
  "description": "",
44273
44273
  "slug": "post-body",
44274
44274
  "websiteUrl": "https://electronjs.org/docs/api/structures/post-body",
44275
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/post-body.md",
44276
- "version": "31.7.6",
44275
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/post-body.md",
44276
+ "version": "31.7.7",
44277
44277
  "properties": [
44278
44278
  {
44279
44279
  "name": "data",
@@ -44318,8 +44318,8 @@
44318
44318
  "description": "",
44319
44319
  "slug": "printer-info",
44320
44320
  "websiteUrl": "https://electronjs.org/docs/api/structures/printer-info",
44321
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/printer-info.md",
44322
- "version": "31.7.6",
44321
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/printer-info.md",
44322
+ "version": "31.7.7",
44323
44323
  "properties": [
44324
44324
  {
44325
44325
  "name": "name",
@@ -44381,8 +44381,8 @@
44381
44381
  "description": "",
44382
44382
  "slug": "process-memory-info",
44383
44383
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-memory-info",
44384
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/process-memory-info.md",
44385
- "version": "31.7.6",
44384
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/process-memory-info.md",
44385
+ "version": "31.7.7",
44386
44386
  "properties": [
44387
44387
  {
44388
44388
  "name": "residentSet",
@@ -44419,8 +44419,8 @@
44419
44419
  "description": "",
44420
44420
  "slug": "process-metric",
44421
44421
  "websiteUrl": "https://electronjs.org/docs/api/structures/process-metric",
44422
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/process-metric.md",
44423
- "version": "31.7.6",
44422
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/process-metric.md",
44423
+ "version": "31.7.7",
44424
44424
  "properties": [
44425
44425
  {
44426
44426
  "name": "pid",
@@ -44569,8 +44569,8 @@
44569
44569
  "description": "",
44570
44570
  "slug": "product-discount",
44571
44571
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-discount",
44572
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/product-discount.md",
44573
- "version": "31.7.6",
44572
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/product-discount.md",
44573
+ "version": "31.7.7",
44574
44574
  "properties": [
44575
44575
  {
44576
44576
  "name": "identifier",
@@ -44652,8 +44652,8 @@
44652
44652
  "description": "",
44653
44653
  "slug": "product-subscription-period",
44654
44654
  "websiteUrl": "https://electronjs.org/docs/api/structures/product-subscription-period",
44655
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/product-subscription-period.md",
44656
- "version": "31.7.6",
44655
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/product-subscription-period.md",
44656
+ "version": "31.7.7",
44657
44657
  "properties": [
44658
44658
  {
44659
44659
  "name": "numberOfUnits",
@@ -44697,8 +44697,8 @@
44697
44697
  "description": "",
44698
44698
  "slug": "product",
44699
44699
  "websiteUrl": "https://electronjs.org/docs/api/structures/product",
44700
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/product.md",
44701
- "version": "31.7.6",
44700
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/product.md",
44701
+ "version": "31.7.7",
44702
44702
  "properties": [
44703
44703
  {
44704
44704
  "name": "productIdentifier",
@@ -44819,8 +44819,8 @@
44819
44819
  "description": "",
44820
44820
  "slug": "protocol-request",
44821
44821
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-request",
44822
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/protocol-request.md",
44823
- "version": "31.7.6",
44822
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/protocol-request.md",
44823
+ "version": "31.7.7",
44824
44824
  "properties": [
44825
44825
  {
44826
44826
  "name": "url",
@@ -44885,8 +44885,8 @@
44885
44885
  "description": "",
44886
44886
  "slug": "protocol-response-upload-data",
44887
44887
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response-upload-data",
44888
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/protocol-response-upload-data.md",
44889
- "version": "31.7.6",
44888
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/protocol-response-upload-data.md",
44889
+ "version": "31.7.7",
44890
44890
  "properties": [
44891
44891
  {
44892
44892
  "name": "contentType",
@@ -44923,8 +44923,8 @@
44923
44923
  "description": "",
44924
44924
  "slug": "protocol-response",
44925
44925
  "websiteUrl": "https://electronjs.org/docs/api/structures/protocol-response",
44926
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/protocol-response.md",
44927
- "version": "31.7.6",
44926
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/protocol-response.md",
44927
+ "version": "31.7.7",
44928
44928
  "properties": [
44929
44929
  {
44930
44930
  "name": "error",
@@ -45072,8 +45072,8 @@
45072
45072
  "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\".",
45073
45073
  "slug": "proxy-config",
45074
45074
  "websiteUrl": "https://electronjs.org/docs/api/structures/proxy-config",
45075
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/proxy-config.md",
45076
- "version": "31.7.6",
45075
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/proxy-config.md",
45076
+ "version": "31.7.7",
45077
45077
  "properties": [
45078
45078
  {
45079
45079
  "name": "mode",
@@ -45140,8 +45140,8 @@
45140
45140
  "description": "",
45141
45141
  "slug": "rectangle",
45142
45142
  "websiteUrl": "https://electronjs.org/docs/api/structures/rectangle",
45143
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/rectangle.md",
45144
- "version": "31.7.6",
45143
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/rectangle.md",
45144
+ "version": "31.7.7",
45145
45145
  "properties": [
45146
45146
  {
45147
45147
  "name": "x",
@@ -45183,8 +45183,8 @@
45183
45183
  "description": "",
45184
45184
  "slug": "referrer",
45185
45185
  "websiteUrl": "https://electronjs.org/docs/api/structures/referrer",
45186
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/referrer.md",
45187
- "version": "31.7.6",
45186
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/referrer.md",
45187
+ "version": "31.7.7",
45188
45188
  "properties": [
45189
45189
  {
45190
45190
  "name": "url",
@@ -45245,8 +45245,8 @@
45245
45245
  "description": "",
45246
45246
  "slug": "render-process-gone-details",
45247
45247
  "websiteUrl": "https://electronjs.org/docs/api/structures/render-process-gone-details",
45248
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/render-process-gone-details.md",
45249
- "version": "31.7.6",
45248
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/render-process-gone-details.md",
45249
+ "version": "31.7.7",
45250
45250
  "properties": [
45251
45251
  {
45252
45252
  "name": "reason",
@@ -45302,8 +45302,8 @@
45302
45302
  "description": "",
45303
45303
  "slug": "resolved-endpoint",
45304
45304
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-endpoint",
45305
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/resolved-endpoint.md",
45306
- "version": "31.7.6",
45305
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/resolved-endpoint.md",
45306
+ "version": "31.7.7",
45307
45307
  "properties": [
45308
45308
  {
45309
45309
  "name": "address",
@@ -45344,8 +45344,8 @@
45344
45344
  "description": "",
45345
45345
  "slug": "resolved-host",
45346
45346
  "websiteUrl": "https://electronjs.org/docs/api/structures/resolved-host",
45347
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/resolved-host.md",
45348
- "version": "31.7.6",
45347
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/resolved-host.md",
45348
+ "version": "31.7.7",
45349
45349
  "properties": [
45350
45350
  {
45351
45351
  "name": "endpoints",
@@ -45363,8 +45363,8 @@
45363
45363
  "description": "",
45364
45364
  "slug": "scrubber-item",
45365
45365
  "websiteUrl": "https://electronjs.org/docs/api/structures/scrubber-item",
45366
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/scrubber-item.md",
45367
- "version": "31.7.6",
45366
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/scrubber-item.md",
45367
+ "version": "31.7.7",
45368
45368
  "properties": [
45369
45369
  {
45370
45370
  "name": "label",
@@ -45391,8 +45391,8 @@
45391
45391
  "description": "",
45392
45392
  "slug": "segmented-control-segment",
45393
45393
  "websiteUrl": "https://electronjs.org/docs/api/structures/segmented-control-segment",
45394
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/segmented-control-segment.md",
45395
- "version": "31.7.6",
45394
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/segmented-control-segment.md",
45395
+ "version": "31.7.7",
45396
45396
  "properties": [
45397
45397
  {
45398
45398
  "name": "label",
@@ -45427,8 +45427,8 @@
45427
45427
  "description": "",
45428
45428
  "slug": "serial-port",
45429
45429
  "websiteUrl": "https://electronjs.org/docs/api/structures/serial-port",
45430
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/serial-port.md",
45431
- "version": "31.7.6",
45430
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/serial-port.md",
45431
+ "version": "31.7.7",
45432
45432
  "properties": [
45433
45433
  {
45434
45434
  "name": "portId",
@@ -45514,8 +45514,8 @@
45514
45514
  "description": "",
45515
45515
  "slug": "service-worker-info",
45516
45516
  "websiteUrl": "https://electronjs.org/docs/api/structures/service-worker-info",
45517
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/service-worker-info.md",
45518
- "version": "31.7.6",
45517
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/service-worker-info.md",
45518
+ "version": "31.7.7",
45519
45519
  "properties": [
45520
45520
  {
45521
45521
  "name": "scriptUrl",
@@ -45551,8 +45551,8 @@
45551
45551
  "description": "",
45552
45552
  "slug": "shared-worker-info",
45553
45553
  "websiteUrl": "https://electronjs.org/docs/api/structures/shared-worker-info",
45554
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/shared-worker-info.md",
45555
- "version": "31.7.6",
45554
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/shared-worker-info.md",
45555
+ "version": "31.7.7",
45556
45556
  "properties": [
45557
45557
  {
45558
45558
  "name": "id",
@@ -45580,8 +45580,8 @@
45580
45580
  "description": "",
45581
45581
  "slug": "sharing-item",
45582
45582
  "websiteUrl": "https://electronjs.org/docs/api/structures/sharing-item",
45583
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/sharing-item.md",
45584
- "version": "31.7.6",
45583
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/sharing-item.md",
45584
+ "version": "31.7.7",
45585
45585
  "properties": [
45586
45586
  {
45587
45587
  "name": "texts",
@@ -45618,8 +45618,8 @@
45618
45618
  "description": "",
45619
45619
  "slug": "shortcut-details",
45620
45620
  "websiteUrl": "https://electronjs.org/docs/api/structures/shortcut-details",
45621
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/shortcut-details.md",
45622
- "version": "31.7.6",
45621
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/shortcut-details.md",
45622
+ "version": "31.7.7",
45623
45623
  "properties": [
45624
45624
  {
45625
45625
  "name": "target",
@@ -45700,8 +45700,8 @@
45700
45700
  "description": "",
45701
45701
  "slug": "size",
45702
45702
  "websiteUrl": "https://electronjs.org/docs/api/structures/size",
45703
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/size.md",
45704
- "version": "31.7.6",
45703
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/size.md",
45704
+ "version": "31.7.7",
45705
45705
  "properties": [
45706
45706
  {
45707
45707
  "name": "width",
@@ -45727,8 +45727,8 @@
45727
45727
  "description": "",
45728
45728
  "slug": "task",
45729
45729
  "websiteUrl": "https://electronjs.org/docs/api/structures/task",
45730
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/task.md",
45731
- "version": "31.7.6",
45730
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/task.md",
45731
+ "version": "31.7.7",
45732
45732
  "properties": [
45733
45733
  {
45734
45734
  "name": "program",
@@ -45800,8 +45800,8 @@
45800
45800
  "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.",
45801
45801
  "slug": "thumbar-button",
45802
45802
  "websiteUrl": "https://electronjs.org/docs/api/structures/thumbar-button",
45803
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/thumbar-button.md",
45804
- "version": "31.7.6",
45803
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/thumbar-button.md",
45804
+ "version": "31.7.7",
45805
45805
  "properties": [
45806
45806
  {
45807
45807
  "name": "icon",
@@ -45847,8 +45847,8 @@
45847
45847
  "description": "",
45848
45848
  "slug": "trace-categories-and-options",
45849
45849
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-categories-and-options",
45850
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/trace-categories-and-options.md",
45851
- "version": "31.7.6",
45850
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/trace-categories-and-options.md",
45851
+ "version": "31.7.7",
45852
45852
  "properties": [
45853
45853
  {
45854
45854
  "name": "categoryFilter",
@@ -45876,8 +45876,8 @@
45876
45876
  "description": "An example TraceConfig that roughly matches what Chrome DevTools records:",
45877
45877
  "slug": "trace-config",
45878
45878
  "websiteUrl": "https://electronjs.org/docs/api/structures/trace-config",
45879
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/trace-config.md",
45880
- "version": "31.7.6",
45879
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/trace-config.md",
45880
+ "version": "31.7.7",
45881
45881
  "properties": [
45882
45882
  {
45883
45883
  "name": "recording_mode",
@@ -45991,8 +45991,8 @@
45991
45991
  "description": "",
45992
45992
  "slug": "transaction",
45993
45993
  "websiteUrl": "https://electronjs.org/docs/api/structures/transaction",
45994
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/transaction.md",
45995
- "version": "31.7.6",
45994
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/transaction.md",
45995
+ "version": "31.7.7",
45996
45996
  "properties": [
45997
45997
  {
45998
45998
  "name": "transactionIdentifier",
@@ -46120,8 +46120,8 @@
46120
46120
  "description": "",
46121
46121
  "slug": "upload-data",
46122
46122
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-data",
46123
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/upload-data.md",
46124
- "version": "31.7.6",
46123
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/upload-data.md",
46124
+ "version": "31.7.7",
46125
46125
  "properties": [
46126
46126
  {
46127
46127
  "name": "bytes",
@@ -46157,8 +46157,8 @@
46157
46157
  "description": "",
46158
46158
  "slug": "upload-file",
46159
46159
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-file",
46160
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/upload-file.md",
46161
- "version": "31.7.6",
46160
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/upload-file.md",
46161
+ "version": "31.7.7",
46162
46162
  "properties": [
46163
46163
  {
46164
46164
  "name": "type",
@@ -46209,8 +46209,8 @@
46209
46209
  "description": "",
46210
46210
  "slug": "upload-raw-data",
46211
46211
  "websiteUrl": "https://electronjs.org/docs/api/structures/upload-raw-data",
46212
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/upload-raw-data.md",
46213
- "version": "31.7.6",
46212
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/upload-raw-data.md",
46213
+ "version": "31.7.7",
46214
46214
  "properties": [
46215
46215
  {
46216
46216
  "name": "type",
@@ -46236,8 +46236,8 @@
46236
46236
  "description": "",
46237
46237
  "slug": "usb-device",
46238
46238
  "websiteUrl": "https://electronjs.org/docs/api/structures/usb-device",
46239
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/usb-device.md",
46240
- "version": "31.7.6",
46239
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/usb-device.md",
46240
+ "version": "31.7.7",
46241
46241
  "properties": [
46242
46242
  {
46243
46243
  "name": "deviceId",
@@ -46371,8 +46371,8 @@
46371
46371
  "description": "This type is a helper alias, no object will ever exist of this type.",
46372
46372
  "slug": "user-default-types",
46373
46373
  "websiteUrl": "https://electronjs.org/docs/api/structures/user-default-types",
46374
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/user-default-types.md",
46375
- "version": "31.7.6",
46374
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/user-default-types.md",
46375
+ "version": "31.7.7",
46376
46376
  "properties": [
46377
46377
  {
46378
46378
  "name": "string",
@@ -46465,8 +46465,8 @@
46465
46465
  "description": "",
46466
46466
  "slug": "web-preferences",
46467
46467
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-preferences",
46468
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/web-preferences.md",
46469
- "version": "31.7.6",
46468
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/web-preferences.md",
46469
+ "version": "31.7.7",
46470
46470
  "properties": [
46471
46471
  {
46472
46472
  "name": "devTools",
@@ -46941,8 +46941,8 @@
46941
46941
  "description": "",
46942
46942
  "slug": "web-request-filter",
46943
46943
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-request-filter",
46944
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/web-request-filter.md",
46945
- "version": "31.7.6",
46944
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/web-request-filter.md",
46945
+ "version": "31.7.7",
46946
46946
  "properties": [
46947
46947
  {
46948
46948
  "name": "urls",
@@ -47019,8 +47019,8 @@
47019
47019
  "description": "",
47020
47020
  "slug": "web-source",
47021
47021
  "websiteUrl": "https://electronjs.org/docs/api/structures/web-source",
47022
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/web-source.md",
47023
- "version": "31.7.6",
47022
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/web-source.md",
47023
+ "version": "31.7.7",
47024
47024
  "properties": [
47025
47025
  {
47026
47026
  "name": "code",
@@ -47048,8 +47048,8 @@
47048
47048
  "description": "",
47049
47049
  "slug": "window-open-handler-response",
47050
47050
  "websiteUrl": "https://electronjs.org/docs/api/structures/window-open-handler-response",
47051
- "repoUrl": "https://github.com/electron/electron/blob/v31.7.6/docs/api/structures/window-open-handler-response.md",
47052
- "version": "31.7.6",
47051
+ "repoUrl": "https://github.com/electron/electron/blob/v31.7.7/docs/api/structures/window-open-handler-response.md",
47052
+ "version": "31.7.7",
47053
47053
  "properties": [
47054
47054
  {
47055
47055
  "name": "action",