From: data Date: Fri, 20 Jan 2006 16:10:59 +0000 (+0000) Subject: Use iconv to turn CDDB entries to UTF-8 when sending them to FreeDB. X-Git-Url: https://git.hcoop.net/clinton/abcde.git/commitdiff_plain/bb73d1254b83764c5eca1422afa21335909bdf24?hp=f945c7ee376e04292ac90a84bf7cd2e9eec08d41 Use iconv to turn CDDB entries to UTF-8 when sending them to FreeDB. Update changelog. git-svn-id: http://abcde.googlecode.com/svn/trunk@191 a0fa61bc-5347-0410-a1a9-7f54aa4e1825 --- diff --git a/cddb-tool b/cddb-tool index 4f44a89..4e6c81b 100755 --- a/cddb-tool +++ b/cddb-tool @@ -196,7 +196,7 @@ send) # cddb-tool send filename email@address ADDRESS="$2" DISCID=$(grep ^DISCID= "$FILE" | cut -f2 -d= | tr -d \[:cntrl:\]) CDDBGENRE=$(grep '^#CATEGORY=' "$FILE" | cut -f2- -d= | tr -d \[:cntrl:\]) - grep -v "^#CATEGORY=" "$FILE" | mail -s "cddb $CDDBGENRE $DISCID" "$ADDRESS" + grep -v "^#CATEGORY=" "$FILE" | iconv -t utf-8 | mail -a "Content-Type: text/plain; charset=utf-8" -s "cddb $CDDBGENRE $DISCID" "$ADDRESS" ;; query) # cddb-tool query serverurl proto user host discid... diff --git a/debian/changelog b/debian/changelog index beadf83..bd7f670 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,10 +3,23 @@ abcde (2.3.99.3-1) unstable; urgency=low * The "Mao es nuestro indiscutible lider" release. * Check the CDROMREADER options we have in Debian which we depend on. Thanks to Jose Carlos Garcia Sogo for finding the error. + * New recursive option for local CDDB repositories, to cope with other + players saving the entries. + * Brand new CD backup procedure: rip a CD into a single FLAC trac with an + embedded cuesheet using "-1 -M -o flac" and proceed to rip your tracks + from the obtained file using "-d file.flac -o ". It needs + cue2discid script from the examples directory to work. OH! If you manage + to get it working with bash, we can get rid of the python dependency... + * Initial steps to make abcde working with musicbrainz, although it is not + ready yet. * Added a missing $ in a variable (Closes: #345629). * Added -p to the mkdir's for $ABCDETEMPDIR (Closes: #345630). + * Added iconv + converted to utf-8 the charset of a ready-to-send CDDB + entry (Closes: #345708). + * Added AAC (Mpeg4) support. + * Small cd-discid update. - -- Jesus Climent Mon, 2 Jan 2006 18:52:49 +0200 + -- Jesus Climent Thu, 19 Jan 2006 23:27:40 +0200 abcde (2.3.99.2-1) unstable; urgency=low