Skip to content

Commit

Permalink
address review comment (move extensionInfo declaration before server …
Browse files Browse the repository at this point in the history
…is required)

Adds also CHANGELOG.md entry
  • Loading branch information
rschnekenbu committed Apr 23, 2024
1 parent 80c6513 commit 0298e44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

- [Previous Changelogs](https://github.com/eclipse-theia/theia/tree/master/doc/changelogs/)

<!-- ## not yet released
## not yet released

<a name="breaking_changes_not_yet_released">[Breaking Changes:](#breaking_changes_not_yet_released)</a> -->
- [application-manager] Generate Extension Info in server application to avoid empty About Dialog [#13590](https://github.com/eclipse-theia/theia/pull/13590) - contributed on behalf of STMicroelectronics

<!-- <a name="breaking_changes_not_yet_released">[Breaking Changes:](#breaking_changes_not_yet_released)</a> -->

## v1.48.0 - 03/28/2024

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ const main = require('@theia/core/lib/node/main');
BackendApplicationConfigProvider.set(${this.prettyStringify(this.pck.props.backend.config)});
globalThis.extensionInfo = ${this.prettyStringify(this.pck.extensionPackages.map(({ name, version }) => ({ name, version }))) };
const serverModule = require('./server');
const serverAddress = main.start(serverModule());
Expand All @@ -192,8 +194,6 @@ serverAddress.then((addressInfo) => {
});
globalThis.serverAddress = serverAddress;
globalThis.extensionInfo = ${this.prettyStringify(this.pck.extensionPackages.map(({ name, version }) => ({ name, version }))) };
`;
}

Expand Down

0 comments on commit 0298e44

Please sign in to comment.