refactor: 清理 parser worker rag merger 的历史类型问题

This commit is contained in:
digua
2026-03-25 22:43:12 +08:00
parent b6fdc3887e
commit 7eaba396ec
29 changed files with 264 additions and 103 deletions
+2 -2
View File
@@ -218,7 +218,7 @@ const checkUpdate = (win) => {
})
// 不需要更新
autoUpdater.on('update-not-available', (info) => {
autoUpdater.on('update-not-available', (_info) => {
// 客户端打开会默认弹一次,用isFirstShow来控制不弹
if (isFirstShow) {
isFirstShow = false
@@ -283,7 +283,7 @@ const manualCheckForUpdates = () => {
* 模拟更新弹窗(仅用于开发测试)
* 控制台通过:window.api.app.simulateUpdate() 测试
*/
const simulateUpdateDialog = (win) => {
const simulateUpdateDialog = (_win) => {
dialog.showMessageBox({
title: t('update.newVersionTitle', { version: '9.9.9' }),
message: t('update.newVersionMessage', { version: '9.9.9' }),