checkpoint: v3.1.4 — 三个Toggle并排一行,等距排版
| | |
| | | // Tab 1: General |
| | | Form { |
| | | Section { |
| | | HStack(spacing: 20) { |
| | | Toggle("Launch at login", isOn: $launchAtLogin) |
| | | .onChange(of: launchAtLogin) { _, enabled in |
| | | if enabled { |
| | |
| | | } else { |
| | | try? SMAppService.mainApp.unregister() |
| | | } |
| | | } |
| | | Toggle("Show in Dock", isOn: $showDockIcon) |
| | | Toggle("Hide app names", isOn: $hideAppNames) |
| | | } |
| | | } |
| | | |
| | |
| | | Text("Icon display size. Grid columns adjust automatically.") |
| | | .font(.caption) |
| | | .foregroundStyle(.secondary) |
| | | } |
| | | |
| | | Section { |
| | | Toggle("Show in Dock", isOn: $showDockIcon) |
| | | } |
| | | |
| | | Section { |
| | | Toggle("Hide app names", isOn: $hideAppNames) |
| | | } |
| | | } |
| | | .tabItem { Label("General", systemImage: "gearshape") } |
| | |
| | | <key>CFBundlePackageType</key> |
| | | <string>APPL</string> |
| | | <key>CFBundleShortVersionString</key> |
| | | <string>3.1.3</string> |
| | | <string>3.1.4</string> |
| | | <key>CFBundleVersion</key> |
| | | <string>1</string> |
| | | <key>LSMinimumSystemVersion</key> |
| | |
| | | # Apptag Changelog |
| | | |
| | | ## [3.1.3] — 2026-05-06 |
| | | |
| | | - 清除 Re-index 功能:已脱离 Finder,每次 overlay 打开自动扫描新 app,无需手动触发 |
| | | |
| | | ## [3.1.2] — 2026-05-06 |