diff --git a/docs/changelog.rst b/docs/changelog.rst index 07cad308..7af1e874 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,12 @@ Bug fix release. - Audio: Prevent buffering handling interfering with track changes. (Fixes: :issue:`1722`, PR: :issue:`1740`) +- Local: Add .pdf and .zip to the default + confval:`local/excluded_file_extensions` config value. (PR: :issue:`1737`) + +- File: Synchronised the default confval:`file/excluded_file_extensions` config + values with confval:`local/excluded_file_extensions`. (PR: :issue:`1743`) + v2.2.2 (2018-12-29) =================== diff --git a/mopidy/file/ext.conf b/mopidy/file/ext.conf index 0277543a..22b1f18a 100644 --- a/mopidy/file/ext.conf +++ b/mopidy/file/ext.conf @@ -5,9 +5,15 @@ media_dirs = ~/|Home show_dotfiles = false excluded_file_extensions = - .jpg + .directory + .html .jpeg + .jpg + .log + .nfo .pdf + .png + .txt .zip follow_symlinks = false metadata_timeout = 1000 diff --git a/mopidy/local/ext.conf b/mopidy/local/ext.conf index 5cbc4846..b14994c5 100644 --- a/mopidy/local/ext.conf +++ b/mopidy/local/ext.conf @@ -12,7 +12,7 @@ excluded_file_extensions = .jpg .log .nfo + .pdf .png .txt - .pdf .zip