diff --git a/package.json b/package.json index f02e8c4..e61f990 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,8 @@ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "lint": "eslint -c eslint.config.js", "lint:fix": "eslint -c eslint.config.js --fix", - "gql:turbo": "node ./node_modules/gql.tada/bin/cli.js turbo" + "gql:turbo": "node ./node_modules/gql.tada/bin/cli.js turbo", + "gql:check": "node ./node_modules/gql.tada/bin/cli.js check" }, "devDependencies": { "@gql.tada/svelte-support": "^1.0.1", diff --git a/src/app.css b/src/app.css index c3c41f5..5f399c6 100644 --- a/src/app.css +++ b/src/app.css @@ -231,6 +231,15 @@ body { transform: perspective(100vw) translate3d(0, 0, 0vw) rotateY(0deg) rotateX(0deg); } +@keyframes fade-in { + from { + opacity: 0; + } + + to { + opacity: 1 + } +} @keyframes idle-fly { diff --git a/src/app.d.ts b/src/app.d.ts index 55ef846..3ab0ee2 100644 --- a/src/app.d.ts +++ b/src/app.d.ts @@ -95,6 +95,7 @@ export interface Native { torrentStats: (hash: string) => Promise torrents: () => Promise setDOH: (dns: string) => Promise + cachedTorrents: () => Promise updateSettings: (settings: TorrentSettings) => Promise spawnPlayer: (url: string) => Promise isApp: boolean diff --git a/src/lib/components/EpisodesList.svelte b/src/lib/components/EpisodesList.svelte index 8db46b4..f5a2808 100644 --- a/src/lib/components/EpisodesList.svelte +++ b/src/lib/components/EpisodesList.svelte @@ -1,5 +1,5 @@ - + -
+