-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcec041
commit 0cddb47
Showing
7 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# `0.3.5` *(2025-01)* | ||
|
||
### Bug Fixes | ||
|
||
* **electron:** Fixed a bug where enabling the "hide window on startup" setting would cause the sdkIsRun property to not update properly, resulting in tray i18n and other features becoming ineffective. Additionally, the dependency for 'hide window on startup' has been changed to nodejs. ([23f99c6](https://github.com/LuSrackhall/KeyTone/commit/23f99c60f923f671d320706e3d4cc95358deface)) | ||
* **electron:** Fixed a bug where after manually toggling and finally enabling the "hide window on startup" setting, the window would still show on second launch (expected behavior is focus only). (The issue was still related to viper's old problem) ([5cc191a](https://github.com/LuSrackhall/KeyTone/commit/5cc191aa509529685880574aeb842ed7e3ce6c69)) | ||
* **sse:** Fixed potential SSE connection issues caused by port occupation. ([c2041ac](https://github.com/LuSrackhall/KeyTone/commit/c2041ac10ff3a84a8d31702d1d8626af6db86919)) | ||
* **ui | electron | sdk:** Fixed potential issues where UI and node main process RESTful requests in electron couldn't access the actual SDK port due to port occupation (SSE not affected)(except for SPA) ([9b2e705](https://github.com/LuSrackhall/KeyTone/commit/9b2e70533c43ba412047c972e39878b6f347067a)) | ||
* **ui | electron:** Fixed a bug where startup and auto-start settings were completely invisible in appx format. ([72ea0f0](https://github.com/LuSrackhall/KeyTone/commit/72ea0f085be0b5cc99dd95d8cf2185dcb932bf5e)), closes [#58](https://github.com/LuSrackhall/KeyTone/issues/58) | ||
* **ui:** Resolved potential resource consumption issues caused by excessive port change monitoring. ([b7f8c6a](https://github.com/LuSrackhall/KeyTone/commit/b7f8c6a0db86365ee103605a12fdc0193213b289)) | ||
* **ui:** Fixed a bug where the volume percentage in the main page would change after adjusting the volume increment/decrement amplitude. After fixing, it now remains unchanged (including real-time adjustments, though there's a very small chance of change). ([1100566](https://github.com/LuSrackhall/KeyTone/commit/1100566dfcb2a43c67e2bbbc313898b4b7e48d93)) | ||
* **ui:** Fixed a bug related to the previous two fixes where after changing the volume reduction in main page settings and returning to the main page, the volume would change normally. However, when subsequently entering settings to change the volume increment/decrement amplitude and returning to the main page, the percentage abnormally maintained the old percentage from before the reduction-induced change. ([5f4a4fd](https://github.com/LuSrackhall/KeyTone/commit/5f4a4fd503b1e6c09def8f1ac0f803f4b1e79870)) | ||
* **ui:** Fixed a bug where sound wouldn't completely disappear when adjusting the volume slider to 0% on the main page. (Added logic to automatically enable mute when volume is 0%) ([df97c32](https://github.com/LuSrackhall/KeyTone/commit/df97c324bd9e8f20149635eac16d664cf6aa05a3)) | ||
* **ui:** Fixed a bug caused by the previous fix where the volume percentage in the main page wouldn't change after modifying the volume reduction in main page settings. After fixing, it now changes normally. (This fix doesn't need to include real-time adjustment cases as they weren't affected by this bug) ([9aa1b7e](https://github.com/LuSrackhall/KeyTone/commit/9aa1b7efd53e214c981e25775da3023a2cfa45dd)) | ||
* **ui:** Fixed a bug in the main page volume slider where negative percentages would appear when the min absolute value changed from large to small if the selected value (defined as Normal value) was more left than min. (min is affected by the volume reduction in main page settings and original volume increment/decrement settings) ([f852da1](https://github.com/LuSrackhall/KeyTone/commit/f852da1c0e2f1643e0ec82e31e76dcf1a2d353cb)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# `0.3.5` *(2025-01)* | ||
|
||
### 问题修复 | ||
|
||
* **electron:** 修复了当开启自动启动时隐藏窗口的设置后,会引发sdkIsRun属性无法更新而造成的托盘i18n等功能无效的bug。同时本次提交中将'启动时是否隐藏窗口'的依赖改为nodejs。 ([23f99c6](https://github.com/LuSrackhall/KeyTone/commit/23f99c60f923f671d320706e3d4cc95358deface)) | ||
* **electron:** 修复了当启动时隐藏窗口设置项主动 做开关操作并最终设置为开启后, 二次启动仍会展示窗口的bug(预期是仅聚焦)。(问题原因仍然是viper的老毛病,) ([5cc191a](https://github.com/LuSrackhall/KeyTone/commit/5cc191aa509529685880574aeb842ed7e3ce6c69)) | ||
* **sse:** 修复潜在的因端口占用问题造成的sse的链接不起作用的问题。 ([c2041ac](https://github.com/LuSrackhall/KeyTone/commit/c2041ac10ff3a84a8d31702d1d8626af6db86919)) | ||
* **ui | electron | sdk:** 修复潜在的因端口占用问题造成的electron中ui及node主进程的restful请求无法访问sdk实际端口的问题(sse暂未涉及)(spa除外) ([9b2e705](https://github.com/LuSrackhall/KeyTone/commit/9b2e70533c43ba412047c972e39878b6f347067a)) | ||
* **ui | electron:** 修复了 启动与自动启动设置项 在appx格式下 完全不显示的bug。 ([72ea0f0](https://github.com/LuSrackhall/KeyTone/commit/72ea0f085be0b5cc99dd95d8cf2185dcb932bf5e)), closes [#58](https://github.com/LuSrackhall/KeyTone/issues/58) | ||
* **ui:** 解决潜在的 过分监听端口变化引起的 资源消耗的问题。 ([b7f8c6a](https://github.com/LuSrackhall/KeyTone/commit/b7f8c6a0db86365ee103605a12fdc0193213b289)) | ||
* **ui:** 修复调整 音量增减调节 的音量增减幅度后,回到主页面时 主页面的音量选择的百分比变化的bug,修复后会保持不变。(本次修复包括实时调整时的百分比保持不变--不过有极小机率会发生变化) ([1100566](https://github.com/LuSrackhall/KeyTone/commit/1100566dfcb2a43c67e2bbbc313898b4b7e48d93)) | ||
* **ui:** 修复了和之前两次修复相关的, 当进入设置页面 更改主页相关设置的音量降幅后, 回到主页面时 主页面音量正常变化。紧接着进入设置页面 更改音量增减调节的音量增减幅度后, 回到主页面时 主页面百分比异常的按照由降幅引起的变化之前的旧百分比保持的bug。 ([5f4a4fd](https://github.com/LuSrackhall/KeyTone/commit/5f4a4fd503b1e6c09def8f1ac0f803f4b1e79870)) | ||
* **ui:** 修复了主页面调整音量的进度条在使用时, 调整至0%后声音不会完全消失的bug。(增加了音量为0%时自动开启静音功能的逻辑) ([df97c32](https://github.com/LuSrackhall/KeyTone/commit/df97c324bd9e8f20149635eac16d664cf6aa05a3)) | ||
* **ui:** 修复因上个修复引起的 修改主页相关设置的音量降幅后,回到主页面时 主页面的音量选择百分比不变的bug,修复后会正常变化。(本次修复无需包括实时调整时的情况,因实时调整不存在此bug) ([9aa1b7e](https://github.com/LuSrackhall/KeyTone/commit/9aa1b7efd53e214c981e25775da3023a2cfa45dd)) | ||
* **ui:** 修复主页 volume 音量进度条, 在min绝对值由大变小时, 若进度条的所选值(即我定义的Normal值)比min更靠左就出现负数百分比的bug。(min受 设置页面中 主页面相关音量降幅 及 原始音量增减调节 的影响) ([f852da1](https://github.com/LuSrackhall/KeyTone/commit/f852da1c0e2f1643e0ec82e31e76dcf1a2d353cb)) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "key-tone", | ||
"version": "0.3.4", | ||
"version": "0.3.5", | ||
"description": "Silent Typist's Friend", | ||
"productName": "KeyTone", | ||
"author": "LuSrackhall <[email protected]>", | ||
|