Hi, thanks for your comments, let me see if I can give you some answers:
QUOTE(hal9001 @ May 29 2007, 00:09)

Load time has become significantly long (over 30sec on WinXP SP2, more than 3 times from the non-XUI versions).
The first run will be slow, as it is spinning up the WPF framework (although 30s is longer than I expected, I get about 15 here). Subsequent runs should be quick enough. If they aren't, then something is wrong. It is also worth noting that this slow load will just be for the first time
any WPF app is run, and all other WPF apps will be quick after that until reboot. Not much consolation if this is the only one you use, I suppose.
QUOTE
Default options: search options will not save, for some reason.
Now that's just not right. I'm not sure why this isn't working for you, could you try just running the app without command line parameters, move the window around, change which sources are selected, then close the app, and run it again to see if it has remembered the window position or selected sources? If it hasn't, then for some reason it can't save its settings - I can try and work through this with you via PM if you like.
QUOTE
Command-line options: since I use the app from FooBar, I'm wondering about the new ability to pre-determine the filename by tags. At the moment, my foo_run commandline includes all necessary options as was for the previous versions. Has anything changed? Can I get rid of some switches now?
CODE
foo_run commandline:
albumart.exe -ae on -pf off -ar "%artist%" -al "%album%" -p "C:\#pix2\CD Covers\%artist% - %album% FRONT.jpg"
AlbumArt save to:
C:\#pix2\CD Covers\%artist% - %album% (%name%) FRONT.jpg
For your command line,
-ae on and
-pf off are obsolete and have no effect - the local files source will be on unless you turn it off, and will display local file art according to the pattern it is set. The rest is fine, but you might like to change your path to
-p "C:\#pix2\CD Covers\%%artist%% - %%album%% FRONT.%%extension%%". Adding the extra % marks adds an additional level of reference to the artist and album placeholders, which means that they will be substituted at save time by album art downloader, rather than at run time by foo_run. Practically, that means that you can do additional searches just by changing the name and artist in the album art downloader search window, and the results will be saved to the right place automatically.
Using
%%extension%% instead of
jpg has the advantage that if the artwork found is not a jpeg, then it will have the appropriate extension when it is downloaded. The vast majority are jpegs, but some of the sources return the occasional png, I've found. If you prefer to just name it .jpg regardless of actual content, then leave this how you had it.
QUOTE
I also checked the new file browser. Looks great, but is it really necessary to have a window for every search? I sort of miss the old queue method. Much more efficient in any way. This new methos searches all missing covers simultaneously
Queuing has already been requested, and will eventually make it in, I hope.
QUOTE
2 more small file browser issues:
- 'search art in folder' should also ignore the filename, since this should be determined via commandline.
I'm not sure I understand this point, could you elaborate a little?
QUOTE
- Apparently the 'search art in' also determines where and how the newly found art will be saved. IMHO it should keep the previously set options in the main window (for filename).
That depends on what you have in the "Specify path to find images" path. If you have a relative path set, like just "Folder.jpg", for example, then the location the newly found art is saved has to be set relative to where the file was found. In your case, because you have a well-ordered system for organising where the art lives, you should set the path to find images to be "
C:\#pix2\CD Covers\%artist% - %album% FRONT.jpg", rather than Folder.jpg. As it is an absolute path, the location the newly found art is saved to will not depend on the folder the music was in.
Finally, if you just want to get back to the previously set path to save to, it will always be the first entry in the drop down history list for the path to save to.
QUOTE
- I sometimes add something after the usual %artist% - %album% in the filename. Can wildcards be used as well in searching for existing cover art?
Yes. "
C:\#pix2\CD Covers\%artist% - %album%*.*" should work just fine. Also
\**\ can be used for finding art in any depth of subfolders.
I hope this helps! Thanks again for your feedback,
Alex