Merge branch 'main' into enhancement/lastfm

This commit is contained in:
Core 2022-06-22 23:37:58 +01:00
commit 7e6f3bd17e
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
29 changed files with 1348 additions and 1103 deletions

View file

@ -332,7 +332,7 @@ export class AppEvents {
{
visible: !visible,
label: this.i18n['action.tray.playpause'],
label: this.i18n['term.playpause'],
click: () => {
utils.getWindow().webContents.executeJavaScript('MusicKitInterop.playPause()')
}
@ -340,7 +340,7 @@ export class AppEvents {
{
visible: !visible,
label: this.i18n['action.tray.next'],
label: this.i18n['term.next'],
click: () => {
utils.getWindow().webContents.executeJavaScript(`MusicKitInterop.next()`)
}
@ -348,7 +348,7 @@ export class AppEvents {
{
visible: !visible,
label: this.i18n['action.tray.previous'],
label: this.i18n['term.previous'],
click: () => {
utils.getWindow().webContents.executeJavaScript(`MusicKitInterop.previous()`)
}
@ -369,7 +369,7 @@ export class AppEvents {
}
},
{
label: this.i18n['action.tray.quit'],
label: this.i18n['term.quit'],
click: () => {
app.quit()
}