Update target deployment to macOS 14

This commit is contained in:
1024jp 2024-04-21 00:15:55 +09:00
parent a07d5c1fb7
commit c3b95d943a
5 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
deployment_target:
macOS_deployment_target: 13
macOS_deployment_target: 14
excluded:
- "*/.build"

View File

@ -3,6 +3,10 @@
4.9.0 (unreleased)
--------------------------
### Improvements
- Change the system requirement to __macOS 14 Sonoma and later__.
4.8.3 (unreleased)

View File

@ -3709,7 +3709,6 @@
baseConfigurationReference = 5454B92B243C8257009275BC /* UI-Tests.xcconfig */;
buildSettings = {
GENERATE_INFOPLIST_FILE = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
PRODUCT_BUNDLE_IDENTIFIER = com.wolfrosch.CotEditorUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = CotEditor;
@ -3721,7 +3720,6 @@
baseConfigurationReference = 5454B92B243C8257009275BC /* UI-Tests.xcconfig */;
buildSettings = {
GENERATE_INFOPLIST_FILE = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
PRODUCT_BUNDLE_IDENTIFIER = com.wolfrosch.CotEditorUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = CotEditor;
@ -3768,7 +3766,6 @@
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GENERATE_INFOPLIST_FILE = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
PRODUCT_BUNDLE_IDENTIFIER = com.coteditor.CotEditorTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CotEditor.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/CotEditor";
@ -3781,7 +3778,6 @@
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GENERATE_INFOPLIST_FILE = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
PRODUCT_BUNDLE_IDENTIFIER = com.coteditor.CotEditorTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CotEditor.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/CotEditor";
@ -3875,7 +3871,7 @@
"@executable_path/../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
@ -3940,7 +3936,7 @@
"@executable_path/../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "-enable-upcoming-feature ConciseMagicFile -enable-upcoming-feature ExistentialAny -enable-upcoming-feature ForwardTrailingClosures -enable-upcoming-feature ImplicitOpenExistentials -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature IsolatedDefaultValues -enable-upcoming-feature GlobalConcurrency";

View File

@ -2,7 +2,7 @@
CotEditor is a lightweight plain-text editor for macOS. The project aims to provide a general plain-text editor for everyone with an intuitive macOS-native user interface.
- __Requirement__: macOS 13 Ventura or later
- __Requirement__: macOS 14 Sonoma or later
- __Web Site__: <https://coteditor.com>
- __Mac App Store__: <https://itunes.apple.com/app/coteditor/id1024640650?ls=1>
- __Languages__: English, Czech, Dutch, French, German, Italian, Japanese, Portuguese, Spanish, Simplified Chinese, Traditional Chinese, Turkish

View File

@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "SyntaxMap",
platforms: [
.macOS(.v13),
.macOS(.v14),
],
products: [
.library(name: "SyntaxMap", targets: ["SyntaxMap"]),