@theia/core 1.55.0-next.14 → 1.55.0-next.25

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 CHANGED
@@ -84,12 +84,12 @@ export class SomeClass {
84
84
  - `@phosphor/signaling` (from [`@phosphor/signaling@1`](https://www.npmjs.com/package/@phosphor/signaling))
85
85
  - `@phosphor/virtualdom` (from [`@phosphor/virtualdom@1`](https://www.npmjs.com/package/@phosphor/virtualdom))
86
86
  - `@phosphor/widgets` (from [`@phosphor/widgets@1`](https://www.npmjs.com/package/@phosphor/widgets))
87
- - `@theia/application-package` (from [`@theia/application-package@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.14))
88
- - `@theia/application-package/lib/api` (from [`@theia/application-package@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.14))
89
- - `@theia/application-package/lib/environment` (from [`@theia/application-package@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.14))
90
- - `@theia/request` (from [`@theia/request@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.14))
91
- - `@theia/request/lib/proxy` (from [`@theia/request@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.14))
92
- - `@theia/request/lib/node-request-service` (from [`@theia/request@1.55.0-next.14+d999fe031`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.14))
87
+ - `@theia/application-package` (from [`@theia/application-package@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.25))
88
+ - `@theia/application-package/lib/api` (from [`@theia/application-package@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.25))
89
+ - `@theia/application-package/lib/environment` (from [`@theia/application-package@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/application-package/v/1.55.0-next.25))
90
+ - `@theia/request` (from [`@theia/request@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.25))
91
+ - `@theia/request/lib/proxy` (from [`@theia/request@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.25))
92
+ - `@theia/request/lib/node-request-service` (from [`@theia/request@1.55.0-next.25+2be612f8a`](https://www.npmjs.com/package/@theia/request/v/1.55.0-next.25))
93
93
  - `fs-extra` (from [`fs-extra@^4.0.2`](https://www.npmjs.com/package/fs-extra))
94
94
  - `fuzzy` (from [`fuzzy@^0.1.3`](https://www.npmjs.com/package/fuzzy))
95
95
  - `inversify` (from [`inversify@^6.0.1`](https://www.npmjs.com/package/inversify))
@@ -7,8 +7,8 @@ const electron_api_1 = require("../electron-common/electron-api");
7
7
  const { ipcRenderer, contextBridge } = require('electron');
8
8
  // a map of menuId => map<handler id => handler>
9
9
  const commandHandlers = new Map();
10
- let nextHandlerId = 0;
11
- const mainMenuId = 0;
10
+ let nextHandlerId = 1;
11
+ const mainMenuId = 1;
12
12
  let nextMenuId = mainMenuId + 1;
13
13
  let openUrlHandler;
14
14
  ipcRenderer.on(electron_api_1.CHANNEL_OPEN_URL, async (event, url, replyChannel) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/core",
3
- "version": "1.55.0-next.14+d999fe031",
3
+ "version": "1.55.0-next.25+2be612f8a",
4
4
  "description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
5
5
  "main": "lib/common/index.js",
6
6
  "typings": "lib/common/index.d.ts",
@@ -17,8 +17,8 @@
17
17
  "@phosphor/signaling": "1",
18
18
  "@phosphor/virtualdom": "1",
19
19
  "@phosphor/widgets": "1",
20
- "@theia/application-package": "1.55.0-next.14+d999fe031",
21
- "@theia/request": "1.55.0-next.14+d999fe031",
20
+ "@theia/application-package": "1.55.0-next.25+2be612f8a",
21
+ "@theia/request": "1.55.0-next.25+2be612f8a",
22
22
  "@types/body-parser": "^1.16.4",
23
23
  "@types/cookie": "^0.3.3",
24
24
  "@types/dompurify": "^2.2.2",
@@ -218,5 +218,5 @@
218
218
  "nyc": {
219
219
  "extends": "../../configs/nyc.json"
220
220
  },
221
- "gitHead": "d999fe0315a29bc5b154067621dbc1eb180fa567"
221
+ "gitHead": "2be612f8a7efb90c1183ba47f0897040925b304a"
222
222
  }
@@ -35,8 +35,8 @@ const { ipcRenderer, contextBridge } = require('electron');
35
35
 
36
36
  // a map of menuId => map<handler id => handler>
37
37
  const commandHandlers = new Map<number, Map<number, () => void>>();
38
- let nextHandlerId = 0;
39
- const mainMenuId = 0;
38
+ let nextHandlerId = 1;
39
+ const mainMenuId = 1;
40
40
  let nextMenuId = mainMenuId + 1;
41
41
 
42
42
  let openUrlHandler: ((url: string) => Promise<boolean>) | undefined;