lastgenre count/min_weight (#416): changelog/thanks

Also closes #407.
This commit is contained in:
Adrian Sampson 2013-10-17 12:07:31 -07:00
parent f09bf57f6a
commit 3070ac382e
2 changed files with 14 additions and 6 deletions

View file

@ -4,6 +4,14 @@ Changelog
1.3.2 (in development)
----------------------
New features:
* :doc:`/plugins/lastgenre`: The new ``multiple`` option has been replaced
with the ``count`` option, which lets you limit the number of genres added
to your music. (No more thousand-character genre fields!) Also, the
``min_weight`` field filters out nonsense tags to make your genres more
relevant. Thanks to Peter Schnebel and rashley60.
Little fixes:
* :doc:`/plugins/missing`: Avoid a possible error when an album's

View file

@ -95,17 +95,17 @@ of the ``count`` config option::
Comma-separated lists of up to *count* genres will then be used instead of
single genres.
`Last.fm`_ provides a popularity factor aka *weight* for each *tag* ranging
from 100 for the most popular *tag* down to 0 for the least popular *tags*.
The plugin uses this *weight* to discard unpopular *tags*. The default is to
ignore *tags*, with a *weight* less then *10*. You can change this, by setting
`Last.fm`_ provides a popularity factor, a.k.a. *weight*, for each tag ranging
from 100 for the most popular tag down to 0 for the least popular.
The plugin uses this weight to discard unpopular tags. The default is to
ignore tags with a weight less then 10. You can change this by setting
the ``min_weight`` config option::
lastgenre:
min_weight: 15
However, if no tag with a *weight* greater then ``min_weight`` is found, the
plugin uses the next best popular *tag*.
However, if no tag with a weight greater then ``min_weight`` is found, the
plugin uses the next-most-popular tag.
Running Manually