ignore .fuse_hidden* files

This commit is contained in:
Adrian Sampson 2011-12-17 21:55:12 -08:00
parent 69c0e8d496
commit c0115ad958
2 changed files with 4 additions and 1 deletions

View file

@ -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'

View file

@ -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)
--------------------------