From 492f60b78f21719e5bb8243120b17e2cf7ec46bd Mon Sep 17 00:00:00 2001 From: Sander Bruens Date: Tue, 21 Nov 2023 18:49:16 -0500 Subject: [PATCH] Enable app launcher. --- .../Sources/OutlineCatalystApp/CatalystApp.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift b/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift index 97737f461cc..671f7b619d5 100644 --- a/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift +++ b/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift @@ -55,8 +55,8 @@ appKitController._AppKitBridge_setConnectionStatus(.disconnected) } -// // Enable app launcher to start on boot. -// appKitController._AppKitBridge_setAppLauncherEnabled(true) + // Enable app launcher to start on boot. + appKitController._AppKitBridge_setAppLauncherEnabled(true) } } @@ -67,17 +67,17 @@ try Bundle(path: bundlePath)?.loadAndReturnError() let bundle = Bundle(path: bundlePath)! - NSLog("[AppKitBundleLoader] AppKit bundle loaded successfully") + NSLog("[CatalystApp] AppKit bundle loaded successfully") if let appKitControllerClass = bundle.classNamed("AppKitIntegration.AppKitController") as? NSObject.Type { return appKitControllerClass.init() } } catch { - NSLog("[AppKitBundleLoader] Error loading: \(error)") + NSLog("[CatalystApp] Error loading: \(error)") } } - preconditionFailure("[AppKitBundleLoader] Unable to load") + preconditionFailure("[CatalystApp] Unable to load") } #endif