mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-15 12:21:47 +00:00
Merge pull request #270 from Araxeus/fix-normal-notification-showing-appID
fix notification showing appID instead of app name on windows
This commit is contained in:
29
index.js
29
index.js
@ -255,6 +255,35 @@ app.on("ready", () => {
|
|||||||
}, 20000);
|
}, 20000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Register appID on windows
|
||||||
|
if (is.windows()) {
|
||||||
|
const appID = "com.github.th-ch.youtube-music";
|
||||||
|
app.setAppUserModelId(appID);
|
||||||
|
const appLocation = process.execPath;
|
||||||
|
const appData = app.getPath("appData");
|
||||||
|
// check shortcut validity if not in dev mode / running portable app
|
||||||
|
if (!is.dev() && !appLocation.startsWith(path.join(appData, "..", "Local", "Temp"))) {
|
||||||
|
const shortcutPath = path.join(appData, "Microsoft", "Windows", "Start Menu", "Programs", "YouTube Music.lnk");
|
||||||
|
try { // check if shortcut is registered and valid
|
||||||
|
const shortcutDetails = electron.shell.readShortcutLink(shortcutPath); // throw error if doesn't exist yet
|
||||||
|
if (shortcutDetails.target !== appLocation || shortcutDetails.appUserModelId !== appID) {
|
||||||
|
throw "needUpdate";
|
||||||
|
}
|
||||||
|
} catch (error) { // if not valid -> Register shortcut
|
||||||
|
electron.shell.writeShortcutLink(
|
||||||
|
shortcutPath,
|
||||||
|
error === "needUpdate" ? "update" : "create",
|
||||||
|
{
|
||||||
|
target: appLocation,
|
||||||
|
cwd: appLocation.slice(0, appLocation.lastIndexOf(path.sep)),
|
||||||
|
description: "YouTube Music Desktop App - including custom plugins",
|
||||||
|
appUserModelId: appID
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mainWindow = createMainWindow();
|
mainWindow = createMainWindow();
|
||||||
setApplicationMenu(mainWindow);
|
setApplicationMenu(mainWindow);
|
||||||
if (config.get("options.restartOnConfigChanges")) {
|
if (config.get("options.restartOnConfigChanges")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user