- Added Blur (Light) theme, Closes #62
- Support Changing Default Tab (related to #56)
- Link to Piped, Closes #48
- Continuations for albums (related to #46)
- Support for recently added languages
This commit is contained in:
Shiny Nematoda 2022-10-22 06:27:21 +00:00
parent 335f548219
commit edb618b3f5
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
12 changed files with 487 additions and 422 deletions

View file

@ -114,9 +114,10 @@ onBeforeMount(() => {
}
/* Set the default locale if set */
if (store.locale) {
setupLocale(store.locale);
}
if (store.locale) setupLocale(store.locale);
/* Set the default tab */
if (location.pathname == '/') nav.state.page = store.page;
});
onMounted(() => {
@ -125,9 +126,7 @@ onMounted(() => {
/* Alert User on close if url is present */
window.onbeforeunload = () => {
if (data.state.url) {
return 'Are you Sure?';
}
if (data.state.url) return 'Are you Sure?';
};
/* Setup IndexedDB for storing custom playlists */