Skip to content

Commit

Permalink
0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Nov 23, 2023
1 parent 3f2304f commit 6d9e521
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MarkersExtractor Change Log

## 0.2.5
## 0.2.5(https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.2.5) (2023-11-22)

### Changes

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ let package = Package(
.package(url: "https://github.com/apple/swift-collections.git", from: "1.0.0"),
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.7"),
.package(url: "https://github.com/orchetect/TimecodeKit.git", from: "2.0.6"),
.package(url: "https://github.com/orchetect/DAWFileKit.git", from: "0.3.0")
.package(url: "https://github.com/orchetect/DAWFileKit.git", branch: "main") // from: "0.3.0")
],
targets: [
.target(
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@

### Pre-compiled Binary (Recommended)

Download the latest release of the CLI universal binary [here](https://github.com/TheAcharya/MarkersExtractor/releases/download/0.2.4/markers-extractor-cli-0.2.4.zip).
Download the latest release of the CLI universal binary [here](https://github.com/TheAcharya/MarkersExtractor/releases/download/0.2.5/markers-extractor-cli-0.2.5.zip).

### From Source

```shell
VERSION=0.2.4 # replace this with the git tag of the version you need
VERSION=0.2.5 # replace this with the git tag of the version you need
git clone https://github.com/TheAcharya/MarkersExtractor.git
cd MarkersExtractor
git checkout "tags/$VERSION"
Expand Down Expand Up @@ -111,7 +111,7 @@ OPTIONS:
--exclude-exclusive-roles <video, audio>
Exclude markers that have specified role type but
only if the opposite role type is absent.
--label <id, name, type, checked, status, notes, position, clipName, clipDuration, videoRole, audioRole, eventName, projectName, libraryName, iconImage, imageFileName>
--label <id, name, type, checked, status, notes, position, clipType, clipName, clipDuration, videoRole, audioRole, eventName, projectName, libraryName, iconImage, imageFileName>
Label to overlay on thumb images. This argument can
be supplied more than once to apply multiple labels.
--label-copyright <text>
Expand Down
2 changes: 1 addition & 1 deletion Sources/markers-extractor-cli/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

/// Static CLI version number stored in its own file to allow for easier modification by automated
/// build tools.
let cliVersion = "0.2.4"
let cliVersion = "0.2.5"

0 comments on commit 6d9e521

Please sign in to comment.