File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Sources/GutenbergKit/Sources Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import PackageDescription
5
5
6
6
let package = Package (
7
7
name: " GutenbergKit " ,
8
- platforms: [ . iOS( . v15 ) , . macOS( . v14) ] ,
8
+ platforms: [ . iOS( . v17 ) , . macOS( . v14) ] ,
9
9
products: [
10
10
. library( name: " GutenbergKit " , targets: [ " GutenbergKit " ] )
11
11
] ,
Original file line number Diff line number Diff line change 309
309
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
310
310
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
311
311
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
312
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
312
313
LD_RUNPATH_SEARCH_PATHS = (
313
314
"$(inherited)",
314
315
"@executable_path/Frameworks",
340
341
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
341
342
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
342
343
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
344
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
343
345
LD_RUNPATH_SEARCH_PATHS = (
344
346
"$(inherited)",
345
347
"@executable_path/Frameworks",
Original file line number Diff line number Diff line change @@ -91,10 +91,7 @@ private struct _EditorView: UIViewControllerRepresentable {
91
91
func makeUIViewController( context: Context ) -> EditorViewController {
92
92
let viewController = EditorViewController ( configuration: configuration)
93
93
viewController. delegate = context. coordinator
94
-
95
- if #available( iOS 16 . 4 , * ) {
96
- viewController. webView. isInspectable = true
97
- }
94
+ viewController. webView. isInspectable = true
98
95
viewController. startEditorSetup ( )
99
96
return viewController
100
97
}
Original file line number Diff line number Diff line change 1
1
import Foundation
2
2
3
- public struct EditorConfiguration {
3
+ public struct EditorConfiguration : Sendable {
4
4
/// Initial title for populating the editor
5
5
public let title : String
6
6
/// Initial content for populating the editor
You can’t perform that action at this time.
0 commit comments