Skip to content

Commit 0d1272d

Browse files
committed
Renamed Timecode UT type
1 parent 5e1dd73 commit 0d1272d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Examples/Movie Timecode/Movie Timecode/App/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<key>UTTypeIcons</key>
1111
<dict/>
1212
<key>UTTypeIdentifier</key>
13-
<string>com.orchetect.TimecodeKit.timecode</string>
13+
<string>com.orchetect.timecode</string>
1414
<key>UTTypeTagSpecification</key>
1515
<dict/>
1616
</dict>

Examples/Timecode Math/Timecode Math/App/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<key>UTTypeIcons</key>
1111
<dict/>
1212
<key>UTTypeIdentifier</key>
13-
<string>com.orchetect.TimecodeKit.timecode</string>
13+
<string>com.orchetect.timecode</string>
1414
<key>UTTypeTagSpecification</key>
1515
<dict/>
1616
</dict>

Examples/Timecode UI/Timecode UI/App/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<key>UTTypeIcons</key>
1313
<dict/>
1414
<key>UTTypeIdentifier</key>
15-
<string>com.orchetect.TimecodeKit.timecode</string>
15+
<string>com.orchetect.timecode</string>
1616
<key>UTTypeTagSpecification</key>
1717
<dict/>
1818
</dict>

Sources/SwiftTimecodeCore/Documentation.docc/Timecode-Encoding.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To support exchange of ``Timecode`` instances, your app needs to export its UT T
1818
| Field | Content |
1919
| --- | --- |
2020
| Description | `Timecode` |
21-
| Identifier | `com.orchetect.TimecodeKit.timecode` |
21+
| Identifier | `com.orchetect.timecode` |
2222

2323
![Exported Types](app-target-exported-types.png)
2424

@@ -93,7 +93,7 @@ See the <doc:#Pasted-Timecode-Validation-Against-Local-Context> section on how t
9393
>
9494
> If SwiftUI view modifiers using `NSItemProviders` are invoked without exporting `Timecode`'s UT Type, this error will be thrown:
9595
>
96-
> `Type "com.orchetect.TimecodeKit.timecode" was expected to be declared and exported in the Info.plist of MyApp.app, but it was not found.`
96+
> `Type "com.orchetect.timecode" was expected to be declared and exported in the Info.plist of MyApp.app, but it was not found.`
9797
>
9898
> See the <doc:#UT-Types> section for information on how to export this type in your app.
9999
@@ -145,7 +145,7 @@ See the <doc:#Pasted-Timecode-Validation-Against-Local-Context> section on how t
145145
>
146146
> If SwiftUI view modifiers using the [`Transferable`](https://developer.apple.com/documentation/coretransferable/transferable) protocol are invoked without exporting `Timecode`'s UT Type, this error will be thrown:
147147
>
148-
> `Type "com.orchetect.TimecodeKit.timecode" was expected to be declared and exported in the Info.plist of MyApp.app, but it was not found.`
148+
> `Type "com.orchetect.timecode" was expected to be declared and exported in the Info.plist of MyApp.app, but it was not found.`
149149
>
150150
> See the <doc:#UT-Types> section for information on how to export this type in your app.
151151

Sources/SwiftTimecodeCore/Timecode/Encoding/UTType.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import UniformTypeIdentifiers
1010

1111
@available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)
1212
extension UTType {
13-
/// UT Type defined in TimecodeKit to globally identify ``Timecode`` instances.
14-
public static let timecode = UTType(exportedAs: "com.orchetect.TimecodeKit.timecode", conformingTo: .data)
13+
/// UT Type defined in swift-timecode to globally identify ``Timecode`` instances.
14+
public static let timecode = UTType(exportedAs: "com.orchetect.timecode", conformingTo: .data)
1515
}
1616

1717
@available(macOS 11.0, iOS 14.0, tvOS 14.0, watchOS 7.0, *)

0 commit comments

Comments
 (0)