mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Bump electron@12.0.7
This commit is contained in:
2
.yarnrc
2
.yarnrc
@@ -1,3 +1,3 @@
|
|||||||
disturl "https://electronjs.org/headers"
|
disturl "https://electronjs.org/headers"
|
||||||
target "12.0.4"
|
target "12.0.7"
|
||||||
runtime "electron"
|
runtime "electron"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"git": {
|
"git": {
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"repositoryUrl": "https://chromium.googlesource.com/chromium/src",
|
"repositoryUrl": "https://chromium.googlesource.com/chromium/src",
|
||||||
"commitHash": "5342041f85833c038dcbc5632d62fc10f7592323"
|
"commitHash": "cd7a46bf02a768a1aabf9443f6ee469bc6e28e7c"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"licenseDetail": [
|
"licenseDetail": [
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
"SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
"SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
],
|
],
|
||||||
"isOnlyProductionDependency": true,
|
"isOnlyProductionDependency": true,
|
||||||
"version": "89.0.4389.114"
|
"version": "89.0.4389.128"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"component": {
|
"component": {
|
||||||
@@ -60,12 +60,12 @@
|
|||||||
"git": {
|
"git": {
|
||||||
"name": "electron",
|
"name": "electron",
|
||||||
"repositoryUrl": "https://github.com/electron/electron",
|
"repositoryUrl": "https://github.com/electron/electron",
|
||||||
"commitHash": "9ce7c512475aa6aa91417a3b08e19f85a8587a30"
|
"commitHash": "8d55658bfa8b5983e1a90ad079c2e2ac91ee7af0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"isOnlyProductionDependency": true,
|
"isOnlyProductionDependency": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "12.0.4"
|
"version": "12.0.7"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"component": {
|
"component": {
|
||||||
|
|||||||
@@ -158,7 +158,7 @@
|
|||||||
"cssnano": "^4.1.11",
|
"cssnano": "^4.1.11",
|
||||||
"debounce": "^1.0.0",
|
"debounce": "^1.0.0",
|
||||||
"deemon": "^1.4.0",
|
"deemon": "^1.4.0",
|
||||||
"electron": "12.0.4",
|
"electron": "12.0.7",
|
||||||
"eslint": "6.8.0",
|
"eslint": "6.8.0",
|
||||||
"eslint-plugin-jsdoc": "^19.1.0",
|
"eslint-plugin-jsdoc": "^19.1.0",
|
||||||
"eslint-plugin-mocha": "8.0.0",
|
"eslint-plugin-mocha": "8.0.0",
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ import { IFileService } from 'vs/platform/files/common/files';
|
|||||||
import { FileAccess, Schemas } from 'vs/base/common/network';
|
import { FileAccess, Schemas } from 'vs/base/common/network';
|
||||||
import { isLaunchedFromCli } from 'vs/platform/environment/node/argvHelper';
|
import { isLaunchedFromCli } from 'vs/platform/environment/node/argvHelper';
|
||||||
import { CancellationToken } from 'vs/base/common/cancellation';
|
import { CancellationToken } from 'vs/base/common/cancellation';
|
||||||
import { INativeHostMainService } from 'vs/platform/native/electron-main/nativeHostMainService';
|
|
||||||
import { IProtocolMainService } from 'vs/platform/protocol/electron-main/protocol';
|
import { IProtocolMainService } from 'vs/platform/protocol/electron-main/protocol';
|
||||||
|
|
||||||
export interface IWindowCreationOptions {
|
export interface IWindowCreationOptions {
|
||||||
@@ -153,7 +152,6 @@ export class CodeWindow extends Disposable implements ICodeWindow {
|
|||||||
@ITelemetryService private readonly telemetryService: ITelemetryService,
|
@ITelemetryService private readonly telemetryService: ITelemetryService,
|
||||||
@IDialogMainService private readonly dialogMainService: IDialogMainService,
|
@IDialogMainService private readonly dialogMainService: IDialogMainService,
|
||||||
@ILifecycleMainService private readonly lifecycleMainService: ILifecycleMainService,
|
@ILifecycleMainService private readonly lifecycleMainService: ILifecycleMainService,
|
||||||
@INativeHostMainService private readonly nativeHostMainService: INativeHostMainService,
|
|
||||||
@IProductService private readonly productService: IProductService,
|
@IProductService private readonly productService: IProductService,
|
||||||
@IProtocolMainService private readonly protocolMainService: IProtocolMainService
|
@IProtocolMainService private readonly protocolMainService: IProtocolMainService
|
||||||
) {
|
) {
|
||||||
@@ -501,22 +499,6 @@ export class CodeWindow extends Disposable implements ICodeWindow {
|
|||||||
this._lastFocusTime = Date.now();
|
this._lastFocusTime = Date.now();
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isMacintosh) {
|
|
||||||
this._register(this.nativeHostMainService.onDidChangeDisplay(() => {
|
|
||||||
if (!this._win) {
|
|
||||||
return; // disposed
|
|
||||||
}
|
|
||||||
|
|
||||||
// Simple fullscreen doesn't resize automatically when the resolution changes so as a workaround
|
|
||||||
// we need to detect when display metrics change or displays are added/removed and toggle the
|
|
||||||
// fullscreen manually.
|
|
||||||
if (!this.useNativeFullScreen() && this.isFullScreen) {
|
|
||||||
this.setFullScreen(false);
|
|
||||||
this.setFullScreen(true);
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Window (Un)Maximize
|
// Window (Un)Maximize
|
||||||
this._win.on('maximize', (e: Event) => {
|
this._win.on('maximize', (e: Event) => {
|
||||||
if (this.currentConfig) {
|
if (this.currentConfig) {
|
||||||
|
|||||||
@@ -3349,10 +3349,10 @@ electron-to-chromium@^1.3.723:
|
|||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz#0ecebc529ceb49dd2a7c838ae425236644c3439a"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz#0ecebc529ceb49dd2a7c838ae425236644c3439a"
|
||||||
integrity sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A==
|
integrity sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A==
|
||||||
|
|
||||||
electron@12.0.4:
|
electron@12.0.7:
|
||||||
version "12.0.4"
|
version "12.0.7"
|
||||||
resolved "https://registry.yarnpkg.com/electron/-/electron-12.0.4.tgz#c2ca4710d0e4da7db6d31c4f55777b08bfcb08e5"
|
resolved "https://registry.yarnpkg.com/electron/-/electron-12.0.7.tgz#e0fca2c8be34cb7da48c4d15cfb1d2ad666d2718"
|
||||||
integrity sha512-A8Lq3YMZ1CaO1z5z5nsyFxIwkgwXLHUwL2pf9MVUHpq7fv3XUewCMD98EnLL3DdtiyCvw5KMkeT1WGsZh8qFug==
|
integrity sha512-722TZNKDuLpEmj96AzTYFKHaJEH98xgOBH0aldStaPXI1xDFfb9SJQQuirvwFlkwG5OqQdz6Ne3OwwJ7Dbs5nQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@electron/get" "^1.0.1"
|
"@electron/get" "^1.0.1"
|
||||||
"@types/node" "^14.6.2"
|
"@types/node" "^14.6.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user