Here's the new BETA (32-bit)

Get a glimpse of the next XYplorer...
Locked
admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0103 - 2012-06-16 15:51
  +++ Color Filters: Added "prop:" as selector for shell property
      filters. The syntax is identical to the one supported by the 
      <prop> variable, so you have a vast number of options here.
      This is an extremely powerful color filter, BUT it has a severe 
      drawback: It is VERY slow! This is because retrieving shell 
      properties has to rely on a slow shell mechanism. Each active 
      "prop:" color filter will notably slow down listing and scrolling 
      a list and selecting items in the list, and the more items are 
      displayed simultaneously in the visible part of the list the 
      slower it will be. Nevertheless, the "prop:" color filter can be 
      of significant value. There is also a new way to reduce the loss 
      of speed (see Color Filter Pre-Filter, next paragraph).
      Examples:
        prop:dimensions:1500 x *    = color all files 1500 pixels wide
        prop:#26:1500 x *           = (same as above on WinXP)
      Note that #26 is identical to "dimensions" on WinXP but not on 
      Win7 where "dimensions" is #31. You can find the correct indices 
      in the list under "Configuration | File Info Tips | Show custom 
      file info tips".
      More examples:
        prop:fileversion:8.60       = color all files versioned 8.60
        prop:#26:1024 x 768         = color all files sized 1024 x 768
        prop:CameraModel:*Canon*    = color all files snapped with a Canon
      Also XYplorer-specific named arguments are supported, e.g.:
        prop:#tags:dogs             = color all files tagged "dogs" exactly
        prop:#tags:*dogs*           = color all files tagged "dogs" (and other tags)
        prop:#ShortcutTarget:*.jpg  = color all files linking to JPGs
        prop:#JunctionTarget:*blah* = color all junctions to "*blah*"
      Note that "prop:" filters have their own distinctive background 
      color shapes (in case you enabled Shapes for Color Filters).
    + Color Filter: Added a way to pre-filter the files that a are 
      checked for matching a particular Color Filter. This is very 
      welcome for slow Color Filters such as the "prop:" filter because 
      it can considerably speed up the processing.
      Look at these examples:
        prop:dimensions:1500 x * //|filter:E:\Test\*.png;E:\Test\*.jpg
        prop:dimensions:* x 2048 //|filter:*.png;*.jpg
        prop:CameraModel:*Canon* //|filter:*.crw;*.jpg
      The pre-filter is located in the optional comments section of a 
      filter (this is mainly to keep it at the right end of the filter 
      definition in order to keep the most important parts readable at 
      the left end without horizontal scrolling), i.e. after "//".
      As the first part of the comments section is reserved for certain 
      filters ("m" and "n", cf Help), the pre-filter is to be placed in 
      the second part, after the first "|"; it has to be prefixed by 
      "filter:". Any number of filters can be stated, separated by ";" 
      which stands for logical OR. As seen in the examples above the 
      filters can include whole paths, actually anything that will work 
      in a simple pattern matching against the full path/file name of 
      the item in question. So you can limit the job to certain folders 
      or branches.
      BTW, the functionality of the pre-filter could also be achieved by 
      Boolean Color Filter combinations, e.g. "prop:#26:1024 x 768 AND 
      *.jpg", but pre-filters are faster, easier to code, and do not 
      change the Shape (in case you enabled Shapes for Color Filters).
    + Spot Colors: Added tweak to customize the Spot colors and the 
      number of different spot colors. You simply specify the colors in 
      RRGGBB format in a comma-separated list of any length.
      This example is identical to the four currently hard-coded values:
        SpotColorsList=FFEF00,7FFF00,FF40FF,00DFFF
      But you can add more colors as you like, or also reduce it to just 
      one color, e.g. a warmer yellow:
        SpotColorsList=FFCC00
    * Floating and Full Screen Preview: Now, the Quick File View is 
      auto-opened on a file that's not supported by the Preview.
      Note: This had been removed in v11.10.0001 - 2012-05-16 15:19, but 
      know I think it was not too bad after all.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0104 - 2012-06-17 15:15
    + Color Filters: The "prop:" filter now also supports numeric 
      comparisons. For example to color all JPG and PNG images with a 
      width of at least 1024 pixels use any of these (two ways to 
      express the same):
        prop:#162:1024 - //|filter:*.jpg;*.png
        prop:#162:>=1024 //|filter:*.jpg;*.png
      Note that #162 is the numeric property identifier for "Width" on 
      my Win7 system. It might be different on your system. You can find 
      the correct indices in the list under "Configuration | File Info 
      Tips | Show custom file info tips".
    + Color Filters: The "prop:" filters now also support dates. For 
      example to color all files with a specific shooting time (valid 
      date/time syntax varies with your locale):
        prop:#25:02.08.2011 13:52 //|filter:*.jpg
      You can omit the time part to only search for JPG images shot on a 
      certain day:
        prop:#25:02.08.2011 //|filter:*.jpg
      You can as well specify ranges using the complete operator syntax 
      that's already supported by the Date Color Filters ("dateM:" 
      etc.). For example, to color all JPG images shot between 
      01.01.2011 and 31.12.2011 (both dates inclusive):
        prop:#25:01.01.2011 - 31.12.2011 //|filter:*.jpg
      Note that the numeric property identifier "#25" is preferred to 
      the verbal "WhenTaken" because the latter returns the time in UTC 
      (Coordinated Universal Time) instead of local time -- a mysterious 
      shell anomaly. Note further that #25 is only valid for Windows XP, 
      whereas Win7 needs #11 here.
    + SC property enhanced: Added argument "#HardLinks" to return the 
      number of Hard Links to a file.
        #HardLinks      = Number of Hard Links
      Examples:  
        text property("#HardLinks");  //defaults to current list item
        text property("#HardLinks", "E:\Test\funstuff\goodfellas.jpg");
      For your interest:
      This enhancement now enables you to color code the number of 
      hardlinks, pretty wild stuff! For example, this color filter will 
      color all files with more than one hard link:
        prop:#HardLinks: > 1
    + Info Panel | Meta: Added "Show All Metadata in Popup" to the 
      right-click menu. Shows all available metadata (available to the 
      shell) of the current file. This might be a much longer list than 
      what's currently shown in the Meta tab.
      Note that only fields that have any data are returned, not the 
      empty fields.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0106 - 2012-06-18 16:10
    + Menu File: Added command "Metadata" to show all available metadata 
      of the currently focused and selected item (Tree, List, Catalog, 
      Address Bar). This means: At last independence from those volatile 
      File Info Tips when in need for metadata.
      The "Show All Metadata in Popup" item in the Meta tab context menu 
      (added v11.30.0104) has been removed. Obsolete.
    + Toolbar: Added button "Metadata". Identical to File | Metadata.
      Credits for the icon goto http://www.fatcow.com/free-icons.
    % Image Preview: Experimentally reduced memory needed for previewing 
      images by adding a tiny bit of invisible smartness.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0108 - 2012-06-19 09:40
    + Menu File | Metadata: Defined Shift+Enter as factory default 
      keyboard shortcut.
    * Menu File | Metadata: Now it also works on the focused list item 
      when it is unselected.
    * Menu File | Properties: Now it works on the focused list item when 
      there are no selections, else it works on any selected list items. 
      It differs from Metadata in this respect because it can handle 
      multiple items.
    - Image Preview: Removed the experimental memory reduction from 
      v11.30.0106. It did not work alright (caused a bug in the display 
      of the transparency grid) and was not measurable or notable 
      anyway.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0109 - 2012-06-20 12:26
    + Menu View | Sort By: Added command "Reverse Order". Reverses the 
      current sort order. Handy to reverse the current sort order by 
      keyboard, and the only way to reverse a custom sort order.
    ! Color Filters: Wrong coloring under certain conditions since 
      v11.30.0103. Fixed.
    * Updated the help file.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0110 - 2012-06-21 09:20
    ! Tried something to fix a rare issue where browsing the list by 
      keyboard did not update the current file.
    ! The "&" character in filenames was not shown in various popup 
      menus. Fixed.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.30.0111 - 2012-06-22 08:38
    ! Smart Dropdown Buttons: Possible wrong icon for non-existing 
      locations under rare conditions. Fixed.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Summary of the latest XYplorer Official Release.

Download: http://www.xyplorer.com/download.htm

Code: Select all

v11.40.0000 - 2012-06-25 12:00
    = NEW OFFICIAL RELEASE. Main developments since last release:
  +++ Color Filters by Properties. Now you can color-code files by their 
      extended properties, which gives you a vast number of options. For 
      example, give a specific highlight to all files of photos that 
      were shot on a certain day or in a certain date range. Or color-
      code photos with certain dimensions, shot with a particular 
      camera, or using a certain aperture. Or highlight all MP3s with a 
      certain bit rate. Or all PDFs with a certain author AND more than 
      175 pages AND younger than 2 years.
  +++ High Quality Image Preview. Optimized the display quality by 
      applying high-end interpolation algorithms. Applies to all 
      previews (Preview Tab, Floating Preview, Full Screen Preview).
  +++ Captionless Thumbnails. Now you can hide the captions and enjoy 
      captionless thumbnails.
  +++ Metadata Popup. Now you can show all available metadata of a file 
      in a popup text box.
  +++ Sort Headers in All Views. Now you can show sort headers not only 
      in Details view but in all other views as well, e.g. in 
      Thumbnails.
      For your interest, Windows Explorer in Vista had sort headers in 
      all views but for unknown reasons Microsoft removed this feature 
      in Windows 7. Now, XYplorer brings it back to Windows 7 and to all 
      other Windows versions.
  +++ Reverse Sort Order. Now you can reverse the current sort order 
      using a keyboard shortcut. This way you can even reverse a custom 
      sort order created by Manual Sorting.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0003 - 2012-06-28 10:29
  %%% Code Signing: From now on XYplorer.exe, XYcopy.exe, and 
      XYplorer_??.??_Install.exe are digitally signed, i.e. they contain 
      a certificate that assures you of the Content Source and Content 
      Integrity.
      Note that I won't necessarily sign each and every BETA version.
    + Command Line: The command line now supports special paths, e.g.:
        XYplorer "Desktop\Blah"
    * Command Line: Now real paths that correspond to special paths are 
      auto-converted to special paths. E.g. this command line
        XYplorer "C:\Dokumente und Einstellungen\Donald\Desktop\Blah\"
      will open XYplorer pointing to "Desktop\Blah" if theis is a valid 
      special path.
    * List: The "Selected Rows Color" now is also used for the 
      background of selected thumbnails. This way selected thumbnails 
      can be recognized even when "Show Caption" is off.
      Note that this feature needs Tools | Customize List | Highlight 
      Selected Rows ticked.
      In a later version the color for this will be definable separately 
      for thumbnails.
    % File Info Tips: Added a little smartness to reduce work when 
      polling the tips. You will note that in Configuration | File Info 
      Tips the countless "[reserved]" items at the bottom of the list 
      are now missing.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0004 - 2012-06-28 13:44
    * List: The "Selected Rows Color" for the background of selected 
      thumbnails now honors the Padding setting while keeping a minimum 
      of 2 pixels of the "Selected Rows Color" visible behind the 
      thumbnail.
    * Thumbnails: Reduced the vertical height of each row by 3 pixels.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0005 - 2012-06-28 18:57
    * Configuration | Templates | Incremental Suffix: Renamed it to 
      "Incremental Affix".
    + Configuration | Templates | Incremental Affix: Now you can also 
      define increments that are prefixed to the filename, or that have 
      fixed parts (additionally to the increment part) that are prefixed 
      or suffixed to the filename. The syntax is identical to that of 
      the Date Affix: The asterisk (*) stands for the base of the 
      original filename. This way you can e.g. mimic the Windows 
      standard "Copy of..." in Custom Copy.
      Here are some examples:
        Copy (1) of *     (similar to Windows standard increment)
        Copy of *-01
        01-*
        01-* (Copy)
        aa-*
      If no asterisk (*) is present the increment is suffixed to the 
      base of the original filename.
      
      Notes:
      - You CANNOT combine the asterisk with fixed parts AND non-
        numeric increments because such a pattern is ambiguous and 
        cannot be parsed without making too many assumptions:
          Copy of *-aa          NO GOOD!
      - The fixed parts may contain numbers, but be aware that always 
        the right-most numbers in the pattern will be incremented.
          Copy 2012 of *-01     Will work as expected
          Copy (1) of * (2012)  Will NOT work as expected!
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0100 - 2012-06-29 12:00
    * Updated the help file.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0101 - 2012-08-08 13:21
    * Configuration | Thumbnails | Show dimensions of original image on 
      thumbnail: The dimensions shown for videos, PDFs and other non-
      images were not those of the originals (which cannot be determined 
      reliably in the necessary speed) but those of the thumbnails. 
      Pretty useless information. Therefore from now on, only image 
      files get the dimensions overlay on the thumbnails.
    ! Drag & drop of images from browsers to tab headers did not work as 
      expected. Fixed.
    ! XYcopy could not handle incremental affixes containing wildcards, 
      e.g. "Copy of *-01". Fixed.
    * XYcopy: Updated to 2.00.0080.
    ! Wipe: After wiping a folder with contents, subsequent normal 
      deletes lacked the confirmation prompt. Fixed.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0102 - 2012-08-10 09:17
    + Rename Special | Mp3 Special: "Filename To ID3 Tag" and "ID3 Tag 
      to Filename" now support the placeholder Year (additionally to the 
      already supported Artist, Album, Track, and Title).
      Also added another tweakable item to each of the submenus.
    * Configuration | Advanced | Paste to selected list folder: Changed 
      factory default to OFF to meet expectations set by Windows Explorer.
    ! Multi Field Search: Boolean Multi Field Search did not work 
      correctly for field types other than Len and LenT. Fixed. Now you 
      can do things like this and get the expected results:      
        prop:year: > 1989 AND LenT: > 35
        prop:year: > 1989 AND prop:year: <= 2000
        prop:year: > 1989 AND  <= 2000
      FYI, the last two are equivalent (note double-space after AND!).
    * List: From now on copies of items created in the same path as the 
      original items (by Duplicate or Paste) are not auto-selected 
      anymore but the selection stays on the original items. This is in 
      accordance with Windows Explorer behavior and indeed makes more 
      sense.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 64868
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v11.40.0103 - 2012-08-11 19:24
    + Custom Copy: The progress dialog now shows the size of the 
      currently copied resp. verified file right after the file name.
    * XYcopy: Updated to 2.00.0081.
    * Info Panel | Tags: The edit boxes on this tab now automatically 
      re-size with the overall size of the Info Panel.
    ! List | Comment column right click menu | Copy Comment: Did not 
      re-convert internal pilcrow characters (¶) to CRLF (line feeds) in 
      multiline comments. Fixed.
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 | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.

Locked