Ariver
2026-05-06 7a55ef704cb2c4a9c67766105cafb9ce13186772
checkpoint: v3.0.7 — 隐藏 APP 名称时 hover 自动显示
3 files modified
8 ■■■■ changed files
Apptag/AppGridItem.swift 3 ●●●● patch | view | raw | blame | history
Apptag/Info.plist 2 ●●● patch | view | raw | blame | history
CHANGELOG.md 3 ●●●●● patch | view | raw | blame | history
Apptag/AppGridItem.swift
@@ -26,12 +26,13 @@
                    )
                    .animation(.spring(response: 0.3, dampingFraction: 0.7), value: isHovered)
                if showName {
                if showName || isHovered {
                    Text(app.name)
                        .font(.system(size: 11, weight: .medium))
                        .lineLimit(1)
                        .truncationMode(.tail)
                        .frame(maxWidth: iconSize + 20)
                        .opacity(showName ? 1 : 0.85)
                }
            }
            .padding(.vertical, 8)
Apptag/Info.plist
@@ -19,7 +19,7 @@
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>3.0.6</string>
    <string>3.0.7</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSMinimumSystemVersion</key>
CHANGELOG.md
@@ -1,5 +1,8 @@
# Apptag Changelog
## [3.0.7] — 2026-05-06
- 隐藏 APP 名称时,鼠标 hover 自动显示名称(`.opacity` 0.85)
## [3.0.6] — 2026-05-06
- 新增标签输入行显示在标签列表最上面第一行
- Settings Tags 标签页排序改用 tagOrder(新建标签确认后留在顶部)