From 9f15087ff92afad0508a24d8803e8e8775359d09 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Sun, 07 Jun 2026 01:36:12 +0800
Subject: [PATCH] release: add 7.8.15 App Store package
---
Apptag/AppDefaults.swift | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/Apptag/AppDefaults.swift b/Apptag/AppDefaults.swift
index 313edc2..0484a60 100644
--- a/Apptag/AppDefaults.swift
+++ b/Apptag/AppDefaults.swift
@@ -5,13 +5,14 @@
static let currentSchemaVersion = 3
static let tagFontSize: Double = 22
- static let iconSize: Double = 80
+ static let iconSize: Double = 64
static let tagPosition = "right"
static let displayMode = "coloredGridContainer"
static let hideAppNames = true
static let showDockIcon = true
static let launchAtLogin = true
static let showUncommonAppBubbles = false
+ static let useAppKitTagNavigation = true
static func register() {
UserDefaults.standard.register(defaults: [
@@ -23,6 +24,9 @@
"showDockIcon": showDockIcon,
"launchAtLogin": launchAtLogin,
"showUncommonAppBubbles": showUncommonAppBubbles,
+ "useAppKitTagNavigation": useAppKitTagNavigation,
+ "skipTagRemovalDropConfirm": false,
+ "skipUncategorizedDropConfirm": false,
LauncherHotkeyRegistrationStore.mainStateKey: LauncherHotkeyRegistrationState.active.rawValue,
LauncherHotkeyRegistrationStore.quickSearchStateKey: LauncherHotkeyRegistrationState.active.rawValue
])
@@ -30,7 +34,7 @@
}
static func hasStoredValue(for key: String) -> Bool {
- let domain = Bundle.main.bundleIdentifier ?? "com.apptag.launcher"
+ let domain = Bundle.main.bundleIdentifier ?? AppIdentity.bundleIdentifier
return UserDefaults.standard.persistentDomain(forName: domain)?[key] != nil
}
--
Gitblit v1.9.3