Added shorts support

This commit is contained in:
WardPearce
2025-05-29 18:39:13 +12:00
parent 78eedb2fe5
commit 174dd9946d
2 changed files with 17 additions and 4 deletions
@@ -48,6 +48,22 @@
android:scheme="https"
android:host="youtu.be"
android:pathPrefix="/watch" />
<data
android:scheme="https"
android:host="youtube.com"
android:pathPrefix="/shorts" />
<data
android:scheme="https"
android:host="www.youtube.com"
android:pathPrefix="/shorts" />
<data
android:scheme="https"
android:host="m.youtube.com"
android:pathPrefix="/shorts" />
<data
android:scheme="https"
android:host="youtu.be"
android:pathPrefix="/shorts" />
</intent-filter>
</activity>
+1 -4
View File
@@ -36,11 +36,8 @@
import { _ } from 'svelte-i18n';
import { get } from 'svelte/store';
import { pwaInfo } from 'virtual:pwa-info';
interface Props {
children?: import('svelte').Snippet;
}
let { children }: Props = $props();
let { children } = $props();
let mobileSearchShow = $state(false);