feat: dont show auto launch on portable version

This commit is contained in:
Zamitto 2024-06-27 19:00:12 -03:00
parent 9c99e56b70
commit f1fecb684b
4 changed files with 24 additions and 8 deletions

View file

@ -49,4 +49,8 @@ import "./profile/update-profile";
ipcMain.handle("ping", () => "pong");
ipcMain.handle("getVersion", () => app.getVersion());
ipcMain.handle(
"isPortableVersion",
() => process.env.PORTABLE_EXECUTABLE_FILE != null
);
ipcMain.handle("getDefaultDownloadsPath", () => defaultDownloadsPath);