Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
PhotoNomad0 committed Jan 13, 2023
1 parent 6753926 commit 5b6fd73
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
23 changes: 11 additions & 12 deletions electron.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for Electron 22.0.0
// Type definitions for Electron 22.0.1
// Project: http://electronjs.org/
// Definitions by: The Electron Team <https://github.com/electron/electron>
// Definitions: https://github.com/electron/electron-typescript-definitions
Expand Down Expand Up @@ -4135,11 +4135,10 @@ declare namespace Electron {
display_id: string;
/**
* The identifier of a window or screen that can be used as a `chromeMediaSourceId`
* constraint when calling [`navigator.webkitGetUserMedia`]. The format of the
* identifier will be `window:XX:YY` or `screen:ZZ:0`. XX is the windowID/handle.
* YY is 1 for the current process, and 0 for all others. ZZ is a sequential number
* that represents the screen, and it does not equal to the index in the source's
* name.
* constraint when calling `navigator.getUserMedia`. The format of the identifier
* will be `window:XX:YY` or `screen:ZZ:0`. XX is the windowID/handle. YY is 1 for
* the current process, and 0 for all others. ZZ is a sequential number that
* represents the screen, and it does not equal to the index in the source's name.
*/
id: string;
/**
Expand Down Expand Up @@ -4509,7 +4508,7 @@ declare namespace Electron {
*/
getBadge(): string;
/**
* The application's [dock menu][dock-menu].
* The application's dock menu.
*
* @platform darwin
*/
Expand Down Expand Up @@ -4539,7 +4538,7 @@ declare namespace Electron {
*/
setIcon(image: (NativeImage) | (string)): void;
/**
* Sets the application's [dock menu][dock-menu].
* Sets the application's dock menu.
*
* @platform darwin
*/
Expand Down Expand Up @@ -9969,7 +9968,7 @@ declare namespace Electron {
kill(): boolean;
/**
* Send a message to the child process, optionally transferring ownership of zero
* or more [`MessagePortMain`][] objects.
* or more `MessagePortMain` objects.
*
* For example:
*/
Expand Down Expand Up @@ -11567,7 +11566,7 @@ declare namespace Electron {
pasteAndMatchStyle(): void;
/**
* Send a message to the renderer process, optionally transferring ownership of
* zero or more [`MessagePortMain`][] objects.
* zero or more `MessagePortMain` objects.
*
* The transferred `MessagePortMain` objects will be available in the renderer
* process by accessing the `ports` property of the emitted event. When they arrive
Expand Down Expand Up @@ -11751,7 +11750,7 @@ declare namespace Electron {
* submitting a form with `<form target="_blank">`. See `window.open()` for more
* details and how to use this in conjunction with `did-create-window`.
*/
setWindowOpenHandler(handler: (details: HandlerDetails) => ({action: 'deny'}) | ({action: 'allow', overrideBrowserWindowOptions?: BrowserWindowConstructorOptions})): void;
setWindowOpenHandler(handler: (details: HandlerDetails) => ({action: 'deny'}) | ({action: 'allow', outlivesOpener?: boolean, overrideBrowserWindowOptions?: BrowserWindowConstructorOptions})): void;
/**
* Changes the zoom factor to the specified factor. Zoom factor is zoom percent
* divided by 100, so 300% = 3.0.
Expand Down Expand Up @@ -12149,7 +12148,7 @@ declare namespace Electron {
executeJavaScript(code: string, userGesture?: boolean): Promise<unknown>;
/**
* Send a message to the renderer process, optionally transferring ownership of
* zero or more [`MessagePortMain`][] objects.
* zero or more `MessagePortMain` objects.
*
* The transferred `MessagePortMain` objects will be available in the renderer
* process by accessing the `ports` property of the emitted event. When they arrive
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electronite",
"version": "22.0.0-graphite-beta",
"version": "22.0.1-graphite-beta",
"description": "Electron with graphite",
"bin": {
"electronite": "cli.js"
Expand Down

0 comments on commit 5b6fd73

Please sign in to comment.