Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.2.1 Build 127 #224

Merged
merged 4 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python version (for python projects only)
sonar.python.version=3
# Project Version to be used as Code Definition
sonar.projectVersion=3.2.0.125
sonar.projectVersion=3.2.1.127
# Folders excluded from the scan
sonar.exclusions=**/Notification Agent Core Tests/**,**/Notification Agent Alert Tests/**,**/Notification Agent Banner Tests/**,**/Notification Agent Popup Tests/**,**/Notification Agent Onboarding Tests/**,**/Notification Agent Popup UI Tests/**,**/Notification Agent Onboarding UI Tests/**,**/Notification Agent Core/Controllers/HelpBuilder.swift**
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ extension NotificationDispatch {
} else if object.hideTitleBarButtons ?? false {
mainWindow.styleMask.remove(.closable)
mainWindow.styleMask.remove(.miniaturizable)
} else {
// Not sure why since Sonoma we need to manually add the default buttons to the Title Bar.
mainWindow.styleMask.update(with: .closable)
mainWindow.styleMask.update(with: .miniaturizable)
}
mainWindow.canBecomeVisibleWithoutLogin = true

Expand Down
Loading
Loading