Here's the new BETA (32-bit)

Get a glimpse of the next XYplorer...
Locked
admin
Site Admin
Posts: 66431
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

v17.20.0202 - 2016-10-24 21:36
    + Configuration | Tabs | Tab captions | Custom: Added placeholder 
      <volumelabel> which is resolved to the volume label of the tab's drive.
      Example:
        <volumelabel> (<folder>)
      For UNC paths it is resolved to the server name.
    + Configuration | Tabs | Tab captions | Custom: Added placeholder 
      <drivetype> which is resolved to the drive type of the tab's drive.
      Example:
        <drivetype> (<folder>)
      For UNC paths it is resolved to "Network".
    + Configuration | Tabs | Tab captions | Custom: Added placeholder 
      <path> which is resolved to the full path of the tab's folder.
      Example:
        <drivetype> (<path>)
    + Portable Devices: Now you get live status on searching a device.
    + Portable Devices: Now you can abort a search by pressing ESC.
    ! Find Files: The Location field only half-supported relative path notation 
      like this "<xypath>\..\texmf". Fixed. (But don't try this with multiple 
      search paths, you might run out of luck.)
    ! Quick Search: Possible parsing error when searching multiple locations 
      separated by ";". 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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

v17.20.0201 - 2016-10-23 17:17
    + New variable <get char [codepoint][+codepoint][+codepoint]...>. Returns 
      the character (or string of characters) defined by the codepoint(s). Each 
      codepoint is passed as 4-digit hex value, so all 16-bit Unicode characters 
      can be returned here if you know their number.
      Examples:
        echo <get char 0041>; //A
        echo <get char 0041>.<get char 0042>; //AB
        echo <get char 0041+0042>; //AB
      Remarks:
      - There is a shorthand <U+[codepoint]>:
        echo <U+0041>; //A
        echo <U+0041>.<U+0042>; //AB
        echo <U+0041+0042>; //AB
      - 1-digit, 2-digit, 3-digit hex values work as well:
        echo <U+41+42+43>; //ABC
      - Also mixed digit counts is okay:
        echo hexdump(<U+9+09+009+0009>, , "r"); //09 09 09 09
      - This cool new variable allows you to work with characters that are hard 
        or impossible to type or copy to clipboard. For example, you now can 
        easily create a Color Filter that highlights all files with Directional 
        Formatting Codes in the name, e.g. "Right-to-Left Override" (good idea 
        to accompany the patterns with a caption unless you have a very good 
        codepoint memory):
          "Right-to-Left Override" <U+202E>
        The same pattern works as Visual Filter:
          "Right-to-Left Override" <U+202E>
        The same pattern works in Quick Search, so you now can easily find all 
        files with e.g. "Right-to-Left Override" in the name:
          <U+202E> //Right-to-Left Override
    + Find Files: Experimentally XY native varibles are now resolved in the Name 
      pattern. So you now can search for things like <U+202E> or <clp> in the 
      Name box on the Find Files tab.
    * Visual Filters: The following change from v15.10.0015 - 2015-05-16 15:19 
      is now applied *only* to the undocumented variable <get SpotPatterns>. For 
      all other variables it's better to have the unresolved pattern in the MRU.
        "Now any XY variables in a filter pattern are resolved *before* the 
        filter is added to the MRU list. Hence you now can use a Visual Filter 
        like this per tab and across sessions in the expected way:
        <get SpotPatterns>"
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.

admin
Site Admin
Posts: 66431
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

v17.20.0103 - 2016-10-05 11:08
    + List: Experimentally implemented support for the Scroll Lock key in 
      vertical scrolling. If Scroll Lock is ON then the Up and Down arrow keys 
      scroll the list keeping the current item (the focused and selected item) 
      in the same screen position. If scrolling is not possible (list has 
      reached the top or bottom, or has no scrollbar at all) then the keys 
      behave normal (as if Scroll Lock is OFF).
      Note that the Scroll Lock key is not present on all keyboards.
    * Breadcrumb Bars: "Configuration | Tree and List | List | Select last used 
      subfolder" now also takes effect when going to a new location via the 
      Breadcrumb, be it by clicking a node or via the dropdown menu between two 
      nodes.
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.

admin
Site Admin
Posts: 66431
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

v17.20.0102 - 2016-10-03 20:51
    + File | Rename Special | Search and Replace: By default the original file 
      extensions remain unchanged. But now you have a way to overwrite this 
      default using a switch.
      Examples (both are likely to have the same effect in real life):
        txt/text /e   =  replace all 'txt' with 'text' (include extensions)
        .txt/.text /e =  replace all '.txt' with '.text' (include extensions)
      Also recapitalizations of extensions work:
        txt/TXT /e    =  replace all 'txt' with 'TXT' (include extensions)
      Or removing parts from extensions:
        -large/ /e
    * File | Rename Special | Search and Replace: This bizarre syntax from 
      v5.60.0020 - 2007-02-20 19:02 is now declared OBSOLETE and DEPRECATED (but 
      still works for a while):
        before/now\   =  replace all 'before' with 'now' (case-sensitive)
      It is replaced with this syntax:
        before/now /c =  replace all 'before' with 'now' (case-sensitive)
      Switches can be combined as elsewhere in XYplorer:
        TXT/txt /ce   =  replace all 'TXT' with 'txt' (case-sensitive, include extensions)
    ! Scripting: Complex inconsistency. Fixed.
      (cf. https://www.xyplorer.com/xyfc/viewtopic.php?f=2&t=16510)
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.

admin
Site Admin
Posts: 66431
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

v17.20.0101 - 2016-10-02 18:24
    * SC obfuscate: From now on all text columns are obfuscated. Before, only 
      Name and Path were obfuscated.
    * Wipe: The Wipe confirmation prompt defaulted on Cancel. Now it defaults on 
      OK. Actively selected commands should default on OK.
    + SC get("curitem") and get("curitemprev") enhanced: Called with parameters 
      "base" or "ext" folders were treated as if they were files. But folders 
      have no extensions. Added a flag to control this behavior.
      Syntax: get("curitem", [part], [flags])
              get("curitemprev", [part], [flags])
        flags: (bit field)
          1 = Mind folders when returning "base" or "ext".
      Examples:
        text get("curitem", "base");    //treats file and folders the same
        text get("curitem", "base", 1); //treats folders differently
    + SC getpathcomponent (gpc) enhanced: Called with parameters "base" or 
      "ext" folders were treated as if they were files. But folders have no 
      extensions. Added a new flag value to control this behavior.
      Syntax: getpathcomponent([path], [component], [index=1], [flags])
        flags: (bit field)
          1 = Return from start
          2 = Return till end
          4 = Mind folders when returning "base" or "ext".
      Examples:
        echo getpathcomponent("<curitem>", "base", , 4);
        echo getpathcomponent("<curitem>", "ext", , 4);
    ! Preview Pane and Quick File View: App would crash on viewing huge files (> 
      4 GB) if their preview was a hex view (since 20160304). 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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

v17.20.0100 - 2016-09-28 21:00
    = MAINTENANCE RELEASE.
  +++ Minor bug fixes and enhancements.

v17.20.0033 - 2016-09-28 20:15 - unpublished
    ! Variables: The <file> variable was not resolved when found within quotes. 
      Fixed.
      FYI, that fix means you now can do this cool Quick Search by contents 
      (where the contents are read from another file). The quotes are needed for 
      correct parsing of the switche(s), else a "/" within the contents could 
      spoil it.
        ?/contents="<file E:\Test\content search\switch\Needle-Bad.txt>"
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.

admin
Site Admin
Posts: 66431
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

v17.20.0032 - 2016-09-28 16:24
    + SC obfuscate: Now you can pass strings with basic wildcards (*, ?).
      Examples:
        obfuscate, , "Yamaha*"; //will completely obfuscate "Yamaha YZR500.png"
        obfuscate, , "*.jpg";   //will completely obfuscate all JPGs
    ! SC obfuscate: Visual Filters in tab captions were not yet obfuscated. Fixed.    
    ! SC getpathcomponent (gpc): Component "parent" returned the item itself 
      when there was no parent. Fixed. Example:
        echo getpathcomponent("y.txt", "parent");    // "" (empty)    
    ! Wipe: Stopping Wipe by ESC did not work correctly since v17.20.0004 - 
      2016-09-26 21:12. 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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

v17.20.0031 - 2016-09-27 21:28
    ! Last beta had remnants of debug code that made it dysfunctional. 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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

v17.20.0030 - 2016-09-27 21:02
    * Locked Tree: Now when you collapse the parent of the current node the 
      current folder will remain the same. Before, the parent folder became the 
      new current folder (which still and rightfully happens with an unlocked 
      tree).
      The new behavior is okay, or even expected, because the Locked Tree may be 
      out of perfect synch with the List. It's its very nature.
      FYI, this behavior had also been introduced in v16.20.0005 - 2016-01-21 
      20:26, but later removed because there were some bugs related to it. These 
      bugs are now fixed.
    ! Locked Tree: Still a drawing glitch possible with Tree Path Tracing when 
      collapsing a node. Fixed.
    ! Portable Devices: On Win10 the automatic refresh on plug in/out did not 
      work. Fixed.
  !!! Portable Devices: Crash when starting the app with certain portable 
      devices plugged in (e.g. iPhone 6, Nexus 4, Nexus 10). 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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

v17.20.0004 - 2016-09-26 21:12
    + Tweak TabReuseTabs: Now it's a bit field. Value 2 (via Tree) is new.
        TabReuseTabs=...
        1:  Re-use existing tabs when changing locations through 
            Favorite Folders, Favorite Files, Special System Folders, Hotlist, 
            Recent Locations, or Catalog.
        2:  Re-use existing tabs when changing locations via Tree.
        3:  Both.
    * App exit: Now when you attempt to exit the app while some operation is not 
      yet finished you are prompted whether you want to abort the ongoing 
      operation or let it continue.
      Before, the operation was aborted without questions.
    * Wipe: Now the Status Bar shows real time file by file progress of the 
      ongoing wipe operation.
    ! Locked Tree: Drawing glitch with Tree Path Tracing when you opened a node 
      in the tree that made the current path visible. Fixed. Now the "snake" is 
      redrawn to include the full current path.
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.

admin
Site Admin
Posts: 66431
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

v17.20.0003 - 2016-09-24 18:45
    + Backup / Custom Copy Configuration: Added option "Ask before merging 
      folders". If checked then you are asked before any of the folders you are 
      copying or moving are merged with same-named folders in the target 
      location.
      Notes:
      - The setting is ignored if "Rename folders on collision" is ticked! In 
        that case no merging can happen anyway.
      - The "Merge Folder?" prompt is popped for each folder to be merged 
        (unless you tick "Do this also for the next cases" before pressing OK or 
        Skip).
      - All "Merge Folder?" prompts are popped before any files are moved or 
        copied.
      - Factory default for Backup is OFF, for Custom Copy it's ON.
    * List, Tree, Catalog: Before, input focus attributes (selected items 
      highlight color, dotted focus line) remained active when the app lost 
      focus because another app moved to the foreground, so XY still *appeared* 
      to be in focus while it was not. Now the expected "non-focused" attributes 
      are set as long as the app is in the background.
    * XYcopy: Updated to 2.10.0090.
    * Tweak TPTWidth: Improved the drawing of the first level vertical snake. 
      Now it's always visible.
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.

admin
Site Admin
Posts: 66431
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

v17.20.0001 - 2016-09-21 09:39
    + Single File Search: Now, experimentally, paths with *forward* slashes are 
      supported as well.
    > TIP: The Breadcrumb Bar's right-click menu command "Paste and Search" 
      nicely connects with Single File Search. You just need the full path to 
      something in the clipboard.
    * Backup, Custom Copy: The progress dialog now shows the number skipped 
      bytes in real time. Before, it was shown only when the whole job was done.
    * Scripting: Multi-script menu captions were cut (ellipsed) at 40 
      characters. Now they are cut at 256 characters.
    * Tree: When hovering a collapsed tree node longer than 0.8 seconds that 
      node automatically expands. From now on, this only happens when you hover 
      the expansion icon, the folder icon, or the folder caption, but not on any 
      other part of the node row. This gives you a little more control.
    * MLS: Internally updated to version 8.81.
      > TRANSLATORS: Please wait until Reference_8.81.lng is uploaded.
        You will be notified if you have subscribed to this thread:
        https://www.xyplorer.com/xyfc/viewtopic.php?f=12&t=9648
    ! Visual Filter: When toggling a normal or Global Visual Filter the current 
      item was still not kept in view in any list view with more than one item 
      per row. 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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

admin
Site Admin
Posts: 66431
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: https://www.xyplorer.com/download.php

Code: Select all

v17.20.0000 - 2016-09-19 15:00
    = NEW OFFICIAL RELEASE. Main developments since last release:
  +++ Single File Search. Quickly list a single file at any given location 
      without tediously expanding the folder tree and browsing the whole 
      directory first. It's like a wormhole to any point in your file system.
  +++ Type Stats and Filter. Lost track of what you have selected? Type Stats 
      gives you the numbers. Filter lets you narrow things down.
  +++ Custom Copy. Now you have a Retry button in case of failure. There's 
      always a second chance.
  +++ Custom Vorbis Tags. Now you can display, search, or color code whatever 
      custom tags you might expect in your FLAC and OGG files.
  +++ Audio Tags. Now the Composer tag in Vorbis Comments (FLAC and OGG) is 
      natively supported additionally to Album, Artist, Comments, Composer, 
      Genre, Title, Track, and Year.

admin
Site Admin
Posts: 66431
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

v17.10.0008 - 2016-09-18 14:54
    * View | Show Items | Toggle Global Visual Filter: Now the current item is 
      kept in view.
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.

admin
Site Admin
Posts: 66431
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

v17.10.0007 - 2016-09-17 19:35
    + Configuration | Startup & Exit: Added option "Reconnect mapped network 
      drives on startup". If ticked then on startup all non-connected mapped 
      network drives are reconnected. Note that this can lead to notable delays 
      if the network is unavailable.
      Elevates former tweak NetworkReconnectMappedDrivesOnStartup to UI.
    * Updated the help file.
    * Safety Belts: Changed buttons from Yes/No to OK/Cancel).
    * List | Search Results (Quick Search): Changed the color of the optional 
      information bar again to something called "Cornflower". Search is now blue.
    ! Single File Search: Fixed a couple of bugs.
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.

Locked