From 8cb52dc6507faf7edf0ef1ac3f94893985daed2c Mon Sep 17 00:00:00 2001 From: LuSrackhall <3647637206@qq.com> Date: Tue, 21 Jan 2025 00:36:18 +0800 Subject: [PATCH] chore(release): 0.3.4 --- CHANGELOG.md | 11 +++++++++++ docs/docs/.vitepress/config/en.mts | 1 + docs/docs/.vitepress/config/zh.mts | 1 + docs/docs/changelog/v0.3.4.md | 7 +++++++ docs/docs/zh/changelog/v0.3.4.md | 7 +++++++ frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- 7 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 docs/docs/changelog/v0.3.4.md create mode 100644 docs/docs/zh/changelog/v0.3.4.md diff --git a/CHANGELOG.md b/CHANGELOG.md index f477b91..32700b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# (2025-01-20) + + +### Bug Fixes + +* **ui | electron | appx:** 将win商店和桌面快捷方式下的图标背景, 改回白色。 ([0bfb32e](https://github.com/LuSrackhall/KeyTone/commit/0bfb32ebb727785b26bf3b5c74b0cb46632a091c)), closes [#57](https://github.com/LuSrackhall/KeyTone/issues/57) +* **ui | electron:** 修复了应用页面内部的url路由在通过`ctrl+鼠标左键`点击后, 触发新的electron窗口展示的问题。(通过监听mainWindow下的新窗口的产生事件, 在新窗口产生前判断是否是预期的产生行为, 若不是则纠正) ([aad9f3d](https://github.com/LuSrackhall/KeyTone/commit/aad9f3d1482e490f5206545b13941df2b6e5da0e)), closes [#40](https://github.com/LuSrackhall/KeyTone/issues/40) +* **ui | electron:** 由于appx格式的自启动功能暂时修复失败, 故在设置页面暂时移除相关设置项。(仅暂时移除appx打包格式下自启动设置) ([8bed9d4](https://github.com/LuSrackhall/KeyTone/commit/8bed9d4dc8e5a98b8c96299ce27934dadfc7f291)), closes [#58](https://github.com/LuSrackhall/KeyTone/issues/58) + + + # (2025-01-17) diff --git a/docs/docs/.vitepress/config/en.mts b/docs/docs/.vitepress/config/en.mts index 32fbf89..e245f08 100644 --- a/docs/docs/.vitepress/config/en.mts +++ b/docs/docs/.vitepress/config/en.mts @@ -81,6 +81,7 @@ function sidebarChangelog() { text: "Changelog", items: [ // { text: "v0.2.0", link: "/v0.2.0" }, // 最新的changelog, 往上写就好了 + { text: "v0.3.4", link: "/v0.3.4" }, { text: "v0.3.3", link: "/v0.3.3" }, { text: "v0.3.2", link: "/v0.3.2" }, { text: "v0.3.1", link: "/v0.3.1" }, diff --git a/docs/docs/.vitepress/config/zh.mts b/docs/docs/.vitepress/config/zh.mts index caaf127..77acb33 100644 --- a/docs/docs/.vitepress/config/zh.mts +++ b/docs/docs/.vitepress/config/zh.mts @@ -81,6 +81,7 @@ function sidebarChangelog() { text: "更新日志", items: [ // { text: "v0.2.0", link: "/v0.2.0" }, // 最新的changelog, 往上写就好了 + { text: "v0.3.4", link: "/v0.3.4" }, { text: "v0.3.3", link: "/v0.3.3" }, { text: "v0.3.2", link: "/v0.3.2" }, { text: "v0.3.1", link: "/v0.3.1" }, diff --git a/docs/docs/changelog/v0.3.4.md b/docs/docs/changelog/v0.3.4.md new file mode 100644 index 0000000..d5e2f1d --- /dev/null +++ b/docs/docs/changelog/v0.3.4.md @@ -0,0 +1,7 @@ +# `0.3.4` *(2025-01)* + +### Bug Fixes + +* **ui | electron | appx:** Changed the icon background back to white for Windows Store and desktop shortcuts. ([0bfb32e](https://github.com/LuSrackhall/KeyTone/commit/0bfb32ebb727785b26bf3b5c74b0cb46632a091c)), closes [#57](https://github.com/LuSrackhall/KeyTone/issues/57) +* **ui | electron:** Fixed an issue where internal URL routes in the application would trigger new Electron windows when clicked with `ctrl+left mouse button`. (By monitoring new window creation events under mainWindow and validating if the creation behavior is expected before it occurs) ([aad9f3d](https://github.com/LuSrackhall/KeyTone/commit/aad9f3d1482e490f5206545b13941df2b6e5da0e)), closes [#40](https://github.com/LuSrackhall/KeyTone/issues/40) +* **ui | electron:** Temporarily removed auto-start settings in appx format from the settings page due to unresolved auto-start functionality issues. (Only removed for appx package format) ([8bed9d4](https://github.com/LuSrackhall/KeyTone/commit/8bed9d4dc8e5a98b8c96299ce27934dadfc7f291)), closes [#58](https://github.com/LuSrackhall/KeyTone/issues/58) \ No newline at end of file diff --git a/docs/docs/zh/changelog/v0.3.4.md b/docs/docs/zh/changelog/v0.3.4.md new file mode 100644 index 0000000..63b9ef9 --- /dev/null +++ b/docs/docs/zh/changelog/v0.3.4.md @@ -0,0 +1,7 @@ +# `0.3.4` *(2025-01)* + +### 问题修复 + +* **ui | electron | appx:** 将win商店和桌面快捷方式下的图标背景, 改回白色。 ([0bfb32e](https://github.com/LuSrackhall/KeyTone/commit/0bfb32ebb727785b26bf3b5c74b0cb46632a091c)), closes [#57](https://github.com/LuSrackhall/KeyTone/issues/57) +* **ui | electron:** 修复了应用页面内部的url路由在通过`ctrl+鼠标左键`点击后, 触发新的electron窗口展示的问题。(通过监听mainWindow下的新窗口的产生事件, 在新窗口产生前判断是否是预期的产生行为, 若不是则纠正) ([aad9f3d](https://github.com/LuSrackhall/KeyTone/commit/aad9f3d1482e490f5206545b13941df2b6e5da0e)), closes [#40](https://github.com/LuSrackhall/KeyTone/issues/40) +* **ui | electron:** 由于appx格式的自启动功能暂时修复失败, 故在设置页面暂时移除相关设置项。(仅暂时移除appx打包格式下自启动设置) ([8bed9d4](https://github.com/LuSrackhall/KeyTone/commit/8bed9d4dc8e5a98b8c96299ce27934dadfc7f291)), closes [#58](https://github.com/LuSrackhall/KeyTone/issues/58) \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json index b924345..38031d7 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "key-tone", - "version": "0.3.3", + "version": "0.3.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "key-tone", - "version": "0.3.3", + "version": "0.3.4", "dependencies": { "@electron/remote": "^2.1.2", "@quasar/extras": "^1.16.12", diff --git a/frontend/package.json b/frontend/package.json index f546b62..94fbc1f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "key-tone", - "version": "0.3.3", + "version": "0.3.4", "description": "Silent Typist's Friend", "productName": "KeyTone", "author": "LuSrackhall <3647637206@qq.com>",