Merge branch 'main' into develop

This commit is contained in:
Core 2022-01-30 16:45:41 +00:00
commit a535ec0a8a
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
11 changed files with 362 additions and 260 deletions

View file

@ -157,7 +157,7 @@
</div>
<template v-if="(data.attributes?.playParams?.kind ?? data.type ?? '').includes('album') && data.relationships.catalog != null && data.relationships.catalog != null && data.relationships.catalog.data.length > 0">
<div class="playlist-time showExtended item-navigate" style="color:#fa586a; font-weight: bold" @click="app.routeView(data.relationships.catalog.data[0])">
{{$root.getLz("term.showAlbum")}}
{{$root.getLz("action.showAlbum")}}
</div>
</template>
<hr>

View file

@ -752,7 +752,9 @@
app.chrome.hideUserInfo = !app.cfg.visual.showuserinfo
},
sendDataToMTT: function () {
ipcRenderer.invoke('setStoreValue', 'general.close_behavior', app.cfg.general.close_behavior);
ipcRenderer.invoke('setStoreValue', 'general.close_behavior', app.cfg.general.close_behavior);
// setStoreValue does not change plugin store values somehow
ipcRenderer.invoke('update-store-mtt', app.cfg.general.close_behavior);
}
}
})