All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Regenerate SWIG wrapper code against TagLib 2.0.1. This breaks compatibility with TagLib 1.x. You will get a compiler error if you try to install taglib-ruby 2.x on a system that has TagLib 1.x. Please use taglib-ruby 1.x if your system has TagLib 1.x, and taglib-ruby 2.x if your system has TagLib 2.x.
- The optional
strip_others
argument toTagLib::MPEG::File#save
no longer takes a boolean value. It now uses the constantsTagLib::File::StripOthers
andTagLib::File::StripNone
.
TagLib::MPEG::File#tag
has been removed because it no longer exists in TagLib 2.x. Please useTagLib::MPEG::File#id3v2_tag
orTagLib::MPEG::File#id3v1_tag
.
- Fix warning
warning: undefining the allocator of T_DATA class swig_runtime_data
on Ruby 3.2 - Upgraded to SWIG 4.1.1
- Fix UserTextIdentificationFrame's constructor so that overloaded variants with StringList arguments can be called (#107)
- Fixed build time warnings with Ruby >= 2.7.0 (#85)
- Upgraded to SWIG 4.0.2
- Fixed running tests against TagLib 1.12
- Added support for CTOC and CHAP frames for ID3v2
- Fix segmentation fault with TagLib::FLAC picture lists (#91), thanks @jameswyper!
- Support for TagLib >= 1.11.1 (drop support for earlier versions) (#83)
- This includes a lot of new APIs and some changed APIs, see
@since 1.0.0
in the docs
- This includes a lot of new APIs and some changed APIs, see
- Stop using tainted strings to fix warnings with Ruby 2.7 (#86)
- Fix compile error during gem installation on Ruby 2.3 (MRI) (#67)
- Add support for TagLib::RIFF::AIFF (#52, by @tchev)
- Add support for TagLib::RIFF::WAV (#57, by @tchev)
- Associate filesystem encoding to filename strings
- Allow CXX override during gem installation
- Try to detect location of vendor/taglib on Heroku (#28)
- Documentation updates
- Add support for TagLib::MP4 (#3, by @jacobvosmaer)
- Add support for TagLib::ID3v2::Header (#19, by @kaethorn)
- Support saving ID3v2.3 with TagLib::MPEG::File#save (#17)
- Note that this requires at least TagLib 1.8, and due to 1.8.0 having an incorrect version number in the headers, it currently requires master. See issue #17 for details.
- Fix segfault when passing a non-String to a String argument
- Documentation updates
- Fix memory bug with TagLib::MPEG::File#tag and TagLib::FLAC::File#tag which could cause crashes (#14)
- Update TagLib of binary gem for Windows to 1.8
- Fix crashes (segfault) with nil arguments, e.g. with
tag.title = nil
- Document TagLib::MPEG::File#save and TagLib::MPEG::File#strip (#11)
- Update TagLib of binary gem for Windows to 1.7.2
- Add support for FLAC
- Fix problem in SWIG causing compilation error on MacRuby (#10)
- Pre-compiled binary gem for Windows (Ruby 1.9) with TagLib 1.7.1
- Unicode filename support on Windows
- Add
open
class method toFileRef
andFile
classes (use it instead ofnew
andclose
):
title = TagLib::FileRef.open("file.mp3") do |file|
tag = file.tag
tag.title
end
- Fix ObjectPreviouslyDeleted exception after calling TagLib::ID3v2::Tag#add_frame (#8)
- Make installation under MacPorts work out of the box (#7)
- Add support for Ogg Vorbis
- Add support for ID3v1 (#2)
- Add #close to File classes for explicitly releasing resources
- Fix compilation on Windows
- Fix compilation error due to missing typedef on some systems (#5)
- API documentation
- Add support for:
- TagLib::AudioProperties and TagLib::MPEG::Properties (#4)
- TagLib::ID3v2::RelativeVolumeFrame
- Add installation instructions and clean up description
- Initial release
- Coverage of the following API:
- TagLib::FileRef
- TagLib::MPEG::File
- TagLib::ID3v2::Tag
- TagLib::ID3v2::Frame and subclasses