From 7073a549751d2f5406373ee00fc3c94b038f4172 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 16 Apr 2015 20:13:31 -0700 Subject: [PATCH] Expand changelog descriptions --- docs/changelog.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2e5d001e5..fbe704a9a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,11 +6,13 @@ Changelog New features: -* Use Levenshtein distance from the Jellyfish library, over previously - handrolled one. :bug:`1389` -* :doc:`/plugins/fetchart`: new settings `minwidth` and `enforce_ratio` - to put restrictions (min width in pixels, and 1:1 image ratio, resp.) - for valid album art candidates. :bug:`1394` +* The autotagger's matching algorithm should be a bit faster. We now + use the `Jellyfish`_ library to compute string similarly, which is better + optimized than our hand-rolled edit distance implementation. :bug:`1389` +* :doc:`/plugins/fetchart`: There are new settings to control what constitutes + "acceptable" images. The `minwidth` option constrains the minimum image + width in pixels and the `enforce_ratio` option requires that images be + square. :bug:`1394` * Queries can now use **"or" logic**: if you use a comma to separate parts of a query, items and albums will match *either* side of the comma. For example, ``beet ls foo , bar`` will get all the items matching `foo` or matching @@ -40,6 +42,9 @@ Little fixes and improvements: * Fix an error when writing fields called `date` and `original_date` (which are not built-in beets fields). :bug:`1404` +.. _Jellyfish: https://github.com/sunlightlabs/jellyfish + + 1.3.11 (April 5, 2015) ----------------------