mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-06 16:16:42 +08:00
更新版本号至2.7.3
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "moviepilot",
|
"name": "moviepilot",
|
||||||
"version": "2.7.2",
|
"version": "2.7.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": "dist/service.js",
|
"bin": "dist/service.js",
|
||||||
@@ -114,4 +114,4 @@
|
|||||||
"workbox-window": "^7.3.0"
|
"workbox-window": "^7.3.0"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@1.22.18"
|
"packageManager": "yarn@1.22.18"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1208,7 +1208,7 @@ export default {
|
|||||||
workflowStatisticShareHint: 'Share workflow statistics to popular workflows for other MP users to reference',
|
workflowStatisticShareHint: 'Share workflow statistics to popular workflows for other MP users to reference',
|
||||||
bigMemoryMode: 'Large Memory Mode',
|
bigMemoryMode: 'Large Memory Mode',
|
||||||
bigMemoryModeHint: 'Use more memory to cache data and improve system performance',
|
bigMemoryModeHint: 'Use more memory to cache data and improve system performance',
|
||||||
dbWalEnable: 'WAL Mode',
|
dbWalEnable: 'Sqlite WAL Mode',
|
||||||
dbWalEnableHint:
|
dbWalEnableHint:
|
||||||
'Can improve read/write concurrency performance, but may increase the risk of data loss in exceptional cases, requires restart to take effect',
|
'Can improve read/write concurrency performance, but may increase the risk of data loss in exceptional cases, requires restart to take effect',
|
||||||
tmdbApiDomain: 'TMDB API Service Address',
|
tmdbApiDomain: 'TMDB API Service Address',
|
||||||
|
|||||||
@@ -1203,7 +1203,7 @@ export default {
|
|||||||
workflowStatisticShareHint: '分享工作流统计数据到热门工作流,供其他MPer参考',
|
workflowStatisticShareHint: '分享工作流统计数据到热门工作流,供其他MPer参考',
|
||||||
bigMemoryMode: '大内存模式',
|
bigMemoryMode: '大内存模式',
|
||||||
bigMemoryModeHint: '使用更大的内存缓存数据,提升系统性能',
|
bigMemoryModeHint: '使用更大的内存缓存数据,提升系统性能',
|
||||||
dbWalEnable: 'WAL模式',
|
dbWalEnable: '数据库WAL模式',
|
||||||
dbWalEnableHint: '可提升读写并发性能,但可能在异常情况下增加数据丢失风险,更改后需重启生效',
|
dbWalEnableHint: '可提升读写并发性能,但可能在异常情况下增加数据丢失风险,更改后需重启生效',
|
||||||
tmdbApiDomain: 'TMDB API服务地址',
|
tmdbApiDomain: 'TMDB API服务地址',
|
||||||
tmdbApiDomainPlaceholder: 'api.themoviedb.org',
|
tmdbApiDomainPlaceholder: 'api.themoviedb.org',
|
||||||
|
|||||||
@@ -1202,7 +1202,7 @@ export default {
|
|||||||
workflowStatisticShareHint: '分享工作流統計數據到熱門工作流,供其他MPer參考',
|
workflowStatisticShareHint: '分享工作流統計數據到熱門工作流,供其他MPer參考',
|
||||||
bigMemoryMode: '大內存模式',
|
bigMemoryMode: '大內存模式',
|
||||||
bigMemoryModeHint: '使用更大的內存緩存數據,提升系統性能',
|
bigMemoryModeHint: '使用更大的內存緩存數據,提升系統性能',
|
||||||
dbWalEnable: 'WAL模式',
|
dbWalEnable: '數據庫WAL模式',
|
||||||
dbWalEnableHint: '可提升讀寫併發性能,但可能在異常情況下增加數據丟失風險,更改後需重啟生效',
|
dbWalEnableHint: '可提升讀寫併發性能,但可能在異常情況下增加數據丟失風險,更改後需重啟生效',
|
||||||
tmdbApiDomain: 'TMDB API服務地址',
|
tmdbApiDomain: 'TMDB API服務地址',
|
||||||
tmdbApiDomainPlaceholder: 'api.themoviedb.org',
|
tmdbApiDomainPlaceholder: 'api.themoviedb.org',
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ const { t } = useI18n()
|
|||||||
const SystemSettings = ref<any>({
|
const SystemSettings = ref<any>({
|
||||||
// 基础设置
|
// 基础设置
|
||||||
Basic: {
|
Basic: {
|
||||||
|
DB_TYPE: 'sqlite',
|
||||||
APP_DOMAIN: null,
|
APP_DOMAIN: null,
|
||||||
API_TOKEN: null,
|
API_TOKEN: null,
|
||||||
WALLPAPER: 'tmdb',
|
WALLPAPER: 'tmdb',
|
||||||
@@ -818,7 +819,7 @@ onDeactivated(() => {
|
|||||||
persistent-hint
|
persistent-hint
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
<VCol cols="12" md="6">
|
<VCol v-if="SystemSettings.Basic.DB_TYPE === 'postgresql'" cols="12" md="6">
|
||||||
<VSwitch
|
<VSwitch
|
||||||
v-model="SystemSettings.Advanced.DB_WAL_ENABLE"
|
v-model="SystemSettings.Advanced.DB_WAL_ENABLE"
|
||||||
:label="t('setting.system.dbWalEnable')"
|
:label="t('setting.system.dbWalEnable')"
|
||||||
|
|||||||
Reference in New Issue
Block a user