This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build OMPitchAndRoll with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tichise/OMPitchAndRoll.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tichise/OMPitchAndRoll
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at bd8bac2 Update README.md
Cloned https://github.com/tichise/OMPitchAndRoll.git
Revision (git rev-parse @):
bd8bac238795050f16230fccdb61cbe98e9f5050
SUCCESS checkout https://github.com/tichise/OMPitchAndRoll.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/tichise/OMPitchAndRoll.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/5] Emitting module OMPitchAndRoll
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:11:20: error: 'View' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         |          `- error: 'View' is only available in macOS 10.15 or newer
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:5:6: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   |      `- error: 'Binding' is only available in macOS 10.15 or newer
 6 |     @Binding public var pitch: CGFloat
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:6:6: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
 6 |     @Binding public var pitch: CGFloat
   |      `- error: 'Binding' is only available in macOS 10.15 or newer
 7 |
 8 |     var rollString: String {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:16:23: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
14 |     }
15 |
16 |     public init(roll: Binding<CGFloat>, pitch: Binding<CGFloat>) {
   |            |          `- error: 'Binding' is only available in macOS 10.15 or newer
   |            `- note: add @available attribute to enclosing initializer
17 |         self._roll = roll
18 |         self._pitch = pitch
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:16:48: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
14 |     }
15 |
16 |     public init(roll: Binding<CGFloat>, pitch: Binding<CGFloat>) {
   |            |                                   `- error: 'Binding' is only available in macOS 10.15 or newer
   |            `- note: add @available attribute to enclosing initializer
17 |         self._roll = roll
18 |         self._pitch = pitch
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:21:27: error: 'View' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                |          `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:51:31: error: 'View' is only available in macOS 10.15 or newer
48 | }
49 |
50 | struct OMPitchAndRoll_Previews: PreviewProvider {
   |        `- note: add @available attribute to enclosing struct
51 |     static var previews: some View {
   |                |              `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add @available attribute to enclosing static property
52 |         VStack(spacing: 10) {
53 |             OMPitchAndRoll(roll: .constant(25), pitch: .constant(90))
[4/5] Compiling OMPitchAndRoll AnglePoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:11:20: error: 'View' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         |          `- error: 'View' is only available in macOS 10.15 or newer
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:12:9: error: 'Circle' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
   |         |- error: 'Circle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
13 |             .fill(Color.red)
14 |             .frame(width: 10, height: 10)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:13:14: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
   |              |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
   |              `- note: add 'if #available' version check
14 |             .frame(width: 10, height: 10)
15 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:13:19: error: 'Color' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
   |                   |- error: 'Color' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
14 |             .frame(width: 10, height: 10)
15 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:13:25: error: 'red' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
   |                         |- error: 'red' is only available in macOS 10.15 or newer
   |                         `- note: add 'if #available' version check
14 |             .frame(width: 10, height: 10)
15 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/AnglePoint.swift:14:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
 8 | import SwiftUI
 9 |
10 | struct AnglePoint: View {
   |        `- note: add @available attribute to enclosing struct
11 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
12 |         Circle()
13 |             .fill(Color.red)
14 |             .frame(width: 10, height: 10)
   |              |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
15 |     }
16 | }
[5/5] Compiling OMPitchAndRoll OMPitchAndRoll.swift
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:5:6: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   |      `- error: 'Binding' is only available in macOS 10.15 or newer
 6 |     @Binding public var pitch: CGFloat
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:6:6: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
 6 |     @Binding public var pitch: CGFloat
   |      `- error: 'Binding' is only available in macOS 10.15 or newer
 7 |
 8 |     var rollString: String {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:16:23: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
14 |     }
15 |
16 |     public init(roll: Binding<CGFloat>, pitch: Binding<CGFloat>) {
   |            |          `- error: 'Binding' is only available in macOS 10.15 or newer
   |            `- note: add @available attribute to enclosing initializer
17 |         self._roll = roll
18 |         self._pitch = pitch
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:16:48: error: 'Binding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
14 |     }
15 |
16 |     public init(roll: Binding<CGFloat>, pitch: Binding<CGFloat>) {
   |            |                                   `- error: 'Binding' is only available in macOS 10.15 or newer
   |            `- note: add @available attribute to enclosing initializer
17 |         self._roll = roll
18 |         self._pitch = pitch
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:21:27: error: 'View' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                |          `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:51:31: error: 'View' is only available in macOS 10.15 or newer
48 | }
49 |
50 | struct OMPitchAndRoll_Previews: PreviewProvider {
   |        `- note: add @available attribute to enclosing struct
51 |     static var previews: some View {
   |                |              `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add @available attribute to enclosing static property
52 |         VStack(spacing: 10) {
53 |             OMPitchAndRoll(roll: .constant(25), pitch: .constant(90))
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:22:9: error: 'HStack' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
   |         |- error: 'HStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:23:13: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
24 |
25 |             Text("Roll -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:23:30: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   |                              |- error: 'font' is only available in macOS 10.15 or newer
   |                              `- note: add 'if #available' version check
24 |
25 |             Text("Roll -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:23:36: error: 'body' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   |                                    |- error: 'body' is only available in macOS 10.15 or newer
   |                                    `- note: add 'if #available' version check
24 |
25 |             Text("Roll -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:23:42: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   |                                          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |                                          `- note: add 'if #available' version check
24 |
25 |             Text("Roll -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:23:71: error: 'center' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   |                                                                       |- error: 'center' is only available in macOS 10.15 or newer
   |                                                                       `- note: add 'if #available' version check
24 |
25 |             Text("Roll -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:25:13: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
25 |             Text("Roll -").font(.caption2)
   |             |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |             `- note: add 'if #available' version check
26 |
27 |             VStack {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:25:13: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
25 |             Text("Roll -").font(.caption2)
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
26 |
27 |             VStack {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:25:28: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
25 |             Text("Roll -").font(.caption2)
   |                            |- error: 'font' is only available in macOS 10.15 or newer
   |                            `- note: add 'if #available' version check
26 |
27 |             VStack {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:25:34: error: 'caption2' is only available in macOS 11.0 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
25 |             Text("Roll -").font(.caption2)
   |                                  |- error: 'caption2' is only available in macOS 11.0 or newer
   |                                  `- note: add 'if #available' version check
26 |
27 |             VStack {
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:27:13: error: 'VStack' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
25 |             Text("Roll -").font(.caption2)
26 |
27 |             VStack {
   |             |- error: 'VStack' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
28 |                 Text(pitchString).font(.body)
29 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:28:17: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
26 |
27 |             VStack {
28 |                 Text(pitchString).font(.body)
   |                 |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                 `- note: add 'if #available' version check
29 |
30 |                 Text("Pitch -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:28:17: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
26 |
27 |             VStack {
28 |                 Text(pitchString).font(.body)
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
29 |
30 |                 Text("Pitch -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:28:35: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
26 |
27 |             VStack {
28 |                 Text(pitchString).font(.body)
   |                                   |- error: 'font' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
29 |
30 |                 Text("Pitch -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:28:41: error: 'body' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
26 |
27 |             VStack {
28 |                 Text(pitchString).font(.body)
   |                                         |- error: 'body' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
29 |
30 |                 Text("Pitch -").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:30:17: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
28 |                 Text(pitchString).font(.body)
29 |
30 |                 Text("Pitch -").font(.caption2)
   |                 |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                 `- note: add 'if #available' version check
31 |                 ZStack {
32 |                     Rectangle()
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:30:17: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
28 |                 Text(pitchString).font(.body)
29 |
30 |                 Text("Pitch -").font(.caption2)
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
31 |                 ZStack {
32 |                     Rectangle()
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:30:33: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
28 |                 Text(pitchString).font(.body)
29 |
30 |                 Text("Pitch -").font(.caption2)
   |                                 |- error: 'font' is only available in macOS 10.15 or newer
   |                                 `- note: add 'if #available' version check
31 |                 ZStack {
32 |                     Rectangle()
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:30:39: error: 'caption2' is only available in macOS 11.0 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
28 |                 Text(pitchString).font(.body)
29 |
30 |                 Text("Pitch -").font(.caption2)
   |                                       |- error: 'caption2' is only available in macOS 11.0 or newer
   |                                       `- note: add 'if #available' version check
31 |                 ZStack {
32 |                     Rectangle()
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:31:17: error: 'ZStack' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
29 |
30 |                 Text("Pitch -").font(.caption2)
31 |                 ZStack {
   |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:32:21: error: 'Rectangle' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
30 |                 Text("Pitch -").font(.caption2)
31 |                 ZStack {
32 |                     Rectangle()
   |                     |- error: 'Rectangle' is only available in macOS 10.15 or newer
   |                     `- note: add 'if #available' version check
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
34 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:26: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |                          `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:57: error: 'foregroundColor' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                                                         |- error: 'foregroundColor' is only available in macOS 10.15 or newer
   |                                                         `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:74: error: 'white' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                                                                          |- error: 'white' is only available in macOS 10.15 or newer
   |                                                                          `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:81: error: 'border(_:width:)' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                                                                                 |- error: 'border(_:width:)' is only available in macOS 10.15 or newer
   |                                                                                 `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:88: error: 'Color' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                                                                                        |- error: 'Color' is only available in macOS 10.15 or newer
   |                                                                                        `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:33:94: error: 'black' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
31 |                 ZStack {
32 |                     Rectangle()
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
   |                                                                                              |- error: 'black' is only available in macOS 10.15 or newer
   |                                                                                              `- note: add 'if #available' version check
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:35:34: error: 'offset(x:y:)' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
33 |                         .frame(width: 150, height: 150).foregroundColor(.white).border(Color.black)
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
   |                                  |- error: 'offset(x:y:)' is only available in macOS 10.15 or newer
   |                                  `- note: add 'if #available' version check
36 |                 }.padding(10)
37 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:36:19: error: 'padding' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
34 |
35 |                     AnglePoint().offset(x: roll, y: pitch)
36 |                 }.padding(10)
   |                   |- error: 'padding' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
37 |
38 |                 Text("Pitch +").font(.caption2)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:38:17: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
36 |                 }.padding(10)
37 |
38 |                 Text("Pitch +").font(.caption2)
   |                 |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                 `- note: add 'if #available' version check
39 |
40 |                 Text(pitchString).font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:38:17: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
36 |                 }.padding(10)
37 |
38 |                 Text("Pitch +").font(.caption2)
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
39 |
40 |                 Text(pitchString).font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:38:33: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
36 |                 }.padding(10)
37 |
38 |                 Text("Pitch +").font(.caption2)
   |                                 |- error: 'font' is only available in macOS 10.15 or newer
   |                                 `- note: add 'if #available' version check
39 |
40 |                 Text(pitchString).font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:38:39: error: 'caption2' is only available in macOS 11.0 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
36 |                 }.padding(10)
37 |
38 |                 Text("Pitch +").font(.caption2)
   |                                       |- error: 'caption2' is only available in macOS 11.0 or newer
   |                                       `- note: add 'if #available' version check
39 |
40 |                 Text(pitchString).font(.body)
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:40:17: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
38 |                 Text("Pitch +").font(.caption2)
39 |
40 |                 Text(pitchString).font(.body)
   |                 |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                 `- note: add 'if #available' version check
41 |
42 |             }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:40:17: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
38 |                 Text("Pitch +").font(.caption2)
39 |
40 |                 Text(pitchString).font(.body)
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
41 |
42 |             }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:40:35: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
38 |                 Text("Pitch +").font(.caption2)
39 |
40 |                 Text(pitchString).font(.body)
   |                                   |- error: 'font' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
41 |
42 |             }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:40:41: error: 'body' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
38 |                 Text("Pitch +").font(.caption2)
39 |
40 |                 Text(pitchString).font(.body)
   |                                         |- error: 'body' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
41 |
42 |             }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:27:20: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
25 |             Text("Roll -").font(.caption2)
26 |
27 |             VStack {
   |                    |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                    `- note: add 'if #available' version check
28 |                 Text(pitchString).font(.body)
29 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:27:20: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
25 |             Text("Roll -").font(.caption2)
26 |
27 |             VStack {
   |                    |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                    `- note: add 'if #available' version check
28 |                 Text(pitchString).font(.body)
29 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:27:20: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
25 |             Text("Roll -").font(.caption2)
26 |
27 |             VStack {
   |                    |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                    `- note: add 'if #available' version check
28 |                 Text(pitchString).font(.body)
29 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:27:20: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
25 |             Text("Roll -").font(.caption2)
26 |
27 |             VStack {
   |                    |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                    `- note: add 'if #available' version check
28 |                 Text(pitchString).font(.body)
29 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:44:13: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
42 |             }
43 |
44 |             Text("Roll +").font(.caption2)
   |             |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |             `- note: add 'if #available' version check
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:44:13: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
42 |             }
43 |
44 |             Text("Roll +").font(.caption2)
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:44:28: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
42 |             }
43 |
44 |             Text("Roll +").font(.caption2)
   |                            |- error: 'font' is only available in macOS 10.15 or newer
   |                            `- note: add 'if #available' version check
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:44:34: error: 'caption2' is only available in macOS 11.0 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
42 |             }
43 |
44 |             Text("Roll +").font(.caption2)
   |                                  |- error: 'caption2' is only available in macOS 11.0 or newer
   |                                  `- note: add 'if #available' version check
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:45:13: error: 'Text' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
43 |
44 |             Text("Roll +").font(.caption2)
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
46 |         }
47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:45:30: error: 'font' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
43 |
44 |             Text("Roll +").font(.caption2)
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
   |                              |- error: 'font' is only available in macOS 10.15 or newer
   |                              `- note: add 'if #available' version check
46 |         }
47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:45:36: error: 'body' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
43 |
44 |             Text("Roll +").font(.caption2)
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
   |                                    |- error: 'body' is only available in macOS 10.15 or newer
   |                                    `- note: add 'if #available' version check
46 |         }
47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:45:42: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
43 |
44 |             Text("Roll +").font(.caption2)
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
   |                                          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |                                          `- note: add 'if #available' version check
46 |         }
47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:45:93: error: 'center' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
   :
43 |
44 |             Text("Roll +").font(.caption2)
45 |             Text(rollString).font(.body).frame(width: 30, alignment: /*@START_MENU_TOKEN@*/.center/*@END_MENU_TOKEN@*/)
   |                                                                                             |- error: 'center' is only available in macOS 10.15 or newer
   |                                                                                             `- note: add 'if #available' version check
46 |         }
47 |     }
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:22:16: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
   |                |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                `- note: add 'if #available' version check
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:22:16: warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
 1 | import SwiftUI
 2 |
 3 | public struct OMPitchAndRoll: View {
   |               `- note: add @available attribute to enclosing struct
 4 |
 5 |     @Binding public var roll: CGFloat
   :
19 |     }
20 |
21 |     public var body: some View {
   |                `- note: add @available attribute to enclosing property
22 |         HStack {
   |                |- warning: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer; this is an error in the Swift 6 language mode
   |                `- note: add 'if #available' version check
23 |             Text(rollString).font(.body).frame(width: 30, alignment: .center)
24 |
/Users/admin/builder/spi-builder-workspace/Sources/OMPitchAndRoll/OMPitchAndRoll.swift:52:9: error: 'VStack' is only available in macOS 10.15 or newer
48 | }
49 |
50 | struct OMPitchAndRoll_Previews: PreviewProvider {
   |        `- note: add @available attribute to enclosing struct
51 |     static var previews: some View {
   |                `- note: add @available attribute to enclosing static property
52 |         VStack(spacing: 10) {
   |         |- error: 'VStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
53 |             OMPitchAndRoll(roll: .constant(25), pitch: .constant(90))
54 |         }
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.