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.40.0104 - 2012-08-12 19:39
    + Menu Edit | Paste Special: Added command "Paste Here As...", which 
      allows you to paste item(s) in the clipboard under a new name.
      The functionality, interface, and syntax are analogue to "Copy 
      Here As..." and "Move Here As..." (including advanced syntax with 
      wildcards and variables), only that the source(s) are in the 
      clipboard.
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.0105 - 2012-08-13 20:21
    * Configuration | Advanced | Paste to selected list folder: Now, if 
      that selected folder is on the clipboard then do not copy it into 
      itself but paste into the currently listed folder (as if no folder 
      would be selected in the list).
    ! New command "Paste Here As..." did not allow for a keyboard 
      shortcut yet. 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.0201 - 2012-08-16 11:33
    + Find Files | Name & Location: Add option "Ignore diacritics". 
      Check it to match a pattern "Koln" with files "Koln.txt" and 
      "Köln.txt" and "Kóln.txt" etc. 
      Note that all accented characters (i.e. characters with 
      diacritics) in the name pattern AND in the tested filenames are 
      reduced to their base characters before the matching is performed. 
      So an accented pattern "Köln" would match a file "Koln.txt" if 
      "Ignore diacritics" is ticked.
      The function needs at least Windows 2000.
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.0202 - 2012-08-17 20:58
    + Configuration | Extended | Custom items in shell context menu | 
      File List: Added one item (for files only):
        Replace with File in Clipboard
      Replaces the contents of the selected file with the contents of 
      the file in clipboard. The selected file keeps its filename, just 
      the contents are updated.
      Notes:
      - You are prompted before the replacement happens.
      - The action cannot be undone, always runs in the foreground 
        and is performed by kernel API (no Custom Copy or Shell Copy 
        involved).
      - The file in clipboard is not deleted even if it had been "cut" 
        to the clipboard.
      - The command is not visible by factory default.      
    + Scripting got a new function.
      Name:   getPathComponent
      Action: Returns the specified component of a path.
      Syntax: getpathcomponent([path], [component])
        path:     The path to parse; can be a folder or a file.
                  Defaults to the current folder or file.
        component: The component to return; can be any of the following:
          drive:  the drive or share
          path:   [default] the path without any file
          parent: the parent folder
          file:   the file without path
          base:   the file without path and without extension
          ext:    the extension
      Notes:
        Paths are returned unslashed.
      Examples:
        echo getpathcomponent(, "file"); //current item without path
        echo getpathcomponent("E:\x\y.txt", "ext");   // txt
        echo getpathcomponent("E:\x\y.txt", "base");  // y
        echo getpathcomponent("E:\x\y.txt", "file");  // y.txt
        echo getpathcomponent("E:\x\y.txt", "parent");// x
        echo getpathcomponent("E:\x\y.txt", "path");  // E:\x
        echo getpathcomponent("E:\x\y.txt", "drive"); // E:
    * Tree: Now when the Tree has the focus and the Back key is used to 
      go Up to the next parent folder you get that smart 200 msecs (I 
      shortened it from 300 to 200 msecs) delay for smoother browsing 
      that has been added in v9.40.0111.
    ! List: On slow network drives or sleepy drives (drives just waking 
      up from sleep mode) there was a faint possibility to get 
      incomplete listings in the file list when using the Up command or 
      attempting a tab switch while the current foldert was not yet 
      fully listed. Fixed.
    ! A small bug in a heavy rotation macro whereby "2" and "²" 
      (superscript 2) were seen as identical characters with respect to 
      the file system (analog to "A" and "a") which they are NOT 
      resulted in surprising behaviors where "2" and "²" were actually 
      distinctive in the file system. Not a common case but possible. 
      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.0204 - 2012-08-18 21:11
    + SC getPathComponent enhanced: Now you can return components by 
      their position index. Negative indices can be used to refer to the 
      position from the right end.
      Syntax: getpathcomponent([path], [component], [index=1])
        component: The component to return:
          component: the component referred to by index
        index:  The index of the component to return. Only used if 
                component is "component". The first component is 1, the 
                last component is -1.
                Invalid indices or index 0 (zero) return nothing.
      Notes:
        UNC paths are stripped off the leading "\\" before applying the 
        index.
      Examples:
        echo getpathcomponent("E:\x\y.txt", "component");     // E:
        echo getpathcomponent("E:\x\y.txt", "component", 1);  // E:
        echo getpathcomponent("E:\x\y.txt", "component", 2);  // x
        echo getpathcomponent("E:\x\y.txt", "component", 3);  // y.txt
        echo getpathcomponent("E:\x\y.txt", "component", 4);  // <nothing>
        echo getpathcomponent("E:\x\y.txt", "component", -1); // y.txt
        echo getpathcomponent("E:\x\y.txt", "component", -2); // x
        echo getpathcomponent("E:\x\y.txt", "component", -3); // E:
        echo getpathcomponent("E:\x\y.txt", "component", -4); // <nothing>
        echo getpathcomponent("\\Mars\Venus", "component");   // Mars
    + Configuration | Color Filters: Added option "Ignore diacritics". 
      Tick it to match Koln with Köln. Applies to name: and dir: filters.
      Note: This setting also affects Spot and Jump matching which now 
      also can ignore diacritics.
    + Toolbar | Toggle Visual Filter: Now the button's context menu 
      features another toggle option:
      - Ignore Diacritics
      If checked then the filter matching ignores diacritics and a 
      filter "Koln" will match a file "Köln.txt".
    % Mouse Down Blow Up: Better placement of blow ups if "Configuration 
      | Preview | Shrink to fit" is ticked. Now it is attempted to 
      position the blow up exactly over the original while taking care 
      that everything is visible. A trade off, but with smaller images 
      clearly better than before where the blow up was just centered in 
      screen.
    % Custom Copy: Now care is taken to prevent the system from entering 
      sleep/standby during long copy or backup jobs. Windows now is kept 
      awake until the copy process is completed.
      This service needs Windows XP or later.
    * XYcopy: Updated to 2.00.0082.
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.0205 - 2012-08-19 12:52
    * SC getPathComponent: Now any trailing colon (:) is removed from the
      returns, so "drive" will now return the drive letter alone: "E" 
      instead of "E:".
      Also now "/" is supported as component separator.
    + Added tweak to modify the Interpolation Mode used with High Quality 
      Image Resampling. This, for example, will set the Interpolation 
      Mode to NearestNeighbor:
        HighQualityImageResamplingInterpolationMode=5
      These are the possible values. The default is 0 which is internally 
      converted to 7 (HighQualityBicubic, the best and slowest mode):
        Default = 0  (defaults internally to 7)
        LowQuality = 1
        HighQuality = 2
        Bilinear = 3
        Bicubic = 4
        NearestNeighbor = 5
        HighQualityBilinear = 6
        HighQualityBicubic = 7
      Notes:
      - This tweak only takes effect when "Configuration | Preview | 
        High quality image resampling" is ticked. It affects the image 
        preview in the Preview tab, the Floating Preview, and the Full 
        Screen Preview, as well as Mouse Down Blow Up when 
        "Configuration | Preview | Shrink to fit" is ticked.
      - These values are passed to a GDI+ function, and there is no 
        further documentation available from Microsoft. For example, I 
        cannot see a difference in quality or speed between 2 and 7 , 
        so: happy experimenting!
      - I made this tweak accessible through the undocumented tweak() 
        function to allow you quicker testing. The key to use is 
        "InterpolationMode", for example:
          tweak("InterpolationMode", 3);
        Note, however, that any active preview is not auto-refreshed 
        after calling this function. You have to manually refresh the 
        preview to see the effect.
    * XYcopy: Updated to 2.00.0083.
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.0206 - 2012-08-20 12:07
    + Configuration | Extended | Type Ahead Find: Added option "Ignore 
      diacritics". Tick it to ignore diacritics in Type Ahead Find (aka 
      Find-as-you-type) in Tree and List. Typing "ö" will match "o" and 
      vice versa.
      Note: This setting also affects Spot and Jump matching. Before, 
      this was controlled by Configuration | Color Filters | Ignore 
      diacritics.
    + SC getPathComponent enhanced: Added two further values for the 
      "component" parameter.
      Syntax: getpathcomponent([path], [component], [index=1])
        component:
          count:    The count of components.
          server:   The server in case of an UNC path, else the drive.
      Examples:    
        echo getpathcomponent("\\Mars\Venus", "count");   // 2
        echo getpathcomponent("\\Mars\Venus", "server");  // Mars
    * SC getkey: Due to the changes in v10.90.0102 - 2012-03-14 13:36 
      and the hard-coding of flags=1 in v10.90.0105 the function became 
      case-sensitive regarding the parameters "key" and "section", 
      probably breaking old user code.
      Therefore the hard-coding of flags=1 has to be reverted to soft-
      coding, in other words the optional parameter "flags" has to be 
      reintroduced:
      Syntax: getkey(key, section, [INIfile], [flags])
        flags:  1: Use XYplorer's native algorithm.
                   Note that key and section are case-sensitive with 
                   this algorithm!
      Notes:
      - XYplorer's native algorithm for reading INI values will return 
        leading TAB characters. The standard Windows algorithm will not.
      - XYplorer's native algorithm is optimized for reading hundreds of 
        keys out of huge INI files. It's not made for picking out single 
        keys as the getkey() function does. So, performance-wise you 
        will suffer a bit for the added functionality.
      Examples where Year=[TAB]2012:
        // returns "2012"
        text getkey("Year", "Vacation", "<curpath>\holiday.ini");
        // returns "[TAB]2012"
        text getkey("Year", "Vacation", "<curpath>\holiday.ini", 1);
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.0207 - 2012-08-21 10:56
    + Configuration | Colors & Styles: Added new selection dropdown for 
      "Grid Style" with three options:
        - Grid Lines: Thin 1 pixel lines between the rows.
        - Alternate Zebra Stripes: Every 2nd row is highlighted.
        - Grouped Zebra Stripes: Every 2nd group is highlighted.
      The options "Grid Lines" versus "Alternate Zebra Stripes" replace 
      the previous checkbox "Zebra Striping".
      The option "Grouped Zebra Stripes" is new and adds a revolutionary 
      display style to the file list: Groups of items are striped 
      depending on the contents of the sorted column. This gives you 
      immediate visual clues about groups of same file types, sizes, 
      dates, etc. Note that the grouping can be more exact than the 
      display if the display is rounded: Two files shown with a size of 
      38 KB each can be in different groups if the exact bytes differ.
      Notes:
      - Grids require "Show Grid" enabled in the file list (menu Tools | 
        Customize List). There is a Toolbar button for this as well.
      - Grids are shown only in views "Details" and "Details with 
        Thumbnails".
      - If the list is not sorted by any column no grid is shown on 
        "Grouped Zebra Stripes".
      - The grid color can be customized using the "Grid" item under 
        "List" in Configuration | Colors & Styles.
      - Grid Style is a global setting (not per Tab).
    ! Tags: If only one item was tagged then removing all tags from this 
      item did not work (the tags were still existing internally during 
      the session). 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.40.0208 - 2012-08-21 18:11
    + Configuration | Colors & Styles: Added another style, "Zebra 
      Stripes: Highlighted Groups", which vastly improves the group 
      spotting experience. Also slightly renamed the old styles:
        - Grid Lines: Thin 1 pixel lines between the rows.
        - Zebra Stripes: Alternate Rows: Every 2nd row is highlighted.
        - Zebra Stripes: Alternate Groups: Every 2nd group is highlighted.
        - Zebra Stripes: Highlighted Groups: Every group is highlighted.
          This new style lets you immediately spot groups.
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.0209 - 2012-08-22 10:41
    * Zebra Stripes: Highlighted Groups: Added a smart algorithm to 
      bring some grouping into the Name column. Each name is scanned 
      from left to right until the letter type changes. Three letter 
      types are recognized: alphabet, numbers, other.
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.50.0000 - 2012-08-22 12:00
    = NEW OFFICIAL RELEASE. Main developments since last release:
  +++ Highlighted Groups. A revolutionary display style where every 
      group of files is highlighted depending on the sorted column.      
  +++ Ignore Diacritics. Find Files, Visual Filters, Color Filters, Spot 
      and Jump, Type Ahead Find now all optionally ignore diacritics 
      (accents on letters: àçöñ...) and thus let you find or mark files 
      with letters your keyboard cannot easily produce.
  +++ Replace with File in Clipboard. New optional context menu command 
      to replace the contents of the selected file with the contents of 
      the file currently in the clipboard.  

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.50.0001 - 2012-08-25 15:38
    + Floating and Full Screen Preview: Added context menu commands to 
      rotate the preview:
      - "Rotate Left" (L)
      - "Rotate Right" (R)
      Notes:
      - Of course, the original image itself is not modfied.
      - The rotate state is remembered for a preview until the file is 
        unselected. You can even switch between Floating and Full 
        Screen Preview while keeping the rotation as long as the file is 
        not unselected.
      - Press F5 (Refresh) to show the preview in non-rotated state, 
        resp. in auto-rotated state if that's enabled.
      - Pixel-exact Mouse Down Blow Up works just fine in rotated 
        previews.
      - The image preview in the Info Panel, if active at the same time 
        as the Floating Preview, is rotated as well. This has technical 
        reasons but might as well be useful.
    + SC compare() enhanced: Added date compare.
      Syntax: compare(string1, string2, [method=b])
        method: d = date: compares dates, optionally including times; 
                    both string1 and string2 default to the current 
                    date/time.
        return: -1  if date1 < date2
                 0  if date1 == date2
                 1  if date1 > date2
      Notes: Valid date syntax depends on your locale.
      Examples: 
        echo compare("24.08.2012", "25.08.2012", "d"); //-1
        echo compare("24.08.2012", "24.08.2012", "d"); //0
        echo compare("25.08.2012", "24.08.2012", "d"); //1
        echo compare("24.08.2012 08:43:01", "24.08.2012 08:43:02", "d"); //-1
        echo compare("24.08.2012 08:43:02", "24.08.2012 08:43:01", "d"); //1
    * Menu Edit | Select: All keyboard shortcuts in this submenu now 
      have global scope, i.e. they function wherever the focus is. 
      Before they would only work when focus was in Tree or List.
      Exception: Ctrl+A is hardcodedto select all text when function is 
      in a textbox.
    * Quick Search: Before, the pattern tags:"" found all *tagged* items 
      without any Tags (i.e. it returned only items present in the tags 
      database for having Labels or Comments or both). Now, it will 
      return *any* items without any Tags. Same for lbl:"" and cmt:"".
      FYI, you cannot find items without any tags (Labels, Tags, or 
      Comments) via the Tags tab because this interface is designed to 
      only search via the tags database and items without any tags are 
      not present in this database.
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.50.0002 - 2012-08-27 20:46
  +++ Duplicate File Finder: Finds duplicate files by name and/or 
      content in any location. Spotting duplicates, especially those by 
      content, can be useful for freeing up storage space.

      XY's dupe finder is implemented as new filter "Dupes" in the Find 
      Files tab. If the filter is active then only duplicate files are 
      listed in the search results, i.e. files that have one or more 
      duplicates in this very search results list.
      
      The meaning of "duplicate" can be defined in the Dupes tab: It's 
      either "Same name", or "Same content", or both.
      
      For "Same content" you can further define the method of 
      comparison: the choices go from MD5 (fastest but least reliable) 
      via SHA-1, SHA-256, SHA-512, to Byte-to-byte (slowest but most 
      reliable). Generally, SHA-1 is thought to be reliable enough for 
      real world usage and hence it is also the factory default.
      Ironically the dupe search will be fastest when they are no dupes, 
      and the speed will be slower the more dupes or near-dupes you 
      have, i.e. files that have to be read and compared down to the 
      last byte.
      
      Tick the "Invert" option to find all singular/unique files; quite 
      useful when comparing two folders that should be in sync.

      The Dupes filter can be combined with all other search filters; 
      dupe check is applied *after* the other filters so if you know 
      what you are looking for you can save a lot of time by pre-
      filtering the checked files by Name, Size, Date, Tags etc.

      The results list of a dupes search features a special column 
      "Dupes" where each group of dupes is referred to by a unique ID 
      starting from number 1 for the first group detected. Sorting the 
      list by this column will bring the duplicate files that belong 
      together into adjacent order.
      A dupes search results list is always initialized to be sorted by 
      the Dupes column. And if sorted by Dupes, the list is internally 
      set to grid style "Highlighted Groups", and the Dupes column is 
      additionally hightlighted white-on-blue for name-only dupes and 
      white-on-green for content dupes (whether name is ticked or not) 
      to clearly display the dupe groups and their nature.
      
      Further Notes:
      - If sorted by Dupes, the internal secondary sorting is by Name. 
        You can change the secondary sorting by holding SHIFT while 
        clicking any other column header, e.g. Modified or Path.
      - If both "Same name" and "Same content" are unticked the Dupes 
        filter is internally deactivated.
      - If looking for "Same content" then only files, no folders, are 
        found. Equally inverted content check will return only singular 
        files, no folders (therefore normal and inverted results do not 
        add up to the total scanned items if folders are among the 
        items.
      - Of course, checking for dupes by content takes a lot of time. 
        Still XY is pretty fast here due to some smart logic. The 
        bottleneck, however, is the HD read speed.
      - Also search results caching is supported dupes searches. But 
        always remember that caches can get stale: it might be that 
        files marked as dupes are not dupes anymore.

    * Configuration | Colors & Styles | Grid Style: Renamed "Zebra 
      Stripes: Highlighted Groups" to "Highlighted Groups" (because it's 
      not zebra stripes the sense of alternating colors, but simply 
      highlighting certain items).
      Also moved the smart Name group highlighting to an additional 
      style "Highlighted Groups (Smart Names)" because it adds a logic 
      clearly different from the normal dumb group highlighting and 
      should therefore be optional.
      Upgraders will need to manually adjust their setting to 
      "Highlighted Groups (Smart Names)" if they used the smart Name 
      group highlighting.
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.50.0003 - 2012-08-29 10:42
    + List | Dupes column: Right-clicking items in the Dupes column when 
      the list is sorted by this column pops a special context menu with 
      two commands for selecting items based on the dupe groups:
      - Select the First Item in Each Group
      - Select the Non-First Items in Each Group    
    + Configuration | Colors & Styles | Grid style: Added some wider 
      "Zebra Stripes" styles that are psychedelically less aggressive 
      than the narrow zebra striping. Now we have the following styles:
        - Grid Lines: Thin 1 pixel lines between the rows.
        - Zebra Stripes: Alternate Rows (1): Every 2nd row is highlighted.
        - Zebra Stripes: Alternate Rows (2): Every 2nd 2 rows are highlighted.
        - Zebra Stripes: Alternate Rows (3): Every 2nd 3 rows are highlighted.
        - Zebra Stripes: Alternate Rows (4): Every 2nd 4 rows are highlighted.
        - Zebra Stripes: Alternate Rows (5): Every 2nd 5 rows are highlighted.
        - Alternate Groups: Every 2nd group is highlighted.
        - Highlighted Groups: Every group is highlighted.
        - Highlighted Groups (Smart Names): Extra-smartness for Names.
      Upgraders might need to manually adjust their setting to keep the 
      style they had before upgrading.
    + SC run enhanced: Added a way to wait for a shelled process to 
      finish *without* a message box.
      Syntax: run command, [directory], [wait=0]
        [wait]:    
          0 = [default] return immediately and continue the script
          1 = Wait, with message: Only continue when the shelled process 
              has finished, show message box "Please wait..." whiloe the 
              process is going on.
          2 = Wait, no message: Same as above but without message box.
      Examples:
        // open Edit.txt in current path using notepad, wait with message
        run "notepad Edit.txt", , 1; msg "Done!";
        // the same but without message
        run "notepad Edit.txt", , 2; msg "Done!";
    + SC formatlist enhanced: The filter parameter on format = "f" now 
      supports inversion by a prefixed "!". If inverted, the filter 
      returns all non-matching items.
      If more than one filter is stated (OR-ed list of filters) the 
      inversion is applied to combined result of all filters. You cannot 
      invert individual filters.
      To use "!" as a normal character in the first position of the 
      filter list you can escape it by "\".
      Examples:
        text formatlist("a|ba|ac|ed|!a", "f", , "a*|*d");     //a|ac|ed
        text formatlist("a|ba|ac|ed|!a", "f", , "!a*|*d");    //ba|!a
        text formatlist("a|ba|ac|ed|!a", "f", , "\!a*|*d");   //ed|!a
    ! Highlighting Groups or Dupes did not work with list style 
      "Highlight Sorted Column" disabled. What a nonsense. Fixed.
    ! Duplicate File Finder: Fixed various display glitches.
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.50.0004 - 2012-08-30 10:49
    + Configuration | Colors & Styles | Grid style: Added another style:
        - Alternate Groups (Smart Names): Every 2nd group is 
          highlighted. Extra-smartness for Names.
    + Floating and Full Screen Preview: Before, the rotate commands only 
      worked for JPG, PNG, GIF, and BMP. Now they work for all previewed 
      file types, even for RAW images, TGA, PDF, and video thumbs.
    + Info Panel | Find Files | Type Filter: Added a new type:
      - Dangerous files: File types that are potentially harmful. Of 
        course, this list cannot be exhaustive.
    * Info Panel | Find Files | Type Filter: Reduced type "Executable 
      files" to just these: .bat.cmd.com.exe.scr.
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