mirror of
https://github.com/beetbox/beets.git
synced 2026-01-03 14:32:55 +01:00
changelog & docs for "beet stats --exact"
This commit is contained in:
parent
59b555745f
commit
cb93900888
2 changed files with 12 additions and 3 deletions
|
|
@ -17,8 +17,10 @@ Changelog
|
|||
* :doc:`/plugins/scrub`: Scrubbing now removes *all* types of tags from a file
|
||||
rather than just one. For example, if your FLAC file has both ordinary FLAC
|
||||
tags and ID3 tags, the ID3 tags are now also removed.
|
||||
* ``list`` command: Templates given with ``-f`` can now show items' paths (using
|
||||
``$path``).
|
||||
* :ref:`stats-cmd` command: New ``--exact`` switch to make the file size
|
||||
calculation more accurate (thanks to yagebu).
|
||||
* :ref:`list-cmd` command: Templates given with ``-f`` can now show items' paths
|
||||
(using ``$path``).
|
||||
* Fix album queries for ``artpath`` and other non-item fields.
|
||||
* Null values in the database can now be matched with the empty-string regular
|
||||
expression, ``^$``.
|
||||
|
|
|
|||
|
|
@ -119,6 +119,8 @@ right now; this is something we need to work on. Read the
|
|||
or full albums. If you want to retag your whole library, just supply a null
|
||||
query, which matches everything: ``beet import -L``
|
||||
|
||||
.. _list-cmd:
|
||||
|
||||
list
|
||||
````
|
||||
::
|
||||
|
|
@ -212,15 +214,20 @@ To perform a "dry run" an update, just use the ``-p`` (for "pretend") flag. This
|
|||
will show you all the proposed changes but won't actually change anything on
|
||||
disk.
|
||||
|
||||
.. _stats-cmd:
|
||||
|
||||
stats
|
||||
`````
|
||||
::
|
||||
|
||||
beet stats [QUERY]
|
||||
beet stats [-e] [QUERY]
|
||||
|
||||
Show some statistics on your entire library (if you don't provide a
|
||||
:doc:`query <query>`) or the matched items (if you do).
|
||||
|
||||
The ``-e`` (``--exact``) option makes the calculation of total file size more
|
||||
accurate but slower.
|
||||
|
||||
fields
|
||||
``````
|
||||
::
|
||||
|
|
|
|||
Loading…
Reference in a new issue