Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a9ed100
UI: Add more ANSI colors
mxmerz Nov 1, 2015
1cf39db
UI: Add ui.indent() method
mxmerz Nov 1, 2015
6bb6898
UI: Colorize prompt
mxmerz Nov 1, 2015
f43a5c8
UI: fixup color names
mxmerz Nov 1, 2015
6b1f215
UI: place ANSI codes at word borders in _colordiff
mxmerz Nov 1, 2015
6a556c9
UI: Separate disambiguation elements with pipe
mxmerz Nov 1, 2015
daf635a
UI: Add dist_colorize function
mxmerz Nov 1, 2015
238efe5
UI: Prefix penalties string with NOT EQUAL TO sign
mxmerz Nov 1, 2015
c541ec8
UI: Change show_change header style
mxmerz Nov 1, 2015
d708022
UI: Change candidate selection view
mxmerz Nov 1, 2015
e9caa7a
UI: Apply ANSI styles to import task path string
mxmerz Nov 1, 2015
42f55b1
UI: Implement two layouts for track changes
mxmerz Nov 1, 2015
ced7dc4
UI: Add config options to set match indentation
mxmerz Nov 1, 2015
3356afb
UI: Always show disk info in tracklist
mxmerz Nov 1, 2015
6a006ed
UI: change default configs for import layout
mxmerz Nov 1, 2015
bd34709
UI: add `text`, `text_faint` colors
mxmerz Nov 17, 2015
3ce0638
UI: fixup typo in comment, remove debug statement
mxmerz Nov 17, 2015
8f44173
UI: cleanup: colorize functions
mxmerz Nov 17, 2015
c593327
UI: refactor code for change of track # or length
mxmerz Nov 17, 2015
9a4a15f
UI: fixup track # alignment in column view
mxmerz Nov 17, 2015
69e2f3a
UI: refactor calculation of available columns
mxmerz Nov 17, 2015
0bb3979
refactor printing the match header
mxmerz Jan 23, 2016
7c8ac73
change string to unicode; add whitespace
mxmerz Jan 23, 2016
605b731
split show_change method into parts
mxmerz Jan 23, 2016
c88f560
fixup unicode errors
mxmerz Jan 25, 2016
f3c766d
add uncolorize and color_len functions
mxmerz Jan 25, 2016
7a8194c
move column width calculation and line to new funs
mxmerz Jan 25, 2016
d36fcec
minor fixup and reordering
mxmerz Jan 25, 2016
55493a1
fixup comment
mxmerz Jan 27, 2016
1584c07
move two methods into show_match_tracks()
mxmerz Feb 18, 2016
9a50224
remove unused show_album(artist, album)
mxmerz Feb 18, 2016
0b1ba73
minor whitespace change
mxmerz Feb 18, 2016
1b424db
restructure format_tracks_as_columns
mxmerz Feb 19, 2016
8f578e4
new make_line method
mxmerz Feb 19, 2016
36f53ef
move format_index to show_match_tracks
mxmerz Feb 19, 2016
87c38c1
add indentation to info dict
mxmerz Feb 20, 2016
bd0b564
Remove unused kwargs from colordiff and _colordiff
mxmerz Apr 1, 2018
de7717e
Refactor mapper functions in _colordiff
mxmerz Apr 1, 2018
ac03469
Improve comments in ui/__init__.py
mxmerz Mar 31, 2018
26c2e1f
Simplify handling of overlong last lines in `split_into_lines`
mxmerz Mar 31, 2018
1df0689
Whitespace
mxmerz Mar 31, 2018
df2d7ad
Modify disambig_string to return colorized string
mxmerz Apr 1, 2018
9232e15
Improve comments
mxmerz Apr 1, 2018
275931e
Use unicode string when showing empty artist
mxmerz Apr 1, 2018
6de8e54
Add ChangeRepresentation class
mxmerz Apr 1, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 29 additions & 7 deletions beets/config_default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,35 @@ ui:
length_diff_thresh: 10.0
color: yes
colors:
text_success: green
text_warning: yellow
text_error: red
text_highlight: red
text_highlight_minor: lightgray
action_default: turquoise
action: blue
text_success: ['bold', 'green']
text_warning: ['bold', 'yellow']
text_error: ['bold', 'red']
text_highlight: ['bold', 'red']
text_highlight_minor: ['white']
action_default: ['bold', 'cyan']
action: ['bold', 'blue']
# New Colors
text: ['normal']
text_faint: ['faint']
import_path: ['bold', 'inverse', 'blue']
import_path_items: ['bold', 'blue']
added: ['green']
removed: ['red']
changed: ['yellow']
added_highlight: ['bold', 'green']
removed_highlight: ['bold', 'red']
changed_highlight: ['bold', 'yellow']
text_diff_added: ['bold', 'red']
text_diff_removed: ['bold', 'red']
text_diff_changed: ['bold', 'red']
action_description: ['blue']
import:
indentation:
match_header: 2
match_details: 2
match_tracklist: 5
albumdiff:
layout: column

format_item: $artist - $album - $title
format_album: $albumartist - $album
Expand Down
Loading