Skip to content

Commit

Permalink
Merge pull request #4987 from RollingStar/master
Browse files Browse the repository at this point in the history
  • Loading branch information
JOJ0 authored Dec 17, 2023
2 parents 3ea4a0b + d927262 commit bcf180d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 30 deletions.
81 changes: 51 additions & 30 deletions beets/config_default.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
# --------------- Main ---------------

library: library.db
directory: ~/Music
statefile: state.pickle

# --------------- Plugins ---------------

plugins: []
pluginpath: []

# --------------- Import ---------------

clutter: ["Thumbs.DB", ".DS_Store"]
ignore: [".*", "*~", "System Volume Information", "lost+found"]
ignore_hidden: yes

import:
# common options
write: yes
copy: yes
move: no
timid: no
quiet: no
log:
# other options
default_action: apply
languages: []
quiet_fallback: skip
none_rec_action: ask
# rare options
link: no
hardlink: no
reflink: no
Expand All @@ -13,15 +37,8 @@ import:
incremental: no
incremental_skip_later: no
from_scratch: no
quiet_fallback: skip
none_rec_action: ask
timid: no
log:
autotag: yes
quiet: no
singletons: no
default_action: apply
languages: []
detail: no
flat: no
group_albums: no
Expand All @@ -37,10 +54,13 @@ import:
ignored_alias_types: []
singleton_album_disambig: yes

clutter: ["Thumbs.DB", ".DS_Store"]
ignore: [".*", "*~", "System Volume Information", "lost+found"]
ignore_hidden: yes
# --------------- Paths ---------------

path_sep_replace: _
drive_sep_replace: _
asciify_paths: false
art_filename: cover
max_filename_length: 0
replace:
# Replace bad characters with _
# prohibited in many filesystem paths
Expand All @@ -60,11 +80,6 @@ replace:
# starting and closing whitespace
'\s+$': ''
'^\s+': ''
path_sep_replace: _
drive_sep_replace: _
asciify_paths: false
art_filename: cover
max_filename_length: 0

aunique:
keys: albumartist album
Expand All @@ -76,21 +91,27 @@ sunique:
disambiguators: year trackdisambig
bracket: '[]'

overwrite_null:
album: []
track: []
# --------------- Tagging ---------------

plugins: []
pluginpath: []
threaded: yes
timeout: 5.0
per_disc_numbering: no
verbose: 0
terminal_encoding:
original_date: no
artist_credit: no
id3v23: no
va_name: "Various Artists"
paths:
default: $albumartist/$album%aunique{}/$track $title
singleton: Non-Album/$artist/$title
comp: Compilations/$album%aunique{}/$track $title

# --------------- Performance ---------------

threaded: yes
timeout: 5.0

# --------------- UI ---------------

verbose: 0
terminal_encoding:

ui:
terminal_width: 80
Expand Down Expand Up @@ -126,6 +147,8 @@ ui:
match_tracklist: 5
layout: column

# --------------- Search ---------------

format_item: $artist - $album - $title
format_album: $albumartist - $album
time_format: '%Y-%m-%d %H:%M:%S'
Expand All @@ -135,13 +158,11 @@ sort_album: albumartist+ album+
sort_item: artist+ album+ disc+ track+
sort_case_insensitive: yes

paths:
default: $albumartist/$album%aunique{}/$track $title
singleton: Non-Album/$artist/$title
comp: Compilations/$album%aunique{}/$track $title

statefile: state.pickle
# --------------- Autotagger ---------------

overwrite_null:
album: []
track: []
musicbrainz:
enabled: yes
host: musicbrainz.org
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ New features:
* :doc:`/plugins/smartplaylist`: Expose config options as CLI options.
* :doc:`/plugins/smartplaylist`: Add new option `smartplaylist.output`.
* :doc:`/plugins/smartplaylist`: Add new option `smartplaylist.uri_format`.
* Sorted the default configuration file into categories.
:bug:`4987`

Bug fixes:

Expand Down

0 comments on commit bcf180d

Please sign in to comment.