Skip to content

Commit 547ceea

Browse files
committed
theia 1.17.0
1 parent c772d25 commit 547ceea

File tree

9 files changed

+537
-525
lines changed

9 files changed

+537
-525
lines changed

arduino-ide-extension/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@
1919
},
2020
"dependencies": {
2121
"@grpc/grpc-js": "^1.1.1",
22-
"@theia/application-package": "1.16.0",
23-
"@theia/core": "1.16.0",
24-
"@theia/editor": "1.16.0",
25-
"@theia/filesystem": "1.16.0",
26-
"@theia/git": "1.16.0",
27-
"@theia/keymaps": "1.16.0",
28-
"@theia/markers": "1.16.0",
29-
"@theia/monaco": "1.16.0",
30-
"@theia/navigator": "1.16.0",
31-
"@theia/outline-view": "1.16.0",
32-
"@theia/output": "1.16.0",
33-
"@theia/preferences": "1.16.0",
34-
"@theia/search-in-workspace": "1.16.0",
35-
"@theia/terminal": "1.16.0",
36-
"@theia/workspace": "1.16.0",
22+
"@theia/application-package": "1.17.0",
23+
"@theia/core": "1.17.0",
24+
"@theia/editor": "1.17.0",
25+
"@theia/filesystem": "1.17.0",
26+
"@theia/git": "1.17.0",
27+
"@theia/keymaps": "1.17.0",
28+
"@theia/markers": "1.17.0",
29+
"@theia/monaco": "1.17.0",
30+
"@theia/navigator": "1.17.0",
31+
"@theia/outline-view": "1.17.0",
32+
"@theia/output": "1.17.0",
33+
"@theia/preferences": "1.17.0",
34+
"@theia/search-in-workspace": "1.17.0",
35+
"@theia/terminal": "1.17.0",
36+
"@theia/workspace": "1.17.0",
3737
"@tippyjs/react": "^4.2.5",
3838
"@types/atob": "^2.1.2",
3939
"@types/auth0-js": "^9.14.0",

arduino-ide-extension/src/browser/arduino-frontend-contribution.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export class ArduinoFrontendContribution
325325
webContents.setZoomLevel(event.newValue || 0);
326326
}
327327
});
328-
app.shell.leftPanelHandler.removeMenu('settings-menu');
328+
app.shell.leftPanelHandler.removeBottomMenu('settings-menu');
329329
}
330330

331331
onStop(): void {

arduino-ide-extension/src/electron-main/theia/electron-main-application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class ElectronMainApplication extends TheiaElectronMainApplication {
3939
* @param options
4040
*/
4141
async createWindow(
42-
asyncOptions: MaybePromise<TheiaBrowserWindowOptions> = this.getDefaultBrowserWindowOptions()
42+
asyncOptions: MaybePromise<TheiaBrowserWindowOptions> = this.getDefaultTheiaWindowOptions()
4343
): Promise<BrowserWindow> {
4444
const options = await asyncOptions;
4545
let electronWindow: BrowserWindow | undefined;

arduino-ide-extension/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"emitDecoratorMetadata": true,
1313
"module": "commonjs",
1414
"moduleResolution": "node",
15-
"target": "es5",
15+
"target": "ES2017",
1616
"outDir": "lib",
1717
"lib": [
18-
"es6",
18+
"ES2017",
1919
"dom"
2020
],
2121
"jsx": "react",

browser-app/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
"version": "2.0.0-beta.11",
55
"license": "AGPL-3.0-or-later",
66
"dependencies": {
7-
"@theia/core": "1.16.0",
8-
"@theia/debug": "1.16.0",
9-
"@theia/editor": "1.16.0",
10-
"@theia/file-search": "1.16.0",
11-
"@theia/filesystem": "1.16.0",
12-
"@theia/keymaps": "1.16.0",
13-
"@theia/messages": "1.16.0",
14-
"@theia/monaco": "1.16.0",
15-
"@theia/navigator": "1.16.0",
16-
"@theia/plugin-ext": "1.16.0",
17-
"@theia/plugin-ext-vscode": "1.16.0",
18-
"@theia/preferences": "1.16.0",
19-
"@theia/process": "1.16.0",
20-
"@theia/terminal": "1.16.0",
21-
"@theia/workspace": "1.16.0",
7+
"@theia/core": "1.17.0",
8+
"@theia/debug": "1.17.0",
9+
"@theia/editor": "1.17.0",
10+
"@theia/file-search": "1.17.0",
11+
"@theia/filesystem": "1.17.0",
12+
"@theia/keymaps": "1.17.0",
13+
"@theia/messages": "1.17.0",
14+
"@theia/monaco": "1.17.0",
15+
"@theia/navigator": "1.17.0",
16+
"@theia/plugin-ext": "1.17.0",
17+
"@theia/plugin-ext-vscode": "1.17.0",
18+
"@theia/preferences": "1.17.0",
19+
"@theia/process": "1.17.0",
20+
"@theia/terminal": "1.17.0",
21+
"@theia/workspace": "1.17.0",
2222
"arduino-ide-extension": "2.0.0-beta.11"
2323
},
2424
"devDependencies": {
25-
"@theia/cli": "1.16.0"
25+
"@theia/cli": "1.17.0"
2626
},
2727
"scripts": {
2828
"prepare": "theia build --mode development",

electron-app/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@
55
"license": "AGPL-3.0-or-later",
66
"main": "src-gen/frontend/electron-main.js",
77
"dependencies": {
8-
"@theia/core": "1.16.0",
9-
"@theia/debug": "1.16.0",
10-
"@theia/editor": "1.16.0",
11-
"@theia/electron": "1.16.0",
12-
"@theia/file-search": "1.16.0",
13-
"@theia/filesystem": "1.16.0",
14-
"@theia/keymaps": "1.16.0",
15-
"@theia/messages": "1.16.0",
16-
"@theia/monaco": "1.16.0",
17-
"@theia/navigator": "1.16.0",
18-
"@theia/plugin-ext": "1.16.0",
19-
"@theia/plugin-ext-vscode": "1.16.0",
20-
"@theia/preferences": "1.16.0",
21-
"@theia/process": "1.16.0",
22-
"@theia/terminal": "1.16.0",
23-
"@theia/workspace": "1.16.0",
8+
"@theia/core": "1.17.0",
9+
"@theia/debug": "1.17.0",
10+
"@theia/editor": "1.17.0",
11+
"@theia/electron": "1.17.0",
12+
"@theia/file-search": "1.17.0",
13+
"@theia/filesystem": "1.17.0",
14+
"@theia/keymaps": "1.17.0",
15+
"@theia/messages": "1.17.0",
16+
"@theia/monaco": "1.17.0",
17+
"@theia/navigator": "1.17.0",
18+
"@theia/plugin-ext": "1.17.0",
19+
"@theia/plugin-ext-vscode": "1.17.0",
20+
"@theia/preferences": "1.17.0",
21+
"@theia/process": "1.17.0",
22+
"@theia/terminal": "1.17.0",
23+
"@theia/workspace": "1.17.0",
2424
"arduino-ide-extension": "2.0.0-beta.11"
2525
},
2626
"devDependencies": {
27-
"@theia/cli": "1.16.0"
27+
"@theia/cli": "1.17.0"
2828
},
2929
"scripts": {
3030
"prepare": "theia build --mode development",

electron/build/template-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"node-log-rotate": "^0.1.5"
1010
},
1111
"devDependencies": {
12-
"@theia/cli": "1.16.0",
12+
"@theia/cli": "1.17.0",
1313
"cross-env": "^7.0.2",
1414
"electron-builder": "22.7.0",
1515
"electron-notarize": "^0.3.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"node": ">=12.14.1 <13"
1111
},
1212
"devDependencies": {
13-
"@theia/cli": "1.16.0",
13+
"@theia/cli": "1.17.0",
1414
"@typescript-eslint/eslint-plugin": "^4.27.0",
1515
"@typescript-eslint/parser": "^4.27.0",
1616
"cross-env": "^7.0.2",

0 commit comments

Comments
 (0)