- 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