From e659895fb7970472cf756b91ac6f9f63979c4b05 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 2 Aug 2015 01:05:04 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 7 +++++++ README | 7 +++---- lib/App/MusicExpo.pm | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index fb60124..979d76b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Perl extension App::MusicExpo. +0.006 2015-08-02T01:05+03:00 + - Use fragments for music player to allow linking + - Fix caching + - Work with raw bytes instead of UTF-8 + - Replace MP3::Tag with MP3::Info + - Simplify code and tests + 0.005 2015-04-02T22:51+03:00 - Add a javascript player - Add example CSS diff --git a/README b/README index fce0508..95fb3eb 100644 --- a/README +++ b/README @@ -1,9 +1,9 @@ -App-MusicExpo version 0.005 +App-MusicExpo version 0.006 =========================== App::MusicExpo creates a HTML table from a list of songs. -The default template (named index.tmpl here)looks like: +The default template (named index.tmpl here) looks like: | Title | Artist | Album | Genre | Track | Year | Type | |---------+---------+-----------------+---------+-------+------+------| @@ -29,8 +29,7 @@ This module requires these other modules and libraries: * Audio::FLAC::Header * HTML::Template::Compiled - * Memoize - * MP3::Tag + * MP3::Info * MP4::Info * Ogg::Vorbis::Header::PurePerl diff --git a/lib/App/MusicExpo.pm b/lib/App/MusicExpo.pm index 9422a07..7cdf6e2 100644 --- a/lib/App/MusicExpo.pm +++ b/lib/App/MusicExpo.pm @@ -3,7 +3,7 @@ use v5.14; use strict; use warnings; -our $VERSION = '0.005'; +our $VERSION = '0.006'; use Audio::FLAC::Header qw//; use HTML::Template::Compiled qw//; -- 2.30.2