Fix icon grid identity reset rendering
| | |
| | | - Improved tag-list reordering feedback by replacing persistent wiggle animation with clearer opacity-based drag state |
| | | - Fixed the Smart Start apply confirmation in Settings so the warning stays above the Settings window with clearer readable controls |
| | | - Fixed right-side tag navigation getting stuck in a dimmed drag visual state after a tag click |
| | | - Fixed an icon grid rendering issue that could make many app icons disappear after drag-state resets |
| | | - Version updated to 7.3.5, Build updated to 744 |
| | | ``` |
| | | |
| | |
| | | - 退出旧版 TagLauncher,再启动新版。 |
| | | - 如果菜单栏图标不可见,检查 Thaw / Bartender / Ice / Hidden Bar / Dozer 等菜单栏管理工具是否隐藏了 TagLauncher。 |
| | | - 确认 `⌥⇧空格` 能呼出应用列表。 |
| | | - 确认主列表 Flat / Colored Grid / Container 模式均能显示。 |
| | | - 确认主列表 Flat / Colored Grid / Container / Grid 模式均能完整显示图标。 |
| | | - 确认设置按钮和编辑按钮都能从浮层右上角打开。 |
| | | - 确认设置页语言切换正常。 |
| | | - 确认标签拖拽排序、右侧标签点击切换、App 拖入标签、拖到未分类确认面板正常。 |
| | |
| | | } |
| | | .opacity(dragModeActive ? 0.92 : 1) |
| | | .animation(.easeOut(duration: 0.08), value: dragModeActive) |
| | | .id(dragResetToken) |
| | | .id("\(itemID)|reset-\(dragResetToken)") |
| | | .onChange(of: dragModeActive) { _, active in |
| | | if active { |
| | | setHoverState(false) |
| | |
| | | .opacity(dragModeActive ? (isDragging ? 1.0 : 0.62) : 1.0) |
| | | .animation(.easeOut(duration: 0.08), value: isDragging) |
| | | .animation(.easeOut(duration: 0.08), value: dragModeActive) |
| | | .id(dragResetToken) |
| | | .id("\(name)|reset-\(dragResetToken)") |
| | | .contentShape(RoundedRectangle(cornerRadius: 7)) |
| | | .onTapGesture { |
| | | action() |
| | |
| | | .opacity(dragModeActive ? (isDragging ? 1.0 : 0.62) : 1.0) |
| | | .animation(.easeOut(duration: 0.08), value: isDragging) |
| | | .animation(.easeOut(duration: 0.08), value: dragModeActive) |
| | | .id(dragResetToken) |
| | | .id("\(name)|reset-\(dragResetToken)") |
| | | .contentShape(RoundedRectangle(cornerRadius: 6)) |
| | | .onTapGesture { |
| | | action() |
| | |
| | | - 优化标签列表拖拽排序反馈:移除标签无限抖动,改为拖拽时其他标签降透明度,并缩短长按响应时间 |
| | | - 修复设置页“应用系统智能化初始分类”确认提示可能跑到设置窗口背后、被遮挡的问题,并优化为更清晰的实底确认框 |
| | | - 修复右侧标签列表点击后可能停留在拖拽视觉状态,导致后续标签无法正常点击切换的问题 |
| | | - 修复拖拽状态重置后 App 图标网格可能大量不渲染的问题,确保平铺、容器、网格视图切换后图标完整显示 |
| | | - 版本号更新为 `7.3.5`,Build 更新为 `744` |
| | | |
| | | ## [7.3.4] — 2026-05-18 |