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/content/0.instances.md b/content/0.instances.md index c8b55cb..1116780 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) | πŸ’ΎπŸŒ | diff --git a/content/3.client/4.changelog.md b/content/3.client/4.changelog.md index f83cd99..d8e3389 100644 --- a/content/3.client/4.changelog.md +++ b/content/3.client/4.changelog.md @@ -2,6 +2,20 @@ 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! +- 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)) 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' }], + }, + }, });