mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
Changes:
- 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:
parent
335f548219
commit
edb618b3f5
12 changed files with 487 additions and 422 deletions
|
@ -61,7 +61,7 @@ function getStoreBool(key, ele) {
|
|||
const verifyApi = computed(() =>
|
||||
hypInstances.value
|
||||
.map(i => i.api_url.replace('https://', '').replace('http://'))
|
||||
.includes(getStore('api') || PIPED_INSTANCE),
|
||||
.includes(getStore('api') || HYPERPIPE_INSTANCE),
|
||||
),
|
||||
verifyPipedApi = computed(() =>
|
||||
instances.value
|
||||
|
@ -89,6 +89,7 @@ onMounted(() => {
|
|||
<option value="dark">Dark (Default)</option>
|
||||
<option value="light">Light</option>
|
||||
<option value="blur">Blur</option>
|
||||
<option value="light blur">Blur (Light)</option>
|
||||
<option value="dracula">Dracula</option>
|
||||
<option value="nord">Nord</option>
|
||||
</select>
|
||||
|
@ -103,6 +104,19 @@ onMounted(() => {
|
|||
<option v-for="i in SUPPORTED_LOCALES" :value="i.code">{{ i.name }}</option>
|
||||
</select>
|
||||
|
||||
<h2>{{ t('pref.tab') }}</h2>
|
||||
|
||||
<select
|
||||
id="pref-page"
|
||||
class="input"
|
||||
:value="getStore('page') || 'home'"
|
||||
@change="setStore('page', $event.target.value)">
|
||||
<option value="home">Home</option>
|
||||
<option value="explore">Explore</option>
|
||||
<option value="charts">Charts</option>
|
||||
<option value="library">Library</option>
|
||||
</select>
|
||||
|
||||
<h2>{{ t('pref.player') }}</h2>
|
||||
|
||||
<div class="left">
|
||||
|
@ -198,7 +212,14 @@ onMounted(() => {
|
|||
</table>
|
||||
</div>
|
||||
|
||||
<h2>{{ t('instances.piped') }}</h2>
|
||||
<h2>
|
||||
{{ t('instances.piped') }}
|
||||
<a
|
||||
href="https://github.com/TeamPiped/Piped"
|
||||
target="_blank"
|
||||
rel="noreferrer noopener"
|
||||
class="bi bi-info-circle"></a>
|
||||
</h2>
|
||||
<select
|
||||
v-if="instances"
|
||||
class="input"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue