mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
Changes:
- Range Headers for videoplayback - Changed behaviour of local playlists - Added UTC timestamps to footer
This commit is contained in:
parent
dac17fbc2d
commit
599e024afa
12 changed files with 465 additions and 416 deletions
|
@ -6,10 +6,16 @@ import {
|
|||
HYPERPIPE_INSTANCE,
|
||||
getJson,
|
||||
} from '@/scripts/fetch.js';
|
||||
import { useStore } from '@/scripts/util.js';
|
||||
|
||||
import { useStore } from '@/scripts/util.js';
|
||||
import { SUPPORTED_LOCALES, useI18n } from '@/stores/misc.js';
|
||||
|
||||
const date = ref('unknown');
|
||||
|
||||
import('@/assets/version.json').then(v => {
|
||||
date.value = v.date;
|
||||
});
|
||||
|
||||
const { t, setupLocale } = useI18n(),
|
||||
instances = ref([]),
|
||||
hypInstances = ref([]),
|
||||
|
@ -286,6 +292,7 @@ onMounted(() => {
|
|||
</div>
|
||||
|
||||
<footer>
|
||||
{{ date }}
|
||||
<a
|
||||
class="bi bi-code-slash"
|
||||
target="_blank"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue