Skip to content

Commit 166c935

Browse files
committed
Bumped min OS req. to macOS 11 "Big Sur" - older nib files are now properly flattened, reducing app bundle size
1 parent 1bc63d4 commit 166c935

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Improved path bar contextual menu handling
99
* Minor interface tweaks and bug fixes
1010
* Code modernization
11+
* Now requires macOS 11 "Big Sur" or later
1112

1213
### 19/05/2025 - Version 3.4
1314

Sloth.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
425425
INFOPLIST_KEY_NSMainNibFile = MainMenu;
426426
INSTALL_PATH = "";
427-
MACOSX_DEPLOYMENT_TARGET = 10.13;
427+
MACOSX_DEPLOYMENT_TARGET = 11.5;
428428
MARKETING_VERSION = 3.4;
429429
OTHER_LDFLAGS = "-Wl,-rpath,@loader_path/../Frameworks";
430430
PRODUCT_BUNDLE_IDENTIFIER = org.sveinbjorn.Sloth;
@@ -466,7 +466,7 @@
466466
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
467467
INFOPLIST_KEY_NSMainNibFile = MainMenu;
468468
INSTALL_PATH = "";
469-
MACOSX_DEPLOYMENT_TARGET = 10.13;
469+
MACOSX_DEPLOYMENT_TARGET = 11.5;
470470
MARKETING_VERSION = 3.4;
471471
OTHER_LDFLAGS = "-Wl,-rpath,@loader_path/../Frameworks";
472472
PRODUCT_BUNDLE_IDENTIFIER = org.sveinbjorn.Sloth;
@@ -532,7 +532,7 @@
532532
INFOPLIST_EXPAND_BUILD_SETTINGS = YES;
533533
INFOPLIST_FILE = resources/Info.plist;
534534
INFOPLIST_KEY_NSMainNibFile = "";
535-
MACOSX_DEPLOYMENT_TARGET = 10.13;
535+
MACOSX_DEPLOYMENT_TARGET = 11.5;
536536
ONLY_ACTIVE_ARCH = YES;
537537
OTHER_CFLAGS = "-Wpartial-availability";
538538
OTHER_CODE_SIGN_FLAGS = "--options=runtime";
@@ -594,7 +594,7 @@
594594
INFOPLIST_EXPAND_BUILD_SETTINGS = YES;
595595
INFOPLIST_FILE = resources/Info.plist;
596596
INFOPLIST_KEY_NSMainNibFile = "";
597-
MACOSX_DEPLOYMENT_TARGET = 10.13;
597+
MACOSX_DEPLOYMENT_TARGET = 11.5;
598598
ONLY_ACTIVE_ARCH = NO;
599599
OTHER_CFLAGS = "-Wpartial-availability";
600600
OTHER_CODE_SIGN_FLAGS = "--options=runtime";

resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleVersion</key>
26-
<string>366</string>
26+
<string>367</string>
2727
<key>LSApplicationCategoryType</key>
2828
<string>public.app-category.utilities</string>
2929
<key>LSMinimumSystemVersion</key>
30-
<string>10.13</string>
30+
<string>11.0</string>
3131
<key>NSHumanReadableCopyright</key>
3232
<string>© 2004-2025 Sveinbjorn Thordarson. BSD License.</string>
3333
<key>NSMainNibFile</key>

resources/InfoPanel.xib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="24412" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
33
<dependencies>
4-
<deployment identifier="macosx"/>
4+
<deployment version="110000" identifier="macosx"/>
55
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="24412"/>
66
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
77
</dependencies>

resources/MainMenu.xib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="24412" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
33
<dependencies>
4-
<deployment identifier="macosx"/>
4+
<deployment version="110000" identifier="macosx"/>
55
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="24412"/>
66
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
77
</dependencies>

resources/Prefs.xib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="24412" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
33
<dependencies>
4-
<deployment identifier="macosx"/>
4+
<deployment version="110000" identifier="macosx"/>
55
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="24412"/>
66
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
77
</dependencies>

0 commit comments

Comments
 (0)