chore: fix Windows notifications (#1145)
This commit is contained in:
parent
4b67f8d9a5
commit
f5a63479e3
3 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
*
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
"keywords": [
|
||||
"lbry"
|
||||
],
|
||||
"build": {
|
||||
"appId": "io.lbry.LBRY"
|
||||
},
|
||||
"license": "MIT",
|
||||
"homepage": "https://lbry.io/",
|
||||
"bugs": {
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue