Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ For packagers:

Other changes:

- :doc:`plugins/index`: Clarify that musicbrainz must be mentioned if plugin
list modified :bug:`6020`
- :doc:`/faq`: Add check for musicbrainz plugin if auto-tagger can't find a
match :bug:`6020`
- :doc:`guides/tagger`: Section on no matching release found, related to
possibly disabled musicbrainz plugin :bug:`6020`

2.4.0 (September 13, 2025)
--------------------------

Expand Down
4 changes: 3 additions & 1 deletion docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,9 @@ Why does beets…

There are a number of possibilities:

- First, make sure the album is in `the MusicBrainz database
- First, make sure you have at least one autotagger extension/plugin enabled.
See :ref:`autotagger_extensions` for a list of valid plugins.
- Check that the album is in `the MusicBrainz database
<https://musicbrainz.org/>`__. You can search on their site to make sure it's
cataloged there. (If not, anyone can edit MusicBrainz---so consider adding the
data yourself.)
Expand Down
10 changes: 10 additions & 0 deletions docs/guides/tagger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,21 @@ MusicBrainz---so consider adding the data yourself.

.. _the musicbrainz database: https://musicbrainz.org/

If you receive a "No matching release found" message from the Auto-Tagger for an
album you know is present in MusicBrainz, check that musicbrainz is in the
plugin list. Until version v2.4.0_ the default metadata source for the
Auto-Tagger, the :doc:`musicbrainz plugin </plugins/musicbrainz>`, had to be
manually disabled. At present, if the plugin list is changed, musicbrainz needs
to be added to the plugin list in order to continue contributing results to
Auto-Tagger.

If you think beets is ignoring an album that's listed in MusicBrainz, please
`file a bug report`_.

.. _file a bug report: https://github.com/beetbox/beets/issues

.. _v2.4.0: https://github.com/beetbox/beets/releases/tag/v2.4.0

I Hope That Makes Sense
-----------------------

Expand Down
6 changes: 3 additions & 3 deletions docs/plugins/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ list), just use the ``plugins`` option in your :doc:`config.yaml

.. code-block:: sh

plugins: inline convert web
plugins: musicbrainz inline convert web

The value for ``plugins`` can be a space-separated list of plugin names or a
YAML list like ``[foo, bar]``. You can see which plugins are currently enabled
Expand All @@ -29,7 +29,7 @@ its name:

.. code-block:: yaml

plugins: inline convert web
plugins: musicbrainz inline convert web

convert:
auto: true
Expand Down Expand Up @@ -58,7 +58,7 @@ following to your configuration:

.. code-block:: yaml

plugins: discogs
plugins: musicbrainz discogs

discogs:
source_weight: 0.0
Expand Down
Loading