diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 116502d..51d1056 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -42,7 +42,7 @@ }, "productName": "CS工具箱", "mainBinaryName": "cstb", - "version": "0.0.5", + "version": "0.0.6-beta.1", "identifier": "upup.cool", "plugins": { "deep-link": { diff --git a/src/app/(main)/dynamic/page.tsx b/src/app/(main)/dynamic/page.tsx index 9f2c3a9..2768f64 100644 --- a/src/app/(main)/dynamic/page.tsx +++ b/src/app/(main)/dynamic/page.tsx @@ -64,13 +64,13 @@ const ReleaseNotes = () => { */} 发布时间: - {release?.created_at ? new Date(release.created_at).toLocaleString() : "未知时间"} + {release.created_at ? new Date(release.created_at as string).toLocaleString() : "未知时间"}
- {release?.content || "无内容"} + {release.content || "无内容"}