-
-
Notifications
You must be signed in to change notification settings - Fork 41
App Icon 2026 #62
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
base: main
Are you sure you want to change the base?
App Icon 2026 #62
Changes from all commits
1c2ec59
bc2316c
9592708
830bb52
8f2de98
9818eab
374a5e7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,101 @@ | ||
| { | ||
| "fill" : { | ||
| "linear-gradient" : [ | ||
| "display-p3:0.48945,0.17982,0.58353,1.00000", | ||
| "display-p3:0.04332,0.12145,0.34426,1.00000" | ||
| ], | ||
| "orientation" : { | ||
| "start" : { | ||
| "x" : 0.5, | ||
| "y" : 0 | ||
| }, | ||
| "stop" : { | ||
| "x" : 0.5, | ||
| "y" : 0.7 | ||
| } | ||
| } | ||
| }, | ||
| "groups" : [ | ||
| { | ||
| "layers" : [ | ||
| { | ||
| "fill-specializations" : [ | ||
| { | ||
| "appearance" : "tinted", | ||
| "value" : { | ||
| "solid" : "extended-srgb:0.00000,0.53333,1.00000,1.00000" | ||
| } | ||
| } | ||
| ], | ||
| "glass" : false, | ||
| "hidden" : false, | ||
| "image-name" : "Image 3.png", | ||
| "name" : "Image 3", | ||
| "position" : { | ||
| "scale" : 0.86, | ||
| "translation-in-points" : [ | ||
| 0, | ||
| 11.390625 | ||
| ] | ||
| } | ||
| }, | ||
| { | ||
| "glass" : false, | ||
| "hidden" : true, | ||
| "image-name" : "Image 2.png", | ||
| "name" : "Image 2", | ||
| "position" : { | ||
| "scale" : 0.77, | ||
| "translation-in-points" : [ | ||
| 0, | ||
| 0 | ||
| ] | ||
| } | ||
| } | ||
| ], | ||
| "shadow" : { | ||
| "kind" : "neutral", | ||
| "opacity" : 0.5 | ||
| }, | ||
| "translucency" : { | ||
| "enabled" : true, | ||
| "value" : 0.5 | ||
| } | ||
| }, | ||
| { | ||
| "layers" : [ | ||
| { | ||
| "fill-specializations" : [ | ||
| { | ||
| "appearance" : "tinted", | ||
| "value" : "automatic" | ||
| } | ||
| ], | ||
| "glass" : false, | ||
| "image-name" : "Image.png", | ||
| "name" : "Image" | ||
| } | ||
| ], | ||
| "position" : { | ||
| "scale" : 0.69, | ||
| "translation-in-points" : [ | ||
| 0, | ||
| 0 | ||
| ] | ||
| }, | ||
| "shadow" : { | ||
| "kind" : "neutral", | ||
| "opacity" : 0.5 | ||
| }, | ||
| "translucency" : { | ||
| "enabled" : true, | ||
| "value" : 0.5 | ||
| } | ||
| } | ||
| ], | ||
| "supported-platforms" : { | ||
| "squares" : [ | ||
| "macOS" | ||
| ] | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ import SwiftUI | |
| import FinderSync | ||
|
|
||
| class AppState: ObservableObject { | ||
| static let shared = AppState() | ||
| @MainActor static let shared = AppState() | ||
|
||
| @Published var isGatekeeperEnabled: Bool = true | ||
| @Published var isGatekeeperEnabledState: Bool = true | ||
| @Published var hasInitializedGatekeeperState = false | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,6 +61,17 @@ class AppDelegate: NSObject, NSApplicationDelegate { | |
| guard !AppState.shared.isLoading else { return } | ||
| updateGatekeeperUI(appState: AppState.shared) | ||
| } | ||
|
|
||
| // Add window close notification observer | ||
| NotificationCenter.default.addObserver( | ||
|
Comment on lines
+64
to
+66
|
||
| forName: NSWindow.willCloseNotification, | ||
| object: nil, | ||
| queue: .main | ||
| ) { _ in | ||
| if NSApp.windows.isEmpty { | ||
| NSApp.terminate(nil) | ||
| } | ||
| } | ||
|
Comment on lines
+65
to
+74
|
||
| } | ||
|
|
||
| // MARK: - File Opening | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that the app icon build setting points to 202602, the old Sentinel.icon is likely no longer used by the main app target but is still being copied into the app’s Resources. If it’s not needed for anything else, removing it from the Resources build phase will avoid shipping two icon composer assets and reduce bundle size/confusion.