mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
0.19.1
This commit is contained in:
parent
79510821d6
commit
e0bea0c21a
5 changed files with 24 additions and 20 deletions
|
@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.19.1] - 2024-04-26
|
||||
|
||||
### Added
|
||||
- **Truncate**: `impl<T: Truncate> Truncate for &mut T` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/384))
|
||||
- **Length**: `impl<T: Length> Truncate for &T` ([PR](https://github.com/Serial-ATA/lofty-rs/pull/384))
|
||||
|
@ -724,7 +726,8 @@ See [ogg_pager's changelog](ogg_pager/CHANGELOG.md).
|
|||
### Removed
|
||||
- `ErrorKind::BadExtension`
|
||||
|
||||
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...HEAD
|
||||
[Unreleased]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.1...HEAD
|
||||
[0.19.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.19.0...0.19.1
|
||||
[0.19.0]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.2...0.19.0
|
||||
[0.18.2]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.1...0.18.2
|
||||
[0.18.1]: https://github.com/Serial-ATA/lofty-rs/compare/0.18.0...0.18.1
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
| File Format | Metadata Format(s) |
|
||||
|-------------|------------------------------|
|
||||
| AAC (ADTS) | `ID3v2`, `ID3v1` |
|
||||
| Ape | `APE`, `ID3v2`\*, `ID3v1` |
|
||||
| AIFF | `ID3v2`, `Text Chunks` |
|
||||
| FLAC | `Vorbis Comments`, `ID3v2`\* |
|
||||
| MP3 | `ID3v2`, `ID3v1`, `APE` |
|
||||
| MP4 | `iTunes-style ilst` |
|
||||
| MPC | `APE`, `ID3v2`\*, `ID3v1`\* |
|
||||
| Opus | `Vorbis Comments` |
|
||||
| Ogg Vorbis | `Vorbis Comments` |
|
||||
| Speex | `Vorbis Comments` |
|
||||
| WAV | `ID3v2`, `RIFF INFO` |
|
||||
| WavPack | `APE`, `ID3v1` |
|
||||
|
||||
\* The tag will be **read only**, due to lack of official support
|
1
SUPPORTED_FORMATS.md
Symbolic link
1
SUPPORTED_FORMATS.md
Symbolic link
|
@ -0,0 +1 @@
|
|||
./lofty/SUPPORTED_FORMATS.md
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lofty"
|
||||
version = "0.19.0"
|
||||
version = "0.19.1"
|
||||
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -8,7 +8,7 @@ description = "Audio metadata library"
|
|||
repository = "https://github.com/Serial-ATA/lofty-rs"
|
||||
keywords = ["tags", "audio", "metadata", "id3", "vorbis"]
|
||||
categories = ["multimedia", "multimedia::audio", "parser-implementations"]
|
||||
readme = "README.md"
|
||||
readme = "../README.md"
|
||||
include = ["src", "LICENSE-APACHE", "LICENSE-MIT", "SUPPORTED_FORMATS.md"]
|
||||
|
||||
[dependencies]
|
||||
|
|
16
lofty/SUPPORTED_FORMATS.md
Normal file
16
lofty/SUPPORTED_FORMATS.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
| File Format | Metadata Format(s) |
|
||||
|-------------|------------------------------|
|
||||
| AAC (ADTS) | `ID3v2`, `ID3v1` |
|
||||
| Ape | `APE`, `ID3v2`\*, `ID3v1` |
|
||||
| AIFF | `ID3v2`, `Text Chunks` |
|
||||
| FLAC | `Vorbis Comments`, `ID3v2`\* |
|
||||
| MP3 | `ID3v2`, `ID3v1`, `APE` |
|
||||
| MP4 | `iTunes-style ilst` |
|
||||
| MPC | `APE`, `ID3v2`\*, `ID3v1`\* |
|
||||
| Opus | `Vorbis Comments` |
|
||||
| Ogg Vorbis | `Vorbis Comments` |
|
||||
| Speex | `Vorbis Comments` |
|
||||
| WAV | `ID3v2`, `RIFF INFO` |
|
||||
| WavPack | `APE`, `ID3v1` |
|
||||
|
||||
\* The tag will be **read only**, due to lack of official support
|
|
@ -5,7 +5,7 @@
|
|||
//! Parse, convert, and write metadata to audio formats.
|
||||
//!
|
||||
//! # Supported Formats
|
||||
#![doc = include_str!("../../SUPPORTED_FORMATS.md")]
|
||||
#![doc = include_str!("../SUPPORTED_FORMATS.md")]
|
||||
//! # Examples
|
||||
//!
|
||||
//! ## Reading a generic file
|
||||
|
|
Loading…
Reference in a new issue