Skip to content

Commit b5a1951

Browse files
Updated to version 1.2.6 (632)
added new graphics for Big Sur (and new app icon) increased the minimum macOS version from 10.7 to 10.9 due to Xcode 12 changed the logic for detecting non-running processes (QueryAllSources seems to be asynchronous now) changed the logic for accessing icons for bundles (.car files broke the old logic) if an icon is not found within the current bundle, check the parent bundle if one exists switched to templated images and remove dark mode code added software updates via Sparkle (technically the original app supported this, but the GitHub source code did not) changed http:// links to https:// removed an unused and invalid CTFrameDraw call changed some doubles to CFAbsoluteTime remove build script that auto-incremented build number added hardened runtime
1 parent c263627 commit b5a1951

File tree

314 files changed

+7669
-3695
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

314 files changed

+7669
-3695
lines changed

Loader/Loader.xcodeproj/project.pbxproj

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@
116116
ORGANIZATIONNAME = "Bonzai Apps";
117117
TargetAttributes = {
118118
57115A041777B30100429015 = {
119+
DevelopmentTeam = 32SD394E9R;
120+
ProvisioningStyle = Automatic;
119121
SystemCapabilities = {
120122
com.apple.Sandbox = {
121123
enabled = 0;
@@ -129,6 +131,7 @@
129131
developmentRegion = English;
130132
hasScannedForEncodings = 0;
131133
knownRegions = (
134+
English,
132135
en,
133136
);
134137
mainGroup = 571159FC1777B30100429015;
@@ -248,11 +251,15 @@
248251
57115A231777B30100429015 /* Debug */ = {
249252
isa = XCBuildConfiguration;
250253
buildSettings = {
251-
CODE_SIGN_IDENTITY = "Developer ID Application";
254+
CODE_SIGN_IDENTITY = "Apple Development";
255+
CODE_SIGN_STYLE = Automatic;
252256
COMBINE_HIDPI_IMAGES = YES;
257+
DEVELOPMENT_TEAM = 32SD394E9R;
253258
INFOPLIST_FILE = "Loader/Loader-Info.plist";
254-
MACOSX_DEPLOYMENT_TARGET = 10.7;
259+
MACOSX_DEPLOYMENT_TARGET = 10.9;
260+
PRODUCT_BUNDLE_IDENTIFIER = com.bonzaiapps.loader;
255261
PRODUCT_NAME = "$(TARGET_NAME)";
262+
PROVISIONING_PROFILE_SPECIFIER = "";
256263
SKIP_INSTALL = YES;
257264
WRAPPER_EXTENSION = app;
258265
};
@@ -261,12 +268,16 @@
261268
57115A241777B30100429015 /* Release */ = {
262269
isa = XCBuildConfiguration;
263270
buildSettings = {
264-
CODE_SIGN_IDENTITY = "Developer ID Application";
271+
CODE_SIGN_IDENTITY = "Apple Development";
272+
CODE_SIGN_STYLE = Automatic;
265273
COMBINE_HIDPI_IMAGES = YES;
266274
COPY_PHASE_STRIP = NO;
275+
DEVELOPMENT_TEAM = 32SD394E9R;
267276
INFOPLIST_FILE = "Loader/Loader-Info.plist";
268-
MACOSX_DEPLOYMENT_TARGET = 10.7;
277+
MACOSX_DEPLOYMENT_TARGET = 10.9;
278+
PRODUCT_BUNDLE_IDENTIFIER = com.bonzaiapps.loader;
269279
PRODUCT_NAME = "$(TARGET_NAME)";
280+
PROVISIONING_PROFILE_SPECIFIER = "";
270281
SKIP_INSTALL = YES;
271282
WRAPPER_EXTENSION = app;
272283
};

Loader/Loader/Loader-Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<key>CFBundleIconFile</key>
1010
<string></string>
1111
<key>CFBundleIdentifier</key>
12-
<string>com.bonzaiapps.loader</string>
12+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
@@ -24,14 +24,14 @@
2424
<string>1</string>
2525
<key>LSApplicationCategoryType</key>
2626
<string>public.app-category.utilities</string>
27+
<key>LSBackgroundOnly</key>
28+
<true/>
2729
<key>LSMinimumSystemVersion</key>
2830
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
2931
<key>NSHumanReadableCopyright</key>
3032
<string>Copyright © 2015 Bonzai Apps. All rights reserved.</string>
3133
<key>NSMainNibFile</key>
3234
<string>MainMenu</string>
33-
<key>LSBackgroundOnly</key>
34-
<true/>
3535
<key>NSPrincipalClass</key>
3636
<string>NSApplication</string>
3737
</dict>

0 commit comments

Comments
 (0)