mirror of
https://github.com/beetbox/beets.git
synced 2026-05-20 16:44:27 -04:00
For a less cumbersome uniquifying string, only a single field value is now used instead of a prefix of a list of fields. The old semantics had two problems that made it both unnecessary and insufficient: - In the vast majority of cases, a single field suffices (year OR label OR catalog number, for example) and forcing the string to include many identical fields is unnecessary. - If the albums are very similar, a prefix may be insufficient; a better solution may be found with an arbitrary subset. (Of course, we can't afford to search the whole power set.) So we're going with a single field for now. This should cause far less confusion.