Skip to content

Commit

Permalink
Merge pull request #126 from abgox/v2
Browse files Browse the repository at this point in the history
fix: 更新版本 2.28.2
  • Loading branch information
abgox authored Jan 1, 2025
2 parents 0fe3017 + 5570386 commit db97f8a
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 29 deletions.
6 changes: 6 additions & 0 deletions src/v2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- 没有特别说明的版本都是修复问题

## 2.28.2

- 修复了白名单机制对于 InputTip 自身创建的窗口无效的问题
- 修复了点击 `托盘菜单` 中的 `暂停/运行` 时的问题
- 修复和优化了部分配置菜单的布局和描述

## 2.28.1

- 修复黑名单机制的版本迁移
Expand Down
Binary file modified src/v2/InputTip.JAB.JetBrains.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions src/v2/utils/options.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ InstallMouseHook
CoordMode 'Mouse', 'Screen'
SetStoreCapsLockMode 0

;@AHK2Exe-SetVersion 2.28.1
currentVersion := "2.28.1"
;@AHK2Exe-SetVersion 2.28.2
currentVersion := "2.28.2"
2 changes: 1 addition & 1 deletion src/v2/utils/show.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ while 1 {
continue
}
if (useWhiteList) {
if (!InStr(app_show_state, exe_str)) {
if (!InStr(app_show_state, exe_str) && !WinActive("ahk_class AutoHotkeyGUI")) {
hideSymbol()
needShow := 0
}
Expand Down
81 changes: 56 additions & 25 deletions src/v2/utils/tray-menu.ahk

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/v2/utils/var.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,9 @@ reloadSymbol() {
type := "EN"
}
}
loadSymbol(type, left, top)
if (canShowSymbol) {
loadSymbol(type, left, top)
}
}
}

Expand Down

0 comments on commit db97f8a

Please sign in to comment.