Paul,
Every time i create a new Songkong docker container, I have to manually re-add the following two songkong filename preferences that i use for as filename masks for my music collection.
AlbumArtistorArtist/(Year) Album/DiscIfMultiDisc/Track - Title
+ '(' + (year.length>4 ? year.substring(0,4):year) +') '
+ ifnotempty(album,'/')
+ ifmultidisc('Disc ' + ifnotempty(pad(discno,2),'/'))
+ ifnotempty(pad(trackno,2),' - ')
+ title
and
AlbumArtistorVariousArtist/(Year) Album/DiscIfMultiDisc/TrackNo - Title
ifnotempty2(albumartist,"Various Artists",'/')
+ '(' + (year.length>4 ? year.substring(0,4):year) +') '
+ ifnotempty(album,'/')
+ ifmultidisc('Disc ' + ifnotempty(pad(discno,2),'/'))
+ ifnotempty(pad(trackno,2),' - ')
+ title
Is their a way to have filename masks that you add to Songkong persist across songkong docker container refreshes?
Can this be done via songkong docker create commands? If not, is their a member in the songkong config library that you can store this information in so that the information persists across container refreshes?
Your thoughts?
Robert