mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-08 09:16:58 +08:00
feat: 系统设置增加音乐封面代理地址配置项 (#651)
This commit is contained in:
@@ -2110,6 +2110,9 @@ export default {
|
||||
tmdbImageDomainPlaceholder: 'image.tmdb.org',
|
||||
tmdbImageDomainHint: 'Customize TheMovieDb image service domain or proxy address',
|
||||
tmdbImageDomainRequired: 'Please enter image service domain',
|
||||
musicCoverProxy: 'Music Cover Proxy Address',
|
||||
musicCoverProxyPlaceholder: 'https://your-proxy.example.com',
|
||||
musicCoverProxyHint: 'Customize music cover proxy address to fix cover not showing when coverartarchive.org is inaccessible. Leave empty to use official address',
|
||||
tmdbLocale: 'TMDB Metadata Language',
|
||||
tmdbLocalePlaceholder: 'en',
|
||||
tmdbLocaleHint: 'Customize TheMovieDb metadata language',
|
||||
|
||||
@@ -2085,6 +2085,9 @@ export default {
|
||||
tmdbImageDomainPlaceholder: 'image.tmdb.org',
|
||||
tmdbImageDomainHint: '自定义 TheMovieDb 图片服务域名或代理地址',
|
||||
tmdbImageDomainRequired: '请输入图片服务域名',
|
||||
musicCoverProxy: '音乐封面代理地址',
|
||||
musicCoverProxyPlaceholder: 'https://your-proxy.example.com',
|
||||
musicCoverProxyHint: '自定义音乐封面代理地址,用于解决 coverartarchive.org 无法访问导致的封面不显示问题,留空则使用官方地址',
|
||||
tmdbLocale: 'TMDB 元数据语言',
|
||||
tmdbLocalePlaceholder: 'zh',
|
||||
tmdbLocaleHint: '自定义 TheMovieDb 元数据语言',
|
||||
|
||||
@@ -2084,6 +2084,9 @@ export default {
|
||||
tmdbImageDomainPlaceholder: 'image.tmdb.org',
|
||||
tmdbImageDomainHint: '自定義 TheMovieDb 圖片服務域名或代理地址',
|
||||
tmdbImageDomainRequired: '請輸入圖片服務域名',
|
||||
musicCoverProxy: '音樂封面代理地址',
|
||||
musicCoverProxyPlaceholder: 'https://your-proxy.example.com',
|
||||
musicCoverProxyHint: '自定義音樂封面代理地址,用於解決 coverartarchive.org 無法訪問導致的封面不顯示問題,留空則使用官方地址',
|
||||
tmdbLocale: 'TMDB 元數據語言',
|
||||
tmdbLocalePlaceholder: 'zh',
|
||||
tmdbLocaleHint: '自定義 TheMovieDb 元數據語言',
|
||||
|
||||
@@ -105,6 +105,7 @@ const SystemSettings = ref<any>({
|
||||
TMDB_API_DOMAIN: null,
|
||||
TMDB_API_KEY: null,
|
||||
TMDB_IMAGE_DOMAIN: null,
|
||||
MUSIC_COVER_PROXY: null,
|
||||
TMDB_LOCALE: null,
|
||||
META_CACHE_EXPIRE: 0,
|
||||
SCRAP_FOLLOW_TMDB: true,
|
||||
@@ -2055,6 +2056,16 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
|
||||
prepend-inner-icon="mdi-image"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12" md="6">
|
||||
<VTextField
|
||||
v-model="SystemSettings.Advanced.MUSIC_COVER_PROXY"
|
||||
:label="t('setting.system.musicCoverProxy')"
|
||||
:hint="t('setting.system.musicCoverProxyHint')"
|
||||
persistent-hint
|
||||
:placeholder="t('setting.system.musicCoverProxyPlaceholder')"
|
||||
prepend-inner-icon="mdi-music"
|
||||
/>
|
||||
</VCol>
|
||||
<VCol cols="12" md="6">
|
||||
<VSelect
|
||||
v-model="SystemSettings.Advanced.TMDB_LOCALE"
|
||||
|
||||
Reference in New Issue
Block a user