Add self-updating service

This commit is contained in:
2025-07-03 15:21:01 +08:00
parent 81eb2c94ac
commit ebee33ea7c
22 changed files with 1565 additions and 465 deletions

View File

@@ -95,7 +95,7 @@ const selectDoc = async (doc: Document) => {
closeMenu();
}
} catch (error) {
console.error('切换文档失败:', error);
console.error('Failed to switch documents:', error);
}
};
@@ -128,7 +128,7 @@ const createDoc = async (title: string) => {
await selectDoc(newDoc);
}
} catch (error) {
console.error('创建文档失败:', error);
console.error('Failed to create document:', error);
}
};