Skip to content

Commit 893f4c5

Browse files
committed
Changelog cleanup
1 parent 66f952b commit 893f4c5

File tree

2 files changed

+23
-18
lines changed

2 files changed

+23
-18
lines changed

docs/changelog.rst

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,31 @@ If you want to see all your songs in reverse chronological order, just type
1212
:ref:`query-sort`.
1313

1414
Flexible field types mean that some functionality that has previously only
15-
worked for built-in fields, like range queries for numeric fields, can now
16-
work with plugin- and user-defined fields too. For starters, the
17-
:doc:`/plugins/echonest/` and :doc:`/plugins/mpdstats` now mark the types of
18-
the fields they provide---so you can now say, for example, ``beet ls
19-
liveness:0.5..1.5`` for the Echo Nest "liveness" attribute.
20-
21-
Features:
22-
23-
* :doc:`/plugins/info`: Files can be specified through library queries
24-
and the ``--library`` option prints library fields instead of tags.
25-
Tags and library fields for multiple files can be summarized with the
26-
``--summarize`` option.
15+
worked for built-in fields, like range queries, can now work with plugin- and
16+
user-defined fields too. For starters, the :doc:`/plugins/echonest/` and
17+
:doc:`/plugins/mpdstats` now mark the types of the fields they provide---so
18+
you can now say, for example, ``beet ls liveness:0.5..1.5`` for the Echo Nest
19+
"liveness" attribute. The :doc:`/plugins/types` makes it easy to specify field
20+
types in your config file.
21+
22+
One upgrade note: if you use the :doc:`/plugins/discogs`, you will need to
23+
upgrade the Discogs client library to use this version. Just type
24+
``pip install -U discogs-client``.
25+
26+
Other new features:
27+
28+
* :doc:`/plugins/info`: Target files can now be specified through library
29+
queries (in addition to filenames). The ``--library`` option prints library
30+
fields instead of tags. Multiple files can be summarized together with the
31+
new ``--summarize`` option.
2732
* :doc:`/plugins/mbcollection`: A new option lets you automatically update
2833
your collection on import. Thanks to Olin Gay.
2934
* :doc:`/plugins/convert`: A new ``never_convert_lossy_files`` option can
3035
prevent lossy transcoding. Thanks to Simon Kohlmeyer.
3136
* :doc:`/plugins/convert`: A new ``--yes`` command-line flag skips the
3237
confirmation.
3338

34-
Fixes:
39+
Still more fixes and little improvements:
3540

3641
* Invalid state files don't crash the importer.
3742
* :doc:`/plugins/lyrics`: Only strip featured artists and
@@ -68,10 +73,10 @@ Fixes:
6873
this case.
6974
* :doc:`/plugins/convert`: Fix filename extensions when converting
7075
automatically.
71-
* The ``write`` event allows plugins to change the tags that are
76+
* The ``write`` plugin event allows plugins to change the tags that are
7277
written to a media file.
73-
* :doc:`/plugins/zero`: Do not delete database values, only media file
74-
tags.
78+
* :doc:`/plugins/zero`: Do not delete database values; only media file
79+
tags are affected.
7580

7681
.. _discogs_client: https://github.com/discogs/discogs_client
7782

docs/plugins/types.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Types Plugin
44
The ``types`` plugin lets you declare types for attributes you use in your
55
library. For example, you can declare that a ``rating`` field is numeric so
66
that you can query it with ranges---which isn't possible when the field is
7-
considered a string, which is the default.
7+
considered a string (the default).
88

99
Enable the plugin as described in :doc:`/plugins/index` and then add a
1010
``types`` section to your :doc:`configuration file </reference/config>`. The
1111
configuration section should map field name to one of ``int``, ``float``,
1212
``bool``, or ``date``.
1313

14-
Here's an example:
14+
Here's an example::
1515

1616
types:
1717
rating: int

0 commit comments

Comments
 (0)