diff --git a/.gitignore b/.gitignore index d0137e1..9f021d6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,10 @@ .DS_Store # Build output -dist/ -build/ +**/dist/ +**/build/ +**/public/ +**/android/ # Dependencies node_modules @@ -12,5 +14,6 @@ node_modules **/*.keystore **/*.jks **/node_modules +**/git_modules/ package-lock.json \ No newline at end of file diff --git a/capacitor/resources/logo_transparent.svg b/capacitor/resources/logo_transparent.svg new file mode 100644 index 0000000..17848b4 --- /dev/null +++ b/capacitor/resources/logo_transparent.svg @@ -0,0 +1,13 @@ + + + + + + + \ No newline at end of file diff --git a/electron/package.json b/electron/package.json index fbfd202..3e43661 100644 --- a/electron/package.json +++ b/electron/package.json @@ -1,6 +1,6 @@ { "name": "Miru", - "version": "4.5.10", + "version": "4.5.11", "private": true, "author": "ThaUnknown_ ", "description": "Stream anime torrents, real-time with no waiting for downloads.", diff --git a/functions/anime/[id].js b/functions/anime/[id].js index 1073d88..2ff241a 100644 --- a/functions/anime/[id].js +++ b/functions/anime/[id].js @@ -5,7 +5,23 @@ export function onRequest ({ params }) { try { const id = Number(params.id) if (Number.isSafeInteger(id)) { - const html = /* html */`Redirecting...` + const html = /* html */` + + + + + + + + + + + + + + Redirecting... + +` return new Response(html, { headers: { @@ -13,8 +29,6 @@ export function onRequest ({ params }) { } }) } - } catch (e) { - return Response.redirect('https://miru.watch/') - } + } catch (e) {} return Response.redirect('https://miru.watch/') } diff --git a/functions/w2g/[id].js b/functions/w2g/[id].js index 2782f85..0375288 100644 --- a/functions/w2g/[id].js +++ b/functions/w2g/[id].js @@ -4,7 +4,23 @@ export function onRequest ({ params }) { try { const id = params.id - const html = /* html */`Redirecting...` + const html = /* html */` + + + + + + + + + + + + + + Redirecting... + +` return new Response(html, { headers: { diff --git a/web/src/app.html b/web/src/app.html index 7626c2c..88737ae 100644 --- a/web/src/app.html +++ b/web/src/app.html @@ -27,8 +27,8 @@ - - + + Miru | Torrenting Made Simple %sveltekit.head% diff --git a/web/src/lib/components/Footer.svelte b/web/src/lib/components/Footer.svelte index 96e1f59..607ac2b 100644 --- a/web/src/lib/components/Footer.svelte +++ b/web/src/lib/components/Footer.svelte @@ -8,7 +8,7 @@
- logo + logo
© 2020 - {new Date().getFullYear()}, ThaUnknown diff --git a/web/src/lib/components/Navbar.svelte b/web/src/lib/components/Navbar.svelte index 429e43d..a3897d1 100644 --- a/web/src/lib/components/Navbar.svelte +++ b/web/src/lib/components/Navbar.svelte @@ -1,7 +1,7 @@