feat: 再次移除UpdateType字段

This commit is contained in:
DLmaster361
2025-09-14 00:51:54 +08:00
parent 8910e09493
commit d0651e2104
2 changed files with 3 additions and 28 deletions

View File

@@ -79,7 +79,6 @@ const settings = reactive<SettingsData>({
Start: { IfSelfStart: false, IfMinimizeDirectly: false },
Update: {
IfAutoUpdate: false,
UpdateType: 'stable',
Source: 'GitHub',
ProxyAddress: '',
MirrorChyanCDK: '',
@@ -104,11 +103,6 @@ const sendTaskResultTimeOptions = [
{ label: '仅失败时', value: '仅失败时' },
]
const updateTypeOptions = [
{ label: '稳定版', value: 'stable' },
{ label: '测试版', value: 'beta' },
]
const updateSourceOptions = [
{ label: 'GitHub', value: 'GitHub' },
{ label: 'Mirror酱', value: 'MirrorChyan' },
@@ -302,7 +296,6 @@ onMounted(() => {
<a-tab-pane key="update" tab="更新设置">
<TabUpdate
:settings="settings"
:update-type-options="updateTypeOptions"
:update-source-options="updateSourceOptions"
:handle-setting-change="handleSettingChange"
:check-update="checkUpdate"