mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-04 23:18:44 +08:00
feat: 新增优先使用插件识别的功能
This commit is contained in:
@@ -1386,6 +1386,8 @@ export default {
|
|||||||
fanartEnableHint: 'Use image data from fanart.tv',
|
fanartEnableHint: 'Use image data from fanart.tv',
|
||||||
fanartLang: 'Fanart Language',
|
fanartLang: 'Fanart Language',
|
||||||
fanartLangHint: 'Set language preference for Fanart images, ordered by priority when multiple selected',
|
fanartLangHint: 'Set language preference for Fanart images, ordered by priority when multiple selected',
|
||||||
|
recognizePluginFirst: "Prioritize Plugin Recognition",
|
||||||
|
recognizePluginFirstHint: "Prioritize calling plugins for media recognition. If a plugin matches, native recognition will be skipped",
|
||||||
githubProxy: 'Github Acceleration Proxy',
|
githubProxy: 'Github Acceleration Proxy',
|
||||||
githubProxyPlaceholder: 'Leave empty for no proxy',
|
githubProxyPlaceholder: 'Leave empty for no proxy',
|
||||||
githubProxyHint: 'Use proxy to accelerate Github access speed',
|
githubProxyHint: 'Use proxy to accelerate Github access speed',
|
||||||
|
|||||||
@@ -1377,6 +1377,8 @@ export default {
|
|||||||
fanartEnableHint: '使用 fanart.tv 的图片数据',
|
fanartEnableHint: '使用 fanart.tv 的图片数据',
|
||||||
fanartLang: 'Fanart语言',
|
fanartLang: 'Fanart语言',
|
||||||
fanartLangHint: '设置Fanart图片的语言偏好,多选时按优先级顺序排列',
|
fanartLangHint: '设置Fanart图片的语言偏好,多选时按优先级顺序排列',
|
||||||
|
recognizePluginFirst: "优先使用插件识别",
|
||||||
|
recognizePluginFirstHint: "优先调用插件识别媒体信息,若插件命中则不再调用原生识别",
|
||||||
githubProxy: 'Github加速代理',
|
githubProxy: 'Github加速代理',
|
||||||
githubProxyPlaceholder: '留空表示不使用代理',
|
githubProxyPlaceholder: '留空表示不使用代理',
|
||||||
githubProxyHint: '使用代理加速Github访问速度',
|
githubProxyHint: '使用代理加速Github访问速度',
|
||||||
|
|||||||
@@ -1378,6 +1378,8 @@ export default {
|
|||||||
fanartEnableHint: '使用 fanart.tv 的圖片數據',
|
fanartEnableHint: '使用 fanart.tv 的圖片數據',
|
||||||
fanartLang: 'Fanart語言',
|
fanartLang: 'Fanart語言',
|
||||||
fanartLangHint: '設定Fanart圖片的語言偏好,多選時按優先級順序排列',
|
fanartLangHint: '設定Fanart圖片的語言偏好,多選時按優先級順序排列',
|
||||||
|
recognizePluginFirst: "優先使用插件識別",
|
||||||
|
recognizePluginFirstHint: "優先調用插件識別媒體信息,若插件命中則不再調用原生識別",
|
||||||
githubProxy: 'Github加速代理',
|
githubProxy: 'Github加速代理',
|
||||||
githubProxyPlaceholder: '留空表示不使用代理',
|
githubProxyPlaceholder: '留空表示不使用代理',
|
||||||
githubProxyHint: '使用代理加速Github訪問速度',
|
githubProxyHint: '使用代理加速Github訪問速度',
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ const SystemSettings = ref<any>({
|
|||||||
AUTO_UPDATE_RESOURCE: true,
|
AUTO_UPDATE_RESOURCE: true,
|
||||||
MOVIEPILOT_AUTO_UPDATE: false,
|
MOVIEPILOT_AUTO_UPDATE: false,
|
||||||
// 媒体
|
// 媒体
|
||||||
|
RECOGNIZE_PLUGIN_FIRST: false,
|
||||||
TMDB_API_DOMAIN: null,
|
TMDB_API_DOMAIN: null,
|
||||||
TMDB_IMAGE_DOMAIN: null,
|
TMDB_IMAGE_DOMAIN: null,
|
||||||
TMDB_LOCALE: null,
|
TMDB_LOCALE: null,
|
||||||
@@ -1102,6 +1103,16 @@ onDeactivated(() => {
|
|||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
|
<VRow>
|
||||||
|
<VCol cols="12" md="6">
|
||||||
|
<VSwitch
|
||||||
|
v-model="SystemSettings.Advanced.RECOGNIZE_PLUGIN_FIRST"
|
||||||
|
:label="t('setting.system.recognizePluginFirst')"
|
||||||
|
:hint="t('setting.system.recognizePluginFirstHint')"
|
||||||
|
persistent-hint
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
|
</VRow>
|
||||||
|
|
||||||
<!-- 刮削开关设置 -->
|
<!-- 刮削开关设置 -->
|
||||||
<VRow class="mt-4">
|
<VRow class="mt-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user