diff --git a/CHANGELOG.md b/CHANGELOG.md index b1eae8352..ced873f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). * Fix right click bug ([#928](https://github.com/lbryio/lbry-app/pull/928)) * Fix Election linting errors ([#929](https://github.com/lbryio/lbry-app/pull/929)) * App will no longer reset when minimizing to tray ([#1042](https://github.com/lbryio/lbry-app/pull/1042)) + * Fix Windows notifications not showing ([1145](https://github.com/lbryio/lbry-app/pull/1145)) ### Deprecated * diff --git a/package.json b/package.json index 63463db7f..042a3175e 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,9 @@ "keywords": [ "lbry" ], + "build": { + "appId": "io.lbry.LBRY" + }, "license": "MIT", "homepage": "https://lbry.io/", "bugs": { diff --git a/src/main/index.js b/src/main/index.js index a1947739d..dc3c47201 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -50,6 +50,7 @@ const installExtensions = async () => { app.setAsDefaultProtocolClient('lbry'); app.setName('LBRY'); +app.setAppUserModelId('io.lbry.LBRY'); app.on('ready', async () => { const processList = await findProcess('name', 'lbrynet-daemon');