documentation and changelog

This commit is contained in:
soergeld 2021-01-09 16:54:14 +01:00
parent 2781ab1e9c
commit 79e5b89caf
2 changed files with 9 additions and 3 deletions

View file

@ -94,7 +94,7 @@ New features:
Windows.
Thanks to :user:`MartyLake`.
:bug:`3331` :bug:`3334`
* The 'data_source' field is now also applied as an album-level flexible
* The ``data_source`` field is now also applied as an album-level flexible
attribute during imports, allowing for more refined album level searches.
:bug:`3350` :bug:`1693`
* :doc:`/plugins/deezer`: Added Deezer plugin as an import metadata provider:
@ -173,7 +173,8 @@ New features:
* :doc:`/plugins/replaygain` now does its analysis in parallel when using
the ``command``, ``ffmpeg`` or ``bs1770gain`` backends.
:bug:`3478`
* Add ``extracting_albumdata`` and ``extracting_trackdata`` hooks to allow
plugins to add new fields based on MusicBrainz data. Thanks to :user:`dosoe`.
Fixes:
* :bug:`/plugins/discogs`: Fixed a bug with ``index_tracks`` options that
@ -1929,7 +1930,7 @@ Major new features and bigger changes:
search results you wish to see when looking up releases at MusicBrainz
during import. :bug:`1245`
* The importer now records the data source for a match in a new
flexible attribute `data_source` on items and albums. :bug:`1311`
flexible attribute ``data_source`` on items and albums. :bug:`1311`
* The colors used in the terminal interface are now configurable via the new
config option ``colors``, nested under the option ``ui``. (Also, the `color`
config option has been moved from top-level to under ``ui``. Beets will

View file

@ -238,6 +238,11 @@ The events currently available are:
during a ``beet import`` interactive session. Plugins can use this event for
:ref:`appending choices to the prompt <append_prompt_choices>` by returning a
list of ``PromptChoices``. Parameters: ``task`` and ``session``.
* `extracting_trackdata` and `extracting_albumdata`: called after the metadata
is obtained from MusicBrainz. The parameter is a ``dict`` containing the data
retrieved from MusicBrainz for a track or an album.
Allows to add additional tags.
The included ``mpdupdate`` plugin provides an example use case for event listeners.