From 0107df0460cb1a3e2508e3a3b2fb6f66719be6f2 Mon Sep 17 00:00:00 2001 From: Peter Klingelhofer <> Date: Sat, 10 Aug 2024 18:29:39 -0500 Subject: [PATCH] bugfix(swift): Disable Mac spaces support due to lack of transition opacity --- swift/exhale.xcodeproj/project.pbxproj | 8 ++++---- swift/exhale/AppDelegate.swift | 5 +---- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/swift/exhale.xcodeproj/project.pbxproj b/swift/exhale.xcodeproj/project.pbxproj index f05261f..0653556 100644 --- a/swift/exhale.xcodeproj/project.pbxproj +++ b/swift/exhale.xcodeproj/project.pbxproj @@ -446,7 +446,7 @@ CODE_SIGN_ENTITLEMENTS = exhale/exhale.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 152; + CURRENT_PROJECT_VERSION = 153; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_ASSET_PATHS = "\"exhale/Preview Content\""; DEVELOPMENT_TEAM = VZCHHV7VNW; @@ -460,7 +460,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 1.5.2; + MARKETING_VERSION = 1.5.3; PRODUCT_BUNDLE_IDENTIFIER = peterklingelhofer.exhale; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = macosx; @@ -479,7 +479,7 @@ CODE_SIGN_ENTITLEMENTS = exhale/exhale.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 152; + CURRENT_PROJECT_VERSION = 153; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_ASSET_PATHS = "\"exhale/Preview Content\""; DEVELOPMENT_TEAM = VZCHHV7VNW; @@ -493,7 +493,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 11.0; - MARKETING_VERSION = 1.5.2; + MARKETING_VERSION = 1.5.3; PRODUCT_BUNDLE_IDENTIFIER = peterklingelhofer.exhale; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = macosx; diff --git a/swift/exhale/AppDelegate.swift b/swift/exhale/AppDelegate.swift index fcb46ef..cc1b691 100644 --- a/swift/exhale/AppDelegate.swift +++ b/swift/exhale/AppDelegate.swift @@ -96,10 +96,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate { window.isOpaque = false window.ignoresMouseEvents = true window.setFrame(screen.frame, display: true) - window.collectionBehavior = [ - .canJoinAllSpaces, - .fullScreenAuxiliary, - ] // Ensures window appears in all spaces +// window.collectionBehavior = [.canJoinAllSpaces] // Ensures window appears in all spaces windows.append(window) }