mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
ignore .fuse_hidden* files
This commit is contained in:
parent
69c0e8d496
commit
c0115ad958
2 changed files with 4 additions and 1 deletions
|
|
@ -97,7 +97,9 @@ DEFAULT_IMPORT_RESUME = None # "ask"
|
|||
DEFAULT_IMPORT_INCREMENTAL = False
|
||||
DEFAULT_THREADED = True
|
||||
DEFAULT_COLOR = True
|
||||
DEFAULT_IGNORE = ['.AppleDouble', '._*', '*~', '.DS_Store']
|
||||
DEFAULT_IGNORE = [
|
||||
'.AppleDouble', '._*', '*~', '.DS_Store', '.fuse_hidden*',
|
||||
]
|
||||
|
||||
VARIOUS_ARTISTS = u'Various Artists'
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ This release focuses on making beets' path formatting vastly more powerful.
|
|||
* Fix an incompatibility in BPD with libmpc (the library that powers mpc and
|
||||
ncmpc).
|
||||
* Fix a crash when importing a partial match whose first track was missing.
|
||||
* Ignore FUSE's shadow files when importing.
|
||||
|
||||
1.0b11 (December 12, 2011)
|
||||
--------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue