diff --git a/common/components/NavbarLink.svelte b/common/components/NavbarLink.svelte index f12ee419..7ec71c81 100644 --- a/common/components/NavbarLink.svelte +++ b/common/components/NavbarLink.svelte @@ -34,7 +34,7 @@ .animate .donate .material-symbols-outlined { animation: glow 1s ease-in-out infinite alternate; } - .donate:hover .material-symbols-outlined { + .donate:active .material-symbols-outlined { background: #fff; color: #fa68b6 !important; } @@ -64,7 +64,7 @@ transition: background .8s cubic-bezier(0.25, 0.8, 0.25, 1), color .8s cubic-bezier(0.25, 0.8, 0.25, 1); } - .navbar-link:hover > span { + .navbar-link:active > span { background: #fff; color: var(--dark-color); } diff --git a/common/components/Search.svelte b/common/components/Search.svelte index d413c8d1..0dfd1696 100644 --- a/common/components/Search.svelte +++ b/common/components/Search.svelte @@ -54,7 +54,7 @@ } -
+
diff --git a/common/modules/util.js b/common/modules/util.js index 22a3aaf8..569dc460 100644 --- a/common/modules/util.js +++ b/common/modules/util.js @@ -157,7 +157,8 @@ export const defaults = { sources: {}, enableExternal: false, playerPath: '', - playerSeek: 2 + playerSeek: 2, + playerSkip: false } export const subtitleExtensions = ['srt', 'vtt', 'ass', 'ssa', 'sub', 'txt'] diff --git a/common/views/Player/Player.svelte b/common/views/Player/Player.svelte index f68435ae..f7213146 100644 --- a/common/views/Player/Player.svelte +++ b/common/views/Player/Player.svelte @@ -785,6 +785,7 @@ } let currentSkippable = null + $: currentSkippable && settings.value.playerAutoSkip && skip() function checkSkippableChapters () { const current = findChapter(currentTime) if (current) { diff --git a/common/views/Search.svelte b/common/views/Search.svelte index 50f14eb3..f19d0636 100644 --- a/common/views/Search.svelte +++ b/common/views/Search.svelte @@ -66,7 +66,7 @@
-
+
{#key $key} {#each $items as card} diff --git a/common/views/Settings/PlayerSettings.svelte b/common/views/Settings/PlayerSettings.svelte index 0e35ab7b..efe6beef 100644 --- a/common/views/Settings/PlayerSettings.svelte +++ b/common/views/Settings/PlayerSettings.svelte @@ -92,6 +92,7 @@ + @@ -118,6 +119,7 @@ + @@ -154,6 +156,12 @@
+ +
+ + +
+
{#if SUPPORTS.externalPlayer}

External Player Settings