mirror of
https://github.com/beetbox/beets.git
synced 2026-01-18 22:22:18 +01:00
Changelog/typo fix for filefilter (#1186)
This commit is contained in:
parent
07f99e6ab7
commit
ea2474277a
2 changed files with 4 additions and 3 deletions
|
|
@ -6,6 +6,9 @@ Changelog
|
|||
|
||||
Features:
|
||||
|
||||
* A new :doc:`/plugins/filefilter` lets you write regular expressions to
|
||||
automatically avoid importing certain files. Thanks to :user:`mried`.
|
||||
:bug:`1186`
|
||||
* Stop on invalid queries instead of ignoring the invalid part.
|
||||
* A new :ref:`searchlimit` configuration option allows you to specify how many
|
||||
search results you wish to see when looking up releases at MusicBrainz
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ configuration file. The available options are:
|
|||
- **album_path** and **singleton_path**: You may specify different regular
|
||||
expressions used for imports of albums and singletons. This way, you can
|
||||
automatically skip singletons when importing albums if the names (and paths)
|
||||
of the files are distinguishable via a regex. The path regex defined here
|
||||
of the files are distinguishable via a regex. The regexes defined here
|
||||
take precedence over the global ``path`` option.
|
||||
|
||||
Here's an example::
|
||||
|
|
@ -28,5 +28,3 @@ Here's an example::
|
|||
# will only import files which names start with two digits
|
||||
album_path: .*\d\d[^/]+$
|
||||
singleton_path: .*/(?!\d\d)[^/]+$
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue