mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Merge branch 'master' into ffnp
This commit is contained in:
commit
0ac7fb42f5
4 changed files with 25 additions and 4 deletions
|
|
@ -18,6 +18,13 @@ For packagers:
|
||||||
|
|
||||||
Other changes:
|
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)
|
2.4.0 (September 13, 2025)
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
|
|
@ -79,6 +86,8 @@ Bug fixes:
|
||||||
the config option ``deezer.search_query_ascii: yes``. :bug:`5860`
|
the config option ``deezer.search_query_ascii: yes``. :bug:`5860`
|
||||||
- Fixed regression with :doc:`/plugins/listenbrainz` where the plugin could not
|
- Fixed regression with :doc:`/plugins/listenbrainz` where the plugin could not
|
||||||
be loaded :bug:`5975`
|
be loaded :bug:`5975`
|
||||||
|
- :doc:`/plugins/fromfilename`: Beets will no longer crash if a track's title
|
||||||
|
field is missing.
|
||||||
|
|
||||||
For packagers:
|
For packagers:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -236,7 +236,9 @@ Why does beets…
|
||||||
|
|
||||||
There are a number of possibilities:
|
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
|
<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
|
cataloged there. (If not, anyone can edit MusicBrainz---so consider adding the
|
||||||
data yourself.)
|
data yourself.)
|
||||||
|
|
|
||||||
|
|
@ -289,11 +289,21 @@ MusicBrainz---so consider adding the data yourself.
|
||||||
|
|
||||||
.. _the musicbrainz database: https://musicbrainz.org/
|
.. _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
|
If you think beets is ignoring an album that's listed in MusicBrainz, please
|
||||||
`file a bug report`_.
|
`file a bug report`_.
|
||||||
|
|
||||||
.. _file a bug report: https://github.com/beetbox/beets/issues
|
.. _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
|
I Hope That Makes Sense
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ list), just use the ``plugins`` option in your :doc:`config.yaml
|
||||||
|
|
||||||
.. code-block:: sh
|
.. 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
|
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
|
YAML list like ``[foo, bar]``. You can see which plugins are currently enabled
|
||||||
|
|
@ -29,7 +29,7 @@ its name:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
plugins: inline convert web
|
plugins: musicbrainz inline convert web
|
||||||
|
|
||||||
convert:
|
convert:
|
||||||
auto: true
|
auto: true
|
||||||
|
|
@ -58,7 +58,7 @@ following to your configuration:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
plugins: discogs
|
plugins: musicbrainz discogs
|
||||||
|
|
||||||
discogs:
|
discogs:
|
||||||
source_weight: 0.0
|
source_weight: 0.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue