From 2b64fd45fea59eecc090cd05d58cf59789a5206a Mon Sep 17 00:00:00 2001 From: Dorian Soergel Date: Sun, 26 May 2019 13:59:20 +0200 Subject: [PATCH] new changes since my first try --- beets/autotag/__init__.py | 3 +++ beets/library.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/beets/autotag/__init__.py b/beets/autotag/__init__.py index 2f1033369..e6153478a 100644 --- a/beets/autotag/__init__.py +++ b/beets/autotag/__init__.py @@ -173,6 +173,9 @@ def apply_metadata(album_info, mapping): 'composer', 'composer_sort', 'arranger', + 'work', + 'work_id', + 'work_disambig', ) } diff --git a/beets/library.py b/beets/library.py index 9a9d95256..36af5adf4 100644 --- a/beets/library.py +++ b/beets/library.py @@ -451,6 +451,9 @@ class Item(LibModel): 'lyricist': types.STRING, 'composer': types.STRING, 'composer_sort': types.STRING, + 'work': types.STRING, + 'work_id': types.STRING, + 'work_disambig': types.STRING, 'arranger': types.STRING, 'grouping': types.STRING, 'year': types.PaddedInt(4),