@overwolf/ow-electron 34.3.3 → 34.4.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/checksums.json +10 -9
- package/electron-api.json +303 -303
- package/electron.d.ts +16 -2
- package/ow-electron.d.ts +1 -1
- package/package.json +6 -3
package/electron.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Type definitions for Electron 34.
|
|
1
|
+
// Type definitions for Electron 34.4.1
|
|
2
2
|
// Project: http://electronjs.org/
|
|
3
3
|
// Definitions by: The Electron Team <https://github.com/electron/electron>
|
|
4
4
|
// Definitions: https://github.com/electron/typescript-definitions
|
|
@@ -3447,6 +3447,12 @@ declare namespace Electron {
|
|
|
3447
3447
|
* @platform darwin,win32
|
|
3448
3448
|
*/
|
|
3449
3449
|
movable: boolean;
|
|
3450
|
+
/**
|
|
3451
|
+
* A `String` property representing the window's internal name, set during
|
|
3452
|
+
* creation.
|
|
3453
|
+
*
|
|
3454
|
+
*/
|
|
3455
|
+
readonly name: string;
|
|
3450
3456
|
/**
|
|
3451
3457
|
* A `string` property that determines the pathname of the file the window
|
|
3452
3458
|
* represents, and the icon of the file will show in window's title bar.
|
|
@@ -3641,6 +3647,10 @@ declare namespace Electron {
|
|
|
3641
3647
|
* @platform darwin,win32
|
|
3642
3648
|
*/
|
|
3643
3649
|
movable?: boolean;
|
|
3650
|
+
/**
|
|
3651
|
+
* Set internal window name (ow-electron).
|
|
3652
|
+
*/
|
|
3653
|
+
name?: string;
|
|
3644
3654
|
/**
|
|
3645
3655
|
* Set the initial opacity of the window, between 0.0 (fully transparent) and 1.0
|
|
3646
3656
|
* (fully opaque). This is only implemented on Windows and macOS.
|
|
@@ -10689,7 +10699,11 @@ declare namespace Electron {
|
|
|
10689
10699
|
*/
|
|
10690
10700
|
registerForAPNSNotifications(): Promise<string>;
|
|
10691
10701
|
/**
|
|
10692
|
-
* Unregisters the app from notifications received from APNS.
|
|
10702
|
+
* Unregisters the app from notifications received from APNS.
|
|
10703
|
+
*
|
|
10704
|
+
* Apps unregistered through this method can always reregister.
|
|
10705
|
+
*
|
|
10706
|
+
* See:
|
|
10693
10707
|
* https://developer.apple.com/documentation/appkit/nsapplication/1428747-unregisterforremotenotifications?language=objc
|
|
10694
10708
|
*
|
|
10695
10709
|
* @platform darwin
|
package/ow-electron.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@overwolf/ow-electron",
|
|
3
|
-
"version": "34.
|
|
4
|
-
"owElectronVersion": "34.
|
|
5
|
-
"electronVersion": "34.
|
|
3
|
+
"version": "34.4.1-beta.0",
|
|
4
|
+
"owElectronVersion": "34.4.1-beta.0",
|
|
5
|
+
"electronVersion": "34.4.1",
|
|
6
6
|
"repository": "https://github.com/electron/electron",
|
|
7
7
|
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
|
|
8
8
|
"license": "MIT",
|
|
@@ -26,5 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
28
|
"node": ">= 10.17.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"tag": "beta"
|
|
29
32
|
}
|
|
30
33
|
}
|