Change deployment target back to 10.15
This commit is contained in:
parent
6f2b98ac31
commit
70555eb317
|
@ -933,7 +933,7 @@
|
|||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.16;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.15;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = net.shadowfacts.Gemini;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_VERSION = 5.0;
|
||||
|
@ -958,7 +958,7 @@
|
|||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.16;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.15;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = net.shadowfacts.Gemini;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SWIFT_VERSION = 5.0;
|
||||
|
|
|
@ -99,7 +99,11 @@ extension BrowserWindowController: NSToolbarDelegate {
|
|||
|
||||
private func createBackToolbarItem() -> NSToolbarItem {
|
||||
let item = NSToolbarItem(itemIdentifier: .goBack)
|
||||
item.image = NSImage(systemSymbolName: "chevron.left", accessibilityDescription: "Go Back")
|
||||
if #available(macOS 10.16, *) {
|
||||
item.image = NSImage(systemSymbolName: "chevron.left", accessibilityDescription: "Go Back")
|
||||
} else {
|
||||
item.image = NSImage(named: NSImage.goBackTemplateName)
|
||||
}
|
||||
item.label = "Go Back"
|
||||
item.paletteLabel = "Go Back"
|
||||
item.toolTip = "Go to the previous page"
|
||||
|
@ -114,7 +118,11 @@ extension BrowserWindowController: NSToolbarDelegate {
|
|||
|
||||
private func createForwardToolbarItem() -> NSToolbarItem {
|
||||
let item = NSToolbarItem(itemIdentifier: .goForward)
|
||||
item.image = NSImage(systemSymbolName: "chevron.right", accessibilityDescription: "Go Forward")
|
||||
if #available(macOS 10.16, *) {
|
||||
item.image = NSImage(systemSymbolName: "chevron.right", accessibilityDescription: "Go Forward")
|
||||
} else {
|
||||
item.image = NSImage(named: NSImage.goForwardTemplateName)
|
||||
}
|
||||
item.label = "Go Forward"
|
||||
item.paletteLabel = "Go Forward"
|
||||
item.toolTip = "Go to the next page"
|
||||
|
|
Loading…
Reference in New Issue