-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: toneJson and dump command
- Loading branch information
Showing
7 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Release Notes | ||
|
||
## Fixed | ||
|
||
- `RecordingDate` now works as expected and not be limited to year only | ||
- `Description` now works in iTunes | ||
|
||
Thanks to @Zeugma440 for his efforts to fix [atldotnet 155] | ||
|
||
## Changed | ||
|
||
- Extracted `Sandreas.AudioMetadata` library to keep the code small, clean and reusable | ||
|
||
## Added | ||
|
||
- Apache`LICENSE` document | ||
- `tone.json` format now contains `file` and `audio` container when using `dump` command | ||
|
||
## known issues | ||
|
||
The following issues are known, part of an external library and already reported: | ||
|
||
- flag options (e.g. `--dry-run`) cannot be followed by arguments (e.g. `tone tag --meta-album="album" --dry-run input.mp3`) ([spectre.console 825]) | ||
- workaround: append flag options at the end (`tone tag --meta-album="album" input.mp3 --dry-run`) | ||
- `--meta-*` options cannot be set to empty values ([spectre.console 842]) | ||
- workaround: use `--meta-remove-property` instead | ||
- Value starting with `-` is mistreated as extra option (e.g. `--meta-description "-5 degrees"`) ([spectre.console 890]) | ||
- workaround: use `--meta-description="-5 degrees"` instead (with `=`) | ||
- Invalid handling of parameter values starting with double quotes ("), e.g. `--meta-description'"quoted" value'` ([spectre.console 891]) | ||
|
||
[spectre.console 825]: https://github.com/spectreconsole/spectre.console/issues/825 | ||
[spectre.console 842]: https://github.com/spectreconsole/spectre.console/issues/842 | ||
[spectre.console 890]: https://github.com/spectreconsole/spectre.console/issues/890 | ||
[spectre.console 891]: https://github.com/spectreconsole/spectre.console/issues/891 | ||
[atldotnet 155]: https://github.com/Zeugma440/atldotnet/issues/155 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters