feat: use electron native notification with xml

This commit is contained in:
Zamitto 2024-10-29 23:10:30 -03:00
parent e7292eb75e
commit a45e06efa3
4 changed files with 27 additions and 12 deletions

View file

@ -19,6 +19,10 @@ export const seedsPath = app.isPackaged
? path.join(process.resourcesPath, "seeds")
: path.join(__dirname, "..", "..", "seeds");
export const achievementSoundPath = app.isPackaged
? path.join(process.resourcesPath, "resources", "achievement.wav")
: path.join(__dirname, "..", "..", "resources", "achievement.wav");
export const backupsPath = path.join(app.getPath("userData"), "Backups");
export const appVersion = app.getVersion();