From 408140c64569c6b3fec627a0e0dc64c1ee47da51 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Sun, 10 Mar 2024 23:27:03 +0000 Subject: [PATCH 1/4] Version 4.6 --- content/3.client/4.changelog.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/3.client/4.changelog.md b/content/3.client/4.changelog.md index f83cd99..89e9a68 100644 --- a/content/3.client/4.changelog.md +++ b/content/3.client/4.changelog.md @@ -2,6 +2,16 @@ title: 'Changelog' --- +# Version 4.6.0 + +- Implemented media session support! +- Added option to blur background in subtitles +- Added vercel config to properly support using non-hash routing +- Fixed a bug in config that treated empty environment variables as being set, causing config.js to be ignored +- Fixed a bug in the button component that meant our own pages opened in a new tab +- Added new translations: Catalan +- Improved translations: Catalan, Spanish, Persian, French, Hindi, Icelandic, Italian, Nepali (macrolanguage), Dutch, Panjabi, Slovenian, Chinese (Han (Simplified variant)), Russian, Estonian, Korean + # Version 4.5.1 - Improved translations: Catalan, Czech, Spanish, Persian, French, Italian, Portuguese (Brazil), Russian, Tamil, Vietnamese, Chinese (Han (Simplified variant)) From 2dea0dab9c186f4b22dcc03846315ad352581be3 Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Mon, 11 Mar 2024 20:30:49 +0200 Subject: [PATCH 2/4] docs: pwa for chaos because he was left out --- content/0.instances.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/0.instances.md b/content/0.instances.md index b7075fd..2207276 100644 --- a/content/0.instances.md +++ b/content/0.instances.md @@ -18,7 +18,7 @@ The community maintains these trusted instances, meaning they are likely to be u | Instance | Host | Status | | :------------------------------------------------ | :---------------------------------------------------------------------------------- | :------- | | [mw.lonelil.com](https://mw.lonelil.com) | [lonelil - Partner](https://github.com/lonelil) | πŸ’ΎπŸŒπŸ“± | -| [watch.qtchaos.de](https://watch.qtchaos.de) | [chaos - Project Lead](https://github.com/qtchaos) | πŸ’Ύ | +| [watch.qtchaos.de](https://watch.qtchaos.de) | [chaos - Project Lead](https://github.com/qtchaos) | πŸ’ΎπŸ“± | | [bmov](https://bmov.vercel.app) | [TheScreechingBagel - Mod](https://github.com/TheScreechingBagel) | πŸ’ΎπŸŒ | | [stream.thehairy.me](https://stream.thehairy.me) | [thehairy - Mod](https://github.com/thehairy) | πŸ’ΎπŸŒπŸ“± | | [movie-web-me](https://movie-web-me.vercel.app) | [Isra - Contributor](https://github.com/zisra) | πŸ’ΎπŸŒ | From 0f89240ea49443c0772d736ee643f2a8df15c8a0 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Mon, 11 Mar 2024 20:20:44 +0000 Subject: [PATCH 3/4] Version 4.6.1 --- content/3.client/4.changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/3.client/4.changelog.md b/content/3.client/4.changelog.md index 89e9a68..d8e3389 100644 --- a/content/3.client/4.changelog.md +++ b/content/3.client/4.changelog.md @@ -2,6 +2,10 @@ title: 'Changelog' --- +# Version 4.6.1 +- Fixed subtitle blur settings loading as NaN +- Improved translations: Czech, German, Persian, French, Italian, Dutch, Russian, Slovenian, Ukrainian, Chinese (Han (Simplified variant)) + # Version 4.6.0 - Implemented media session support! From 0fb2861625f74c3b84b0583fe60133bbed20cef2 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Tue, 12 Mar 2024 12:59:38 +0000 Subject: [PATCH 4/4] Fix base url on favicon and cover image --- app.config.ts | 2 +- nuxt.config.ts | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app.config.ts b/app.config.ts index 6c24593..dead4e3 100644 --- a/app.config.ts +++ b/app.config.ts @@ -4,7 +4,7 @@ export default defineAppConfig({ description: 'movie-web is a free and open source streaming site, no ads, no tracking, no nonsense.', url: 'https://movie-web.github.io/docs', - image: '/cover.png', + image: '/docs/cover.png', socials: { github: 'movie-web/movie-web', }, diff --git a/nuxt.config.ts b/nuxt.config.ts index e9be151..6753da2 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -3,9 +3,9 @@ export default defineNuxtConfig({ extends: '@nuxt-themes/docus', devtools: { enabled: true }, - modules: [ - // Remove it if you don't use Plausible analytics - // https://github.com/nuxt-modules/plausible - '@nuxtjs/plausible', - ], + app: { + head: { + link: [{ rel: 'icon', type: 'image/x-icon', href: '/docs/favicon.ico' }], + }, + }, });