Skip to content

Commit

Permalink
CHANGELOG updated for v0.1.4. (#44)
Browse files Browse the repository at this point in the history
Additionally, the README and examples have been updated.
  • Loading branch information
mdwn authored Nov 26, 2024
1 parent 4bf7481 commit a5907e7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4] - Track mapping update, status reporting, stopping fix.

(Breaking Change) Track mappings now support mapping to multiple channels.

Status reporting is now configurable.
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,17 @@ controller:

# Mappings of track names to output channels.
track_mappings:
click: 1
cue: 2
backing-track-l: 3
backing-track-r: 4
keys: 5
click:
- 1
cue:
- 2
backing-track-l:
- 3
backing-track-r:
- 4
keys:
- 5
- 6
```
You can start `mtrack` as a process with `mtrack start /path/to/player.yaml /path/to/playlist.yaml`.
Expand Down
16 changes: 11 additions & 5 deletions examples/mtrack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,14 @@ controller:

# Mappings of track names to output channels.
track_mappings:
click: 1
cue: 2
backing-track-l: 3
backing-track-r: 4
keys: 5
click:
- 1
cue:
- 2
backing-track-l:
- 3
backing-track-r:
- 4
keys:
- 5
- 6

0 comments on commit a5907e7

Please sign in to comment.