diff --git a/CHANGELOG.md b/CHANGELOG.md index a219345..eee4e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2024-09-09] v1.6.7 + +- 🐛 fix: 修复打开日记却没有正确插入预约块的问题 + ## [2024-06-08] v1.6.6 - ✨ feat: 为 Reservation Tree Item 添加 popover icon diff --git a/package.json b/package.json index e401920..a657645 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "siyuan-dailynote-today", - "version": "1.6.7", + "version": "1.6.8", "description": "", "main": ".src/index.js", "keywords": [], diff --git a/plugin.json b/plugin.json index 7c86075..dafa19f 100644 --- a/plugin.json +++ b/plugin.json @@ -6,7 +6,7 @@ "en_US": "Daily Note Today" }, "url": "https://github.com/frostime/siyuan-dailynote-today", - "version": "1.6.7", + "version": "1.6.8", "minAppVersion": "3.0.0", "description": { "zh_CN": "自动创建日记 + 快速打开日记 + 日程 TODO 管理 + 移动块功能", @@ -28,5 +28,15 @@ "https://afdian.net/a/frostime" ] }, - "keywords": ["dailynote", "diary", "日记", "笔记", "日程", "TODO", "待办", "预约", "reservation"] -} + "keywords": [ + "dailynote", + "diary", + "日记", + "笔记", + "日程", + "TODO", + "待办", + "预约", + "reservation" + ] +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 063702d..ca085ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,23 +31,22 @@ */ "allowJs": true, "checkJs": true, + "moduleDetection": "force", "types": [ "node", "vite/client", "svelte" ], - "baseUrl": "./src", "paths": { - "@/*": ["*"], - "@/components/*": ["components/*"], + "@/*": ["./src/*"], + "@/components/*": ["./src/components/*"], } }, "include": [ "tools/**/*.ts", "src/**/*.ts", "src/**/*.d.ts", - "src/**/*.tsx", - "src/**/*.vue" + "src/**/*.svelte" ], "references": [ {