From ef7cca4c1205466086c658a9f50cefb09b5da450 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 18 May 2016 11:24:34 -0700 Subject: [PATCH] Fix #2005: list AIFF as a lossless format --- beetsplug/convert.py | 2 +- docs/changelog.rst | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 9debd6ca1..6463d2a1f 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -39,7 +39,7 @@ ALIASES = { u'vorbis': u'ogg', } -LOSSLESS_FORMATS = ['ape', 'flac', 'alac', 'wav'] +LOSSLESS_FORMATS = ['ape', 'flac', 'alac', 'wav', 'aiff'] def replace_ext(path, ext): diff --git a/docs/changelog.rst b/docs/changelog.rst index 251057c20..c1a5e221a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -54,6 +54,8 @@ Fixes: artist and album names. :bug:`1960` * :doc:`/plugins/convert`: Change default `ogg` encoding quality from 2 to 3 (to fit the default from the `oggenc(1)` manpage). :bug:`1982` +* :doc:`/plugins/convert`: The `never_convert_lossy_files` option now + considers AIFF a lossless format. :bug:`2005` 1.3.17 (February 7, 2016)