Topic: Picard plugin for release disambiguations?

I remember asking someone here on the forums about this a while back, and now I can't remember the name of the Picard plugin that adds release disambiguations to titles. Does it even exist/am I remembering things correctly?
What I was and am still trying to do is stop iTunes from lumping different versions of the same release together.

Re: Picard plugin for release disambiguations?

I don't know of a plugin, but I imagine something like the following in the tagger script would do it (completely untested!):

$if(%_releasecomment%,$set(album,%album% (%_releasecomment%)));

Re: Picard plugin for release disambiguations?

Yeah, what nikki suggested is the way to do it :)

But you'll need to "escape" the round brackets inside the $set:

$if(%_releasecomment%,$set(album,%album% \(%_releasecomment%\)));

Re: Picard plugin for release disambiguations?

It worked! Thanks, you two :D