Skip to content

Commit

Permalink
fix: override app's desktop name and v8 flags in default-app (#36050)
Browse files Browse the repository at this point in the history
Co-authored-by: Piroro-hs <Piroro-hs@users.noreply.github.com>

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Piroro-hs <Piroro-hs@users.noreply.github.com>
  • Loading branch information
trop[bot] and Piroro-hs committed Oct 17, 2022
1 parent 8dcdf5c commit 27944d8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion default_app/main.ts
Expand Up @@ -83,7 +83,7 @@ function loadApplicationPackage (packagePath: string) {
});

try {
// Override app name and version.
// Override app's package.json data.
packagePath = path.resolve(packagePath);
const packageJsonPath = path.join(packagePath, 'package.json');
let appPath;
Expand All @@ -104,6 +104,16 @@ function loadApplicationPackage (packagePath: string) {
} else if (packageJson.name) {
app.name = packageJson.name;
}
if (packageJson.desktopName) {
app.setDesktopName(packageJson.desktopName);
} else {
app.setDesktopName(`${app.name}.desktop`);
}
// Set v8 flags, deliberately lazy load so that apps that do not use this
// feature do not pay the price
if (packageJson.v8Flags) {
require('v8').setFlagsFromString(packageJson.v8Flags);
}
appPath = packagePath;
}

Expand Down

0 comments on commit 27944d8

Please sign in to comment.