Skip to content

Commit 5fadb9a

Browse files
committed
Merge branch 'develop' into main
2 parents 44cdd48 + 4ce2f5b commit 5fadb9a

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Quick Symlink is a `Finder extension` which provides a `contextual menu ite
66

77
[![license](https://img.shields.io/badge/license-MIT-informational?style=flat-square)](LICENSE) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?style=flat-square)](CODE_OF_CONDUCT.md)
88

9-
[![platform](https://img.shields.io/badge/platform-OS_X_10.11+-important?style=flat-square)](https://en.wikipedia.org/wiki/Computing_platform)
9+
[![platform](https://img.shields.io/badge/platform-macOS_10.14+-important?style=flat-square)](https://en.wikipedia.org/wiki/Computing_platform)
1010

1111
---
1212

@@ -59,12 +59,12 @@ These instructions allow to get a copy of this project and run it on a local mac
5959

6060
Before using it, make sure that follows software are installed on the local machine:
6161

62-
- **[OS X 10.11+](https://www.apple.com/ru/macos/what-is/)** - the operating system under which the extention is executing.
62+
- **[macOS 10.14+](https://www.apple.com/ru/macos/what-is/)** - the operating system under which the extention is executing.
6363

6464
If any of the listed programs is not installed, then it can be installed by instruction as described below.
6565

66-
1. #### OS X 10.11+
67-
- Install OS X 10.11+ by [this](https://support.apple.com/ht201372) instruction.
66+
1. #### macOS 10.14+
67+
- Install macOS 10.14+ by [this](https://support.apple.com/ht201372) instruction.
6868

6969
### Installing
7070

quick-symlink.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
"$(inherited)",
379379
"@executable_path/../Frameworks",
380380
);
381-
MACOSX_DEPLOYMENT_TARGET = 10.15;
381+
MACOSX_DEPLOYMENT_TARGET = 10.11;
382382
PRODUCT_BUNDLE_IDENTIFIER = "org.ololx.quick-symlink";
383383
PRODUCT_NAME = "$(TARGET_NAME)";
384384
SWIFT_VERSION = 5.0;
@@ -402,7 +402,7 @@
402402
"$(inherited)",
403403
"@executable_path/../Frameworks",
404404
);
405-
MACOSX_DEPLOYMENT_TARGET = 10.15;
405+
MACOSX_DEPLOYMENT_TARGET = 10.11;
406406
PRODUCT_BUNDLE_IDENTIFIER = "org.ololx.quick-symlink";
407407
PRODUCT_NAME = "$(TARGET_NAME)";
408408
SWIFT_VERSION = 5.0;

quick-symlink/AppDelegate.swift

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ class AppDelegate: NSObject, NSApplicationDelegate {
1717
func applicationDidFinishLaunching(_ aNotification: Notification) {
1818

1919
// Show extensions, if FinderUtilities is not approved
20-
if !FIFinderSyncController.isExtensionEnabled {
21-
FIFinderSyncController.showExtensionManagementInterface()
20+
if #available(OSX 10.14, *) {
21+
if !FIFinderSyncController.isExtensionEnabled {
22+
FIFinderSyncController.showExtensionManagementInterface()
23+
}
24+
} else {
25+
// Fallback on earlier versions
2226
}
2327

2428
// Terminate the application, as it is not needed anymore

0 commit comments

Comments
 (0)