Skip to content

Commit

Permalink
Updated to version 1.2.6 (632)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
BonzaiThePenguin committed Nov 17, 2020
1 parent c263627 commit b5a1951
Show file tree
Hide file tree
Showing 314 changed files with 7,669 additions and 3,695 deletions.
19 changes: 15 additions & 4 deletions Loader/Loader.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@
ORGANIZATIONNAME = "Bonzai Apps";
TargetAttributes = {
57115A041777B30100429015 = {
DevelopmentTeam = 32SD394E9R;
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.Sandbox = {
enabled = 0;
Expand All @@ -129,6 +131,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = 571159FC1777B30100429015;
Expand Down Expand Up @@ -248,11 +251,15 @@
57115A231777B30100429015 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 32SD394E9R;
INFOPLIST_FILE = "Loader/Loader-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.7;
MACOSX_DEPLOYMENT_TARGET = 10.9;
PRODUCT_BUNDLE_IDENTIFIER = com.bonzaiapps.loader;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
WRAPPER_EXTENSION = app;
};
Expand All @@ -261,12 +268,16 @@
57115A241777B30100429015 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEVELOPMENT_TEAM = 32SD394E9R;
INFOPLIST_FILE = "Loader/Loader-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.7;
MACOSX_DEPLOYMENT_TARGET = 10.9;
PRODUCT_BUNDLE_IDENTIFIER = com.bonzaiapps.loader;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SKIP_INSTALL = YES;
WRAPPER_EXTENSION = app;
};
Expand Down
6 changes: 3 additions & 3 deletions Loader/Loader/Loader-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.bonzaiapps.loader</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand All @@ -24,14 +24,14 @@
<string>1</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSBackgroundOnly</key>
<true/>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2015 Bonzai Apps. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>LSBackgroundOnly</key>
<true/>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
Expand Down
Loading

0 comments on commit b5a1951

Please sign in to comment.