@UMBY71,
now available in the master DEV version here:
https://github.com/TT-ReBORN/Georgia-ReBORN/archive/refs/heads/master.zip
download and replace the files from the zip.
You wanted to display artist images for current playing album in the background image feature? Now you can!
Check this out how to do it and read carefully, it is meant for advanced users:
- Implemented custom configurable album art filtering:
* Users can now set their own album art filtering via their `georgia-reborn-config.jsonc` config file.
* Filtering patterns can be set in the `foobar2000\profile\georgia-reborn\configs\georgia-reborn-config.jsonc` file
in the "artworkPatterns" section. The default pattern filters out disc art from the album art:
"albumArt": "!/(cd|disc|vinyl)([0-9]*|[a-h])\\.(png|jpg)/i",
"playlistBgAlbumArt": "!/(cd|disc|vinyl)([0-9]*|[a-h])\\.(png|jpg)/i",
"libraryBgAlbumArt": "!/(cd|disc|vinyl)([0-9]*|[a-h])\\.(png|jpg)/i",
"lyricsBgAlbumArt": "!/(cd|disc|vinyl)([0-9]*|[a-h])\\.(png|jpg)/i"
The `albumArt` property handles the large album art displayed on the left side.
The `playlistBgAlbumArt`, `libraryBgAlbumArt`, and `lyricsBgAlbumArt` properties handle
the background image filtering for the Playlist, Library, and Lyrics panels respectively.
The `!` prefix at the start of the pattern is used for exclusion.
When no `!` prefix is used, the pattern uses inclusion.
Example to only display `artist.jpg` images for the Playlist background image:
"playlistBgAlbumArt": "/(artist)\\.(jpg|png)$/i"
All filtering options must be enabled to use the album art filtering:
* For large album art: `Options` > `Player controls` > `Album art` > `Filter album art images`.
* For Playlist background image: `Options` > Playlist` > `Background` > `Image source` > `Filter album art images`.
* For Library background image: `Options` > Library` > `Background` > `Image source` > `Filter album art images`.
* For Lyrics background image: `Options` > Lyrics` > `Background` > `Image source` > `Filter album art images`.
When using background image filtering, ensure the `Image source` is set to `Album` for Playlist, Library, and Lyrics.
This is it for now, I need to focus on important stuff.
-TT