Change Log for the latest
XYplorer BETA version:
Code: Select all
v17.10.0001 - 2016-09-09 17:49
+ Vorbis Comments: Since Vorbis Comments are freely defineable by the maker
of the file we need something to freely read any comment. Here it is.
The <prop #tag....> variable now supports free tag names. You can pass
whatever you want (as long as it does not destroy the syntax): If the tag is
actually in the file you will get the value in return.
Examples:
echo "<prop #tag.composer>";
echo "<prop #tag.PERFORMER>"; //caps are okay, no difference
echo "<prop #tag.encoder>";
echo "<prop #tag.whateveryouwant>";
You can as well search for those tags:
?prop:#tag.composer:Haydn //matches Haydn and Joseph Haydn
?prop:#tag.composer:"Haydn" //matches Haydn only
?prop:#tag.composer:?* //match all files with any composer
Or use them in a Color Filter:
prop:#tag.composer:Haydn
Or rename files via Batch Rename, e.g. append the Composer:
*-<prop #tag.composer>
Or display them in a Custom Column of type Script:
return property("#tag.composer", <cc_item>);
Of course, also SC property() supports it (and allows to pass a file spec):
text property("#tag.composer");
text property("#tag.composer", "E:\Audio Tags\2L-053_04_stereo-DXD.mqa.flac");
Remarks:
- Works only for FLAC and OGG files.
- Vorbis Comments can contain more than one PERFORMER tag (and probably
others). This is not handled at the moment. You will just get the first
tag of each type.
+ Custom Copy: Added a "Retry" button to the failure messages. So, for
example, when a file could not be moved because it was in use by another
process, you can now close that process and then retry the move.
Currently only added to foreground operations. A new XYcopy.exe will be
compiled when debugging is over.
+ Help | Various Information: Now shows info on DPI awareness. It should be
"DPI awareness: per monitor". Remains the question why this does not seem
to work on some systems.
* View | Tab | Type Stats and Filter...: From now on, the command display
the Type Stats of the *selected items* if there are any selections. The
menu is headed by the caption "Selected Items:" in this case.
Remark: I personally need this more often than the stats of the whole
folder, and IMO it can be really useful if you have many scattered
selections in a large folder.
! Custom Copy: Slightly deranged layout in the failure messages of a failed
move. Fixed.
! Custom Columns: <cc_item> was not reset after certain conditions. Fixed.
! SC syncselect: The default active pane direction (0) was broken. Fixed.
! ITT: Language files in UTF-8 were saved in UTF-16. Fixed. Now they stay
UTF-8.
! Vorbis Comments: Did not catch all "Tag Comments" for FLAC and OGG. Fixed.
Now two fields are used for this column, COMMENT and DESCRIPTION, with
priority at COMMENT.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.