Change Log for the latest
XYplorer BETA version:
Code: Select all
v9.80.0111 - 2010-12-15 11:09
+ Menu Favorites: Added another function and rename some. Also
slightly changed the related function IDs (hey, this is BETA).
Now it's
- Add Tags...: Add tag(s) to the tags of all selected items.
- Add Tags by List...: Add tag(s) to the tags of all selected
items (select from the Tag List).
- Add Last Tags: Add the last added tag(s) to the tags of all
selected items.
- Edit Tags...: Edit the tags of all selected items (based on the
tags of the focused item).
- Remove Tags by List...: Remove particular tags from all selected
items (select from the Tag List).
- Remove All Tags: Remove all tags from all selected items.
+ List: Reorganized the Tags column right-click menu.
! Tags: Fixed a couple of glitches.
+ Scripting got a new function.
Name: taglist
Action: Sets a new tag list.
Syntax: taglist([tags])
tags: comma-separated list of tags
empty: keep current
return: the current (old) tag list
Examples:
// displays the current tag list:
text taglist();
// defines a new tag list
taglist("may,june,july");
Remarks:
With a little simple scripting you can now easily switch tag
lists and make tagging new files a snap.
+ SC tag enhanced. Now you can choose whether to add, replace, or
remove tags. This is done via the new flag tagsmode.
Name: tag
Action: Tag item(s).
Syntax: tag [tagid=0], [itemlist], [type=0], [tagsmode=0]
tagid = Tag ID (missing or 0: remove any tag)
itemlist = |-separated list of items (full path) to tag;
if empty then current list selections are tagged
type 0=Label
1=Tags
2=Comment
tagsmode [only applicable if type=1 (Tags)]
0=Add
1=Replace
2=Remove
Examples:
//add tags "cats" and "dogs" to all selected items
::tag "cats,dogs", , 1;
//set tags "cats" and "dogs" to all selected items
::tag "cats,dogs", , 1, 1;
//remove tags "cats" and "dogs" from all selected items
::tag "cats,dogs", , 1, 2;
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
Portable 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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.