Skip to content

Commit

Permalink
4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Jul 24, 2024
1 parent 3ef5bb9 commit 0b02b95
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Abyssal.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 4.0.0;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = labs.cement.Abyssal;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -901,7 +901,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 4.0.0;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = labs.cement.Abyssal;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
7 changes: 2 additions & 5 deletions Abyssal/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@
}
}
},
"Allow **%@** to takeover the menu bar when showing this window or toggled manually." : {
"Allow **%@** to takeover the menu bar when showing this window or toggled manually. **Applies after this window is closed.**" : {
"localizations" : {
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "允许**%@**在此窗口打开或手动切换时接管菜单栏前缘的应用菜单。"
"value" : "允许**%@**在此窗口打开或手动切换时接管菜单栏前缘的应用菜单。**在此窗口关闭后生效。**"
}
}
}
Expand Down Expand Up @@ -315,9 +315,6 @@
}
}
}
},
"Debug Fetch State" : {

},
"Display ID" : {
"localizations" : {
Expand Down
4 changes: 2 additions & 2 deletions Abyssal/Menu Bar/StatusBarController+StateManagers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ extension StatusBarController {
func startActionTimer() {
if actionTimer == nil {
actionTimer = .scheduledTimer(
withTimeInterval: 1.0 / 3.0,
withTimeInterval: 1.0 / 2.0,
repeats: true
) { [weak self] _ in
guard let self else { return }
Expand Down Expand Up @@ -153,7 +153,7 @@ extension StatusBarController {
}

else if mouseDragging.value() && !draggedToDeactivate.dragging {
if draggedToDeactivate.count < 3 {
if draggedToDeactivate.count < 1 {
draggedToDeactivate.count += 1
} else {
draggedToDeactivate.dragging = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct MenuBarOverrideControl: View {

private let autoOverridesMenuBarTip = Tip {
.init(localized: """
Allow **\(Bundle.main.appName)** to takeover the menu bar when showing this window or toggled manually.
Allow **\(Bundle.main.appName)** to takeover the menu bar when showing this window or toggled manually. **Applies after this window is closed.**
""")
}
}
Expand Down

0 comments on commit 0b02b95

Please sign in to comment.