Skip to content

Commit 1ec5ce7

Browse files
committed
Updated swift-timecode nomenclature to SwiftTimecode in docs and sources
1 parent 9fe5e76 commit 1ec5ce7

19 files changed

Lines changed: 24 additions & 24 deletions

File tree

Docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# swift-timecode DocC Generation
1+
# SwiftTimecode DocC Generation
22

33
## Build and Publish
44

Examples/Timecode UI/Timecode UI/Demo Views/TimecodeTextDemoView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct TimecodeTextDemoView: View {
4646
GridRow {
4747
Image(systemName: "lightbulb.fill")
4848
Text(
49-
"Note that to allow drag & drop or copy & paste, your app must export Timecode's UT Type by adding it to the Info.plist. See swift-timecode documentation for more details."
49+
"Note that to allow drag & drop or copy & paste, your app must export Timecode's UT Type by adding it to the Info.plist. See the SwiftTimecode documentation for more details."
5050
)
5151
}
5252
}

Sources/SwiftTimecode/Documentation.docc/Getting-Started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
Documentation and guides to get the most out of swift-timecode.
3+
Documentation and guides to get the most out of SwiftTimecode.
44

55
## Import
66

@@ -20,7 +20,7 @@ import SwiftTimecodeAV
2020
import SwiftTimecodeUI
2121
```
2222

23-
## Using swift-timecode
23+
## Using SwiftTimecode
2424

2525
The documentation page for <doc://SwiftTimecode/SwiftTimecodeCore/Timecode-swift.struct> provides a quick overview of how to form timecode and convert to/from various other time values.
2626

Sources/SwiftTimecode/Documentation.docc/LTC-Linear-Timecode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LTC is an encoding of SMPTE timecode data in an audio signal, as defined in SMPT
66

77
This library does not implement LTC encoding or decoding directly.
88

9-
Support may be added in future versions of swift-timecode, or possibly in an audio library such as AudioKit.
9+
Support may be added in future versions of SwiftTimecode, or possibly in an audio library such as AudioKit.
1010

1111
## References
1212

Sources/SwiftTimecode/Documentation.docc/MTC-MIDI-Timecode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MIDI Timecode is a device synchronization protocol that encodes SPMTE timecode u
77
This library does not implement MTC encoding or decoding directly.
88

99
Instead, [SwiftMIDI](https://github.com/orchetect/swift-midi) (an open-source Swift MIDI I/O package for all Apple platforms) implements MTC encoding/decoding.
10-
It imports swift-timecode as a dependency and uses <doc://SwiftTimecode/SwiftTimecodeCore/Timecode-swift.struct> and <doc://SwiftTimecode/SwiftTimecodeCore/TimecodeFrameRate-swift.enum> as data structures.
10+
It imports SwiftTimecode as a dependency and uses <doc://SwiftTimecode/SwiftTimecodeCore/Timecode-swift.struct> and <doc://SwiftTimecode/SwiftTimecodeCore/TimecodeFrameRate-swift.enum> as data structures.
1111

1212
## References
1313

Sources/SwiftTimecode/Documentation.docc/TimecodeKit-1-Migration-Guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# TimecodeKit 1 to swift-timecode 3 Migration Guide
1+
# TimecodeKit 1 to SwiftTimecode 3 Migration Guide
22

3-
API changes from **TimecodeKit** 1.x to **swift-timecode** 3.
3+
API changes from **TimecodeKit** 1.x to **SwiftTimecode** 3.
44

55
This guide is designed to assist in migrating projects currently using TimecodeKit 1.x. While not exhaustive, this guide covers the major API and workflow changes.
66

Sources/SwiftTimecode/SwiftTimecode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// © 2026 Steffan Andrews • Licensed under MIT License
55
//
66

7-
// Welcome to swift-timecode :)
7+
// Welcome to SwiftTimecode :)
88

99
@_documentation(visibility: internal)
1010
@_exported import SwiftTimecodeCore

Sources/SwiftTimecodeAV/Documentation.docc/AVAsset-Timecode-Track.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
Manipulating timecode track(s) for movie assets in AVFoundation.
44

5-
swift-timecode provides a full suite of methods to read and write timecode track(s) in a QuickTime movie file when working with AVFoundation.
5+
SwiftTimecode provides a full suite of methods to read and write timecode track(s) in a QuickTime movie file when working with AVFoundation.
66

77
## Read Timecode from QuickTime Movie
88

9-
Simple methods to read start timecode and duration from `AVAsset` and its subclasses (`AVMovie`) as well as `AVAssetTrack` are provided by swift-timecode.
9+
Simple methods to read start timecode and duration from `AVAsset` and its subclasses (`AVMovie`) as well as `AVAssetTrack` are provided by SwiftTimecode.
1010
The methods are throwing since timecode information is not guaranteed to be present inside movie files.
1111

1212
```swift

Sources/SwiftTimecodeAV/SwiftTimecodeAV.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// © 2026 Steffan Andrews • Licensed under MIT License
55
//
66

7-
// Welcome to swift-timecode :)
7+
// Welcome to SwiftTimecode :)
88

99
@_documentation(visibility: internal)
1010
@_exported import SwiftTimecodeCore

Sources/SwiftTimecodeCore/API Evolution/SwiftTimecodeCore-API-2.3.0.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import Foundation
88

9-
// MARK: API Changes in swift-timecode 2.3.0
9+
// MARK: API Changes in SwiftTimecode 2.3.0
1010

1111
#if canImport(UniformTypeIdentifiers) && canImport(CoreTransferable)
1212
@_documentation(visibility: internal)

0 commit comments

Comments
 (0)