BETA version (with detailed history information)

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

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0203 - 2022-05-02 20:13
    + Custom Status Bar Info / Property Variables: Now you can add formatting instructions 
      to the value placeholder. Remember that the template must be enclosed in single or 
      double quotes if a space is included:
        echo <prop System.Video.TotalBitrate 'Bitrate: *'>;     //Bitrate: 409600     (no formatting)
        echo <prop System.Video.TotalBitrate 'Bitrate: *n'>;    //Bitrate: 409,600    (number formatting)
        echo <prop System.Video.TotalBitrate 'Bitrate: *b'>;    //Bitrate: 400.00 KB  (bytes formatting)
        echo <prop System.Video.TotalBitrate 'Bitrate: *kbps'>; //Bitrate: 462kbps    (kb per sec formatting)
    + Network: Improved the support for VmWare Shared Folders, attempt #3.
    + Paper Folders: Now the PF source files can be UTF-8 encoded.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0204 - 2022-05-03 13:54
    + Network: Implemented a fallback method for all servers where the default method 
      doesn't return any shares.
    > Added various debug logs.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0205 - 2022-05-04 10:04
    + Network: Improved the support for VmWare Shared Folders. Auto-refresh should work 
      better now.
    ! Configuration | General | Sort and Rename | Rename | Resort list immediately after 
      rename: Disabling this was not honored on network paths in Win 10 and later. Tried a 
      fix.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0206 - 2022-05-04 19:37
    + Network: Improved the support for VmWare Shared Folders. Auto-refresh should work 
      better now. #2.
    > Removed various debug logs.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0207 - 2022-05-05 13:06
    * Catalog: A location ".." was by default resolved relative to app path. Nobody needs 
      this. Now it is resolved relative to the current path.
      Exception: tweak ABRelativeToAppPath is set to 1.
    * A relative path "E:\.." is now resolved to "This PC". Before, it was resolved to "E:\".
    ! Address Bar: Double dot ("..") did not go up to "This PC" when the current path is a 
      drive. Fixed.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0208 - 2022-05-06 10:45
    + New variable: <xyparent> = parent of XYplorer app path (unslashed). Points 
      to "<xypath>\..".
    + SC getpathcomponent(), gpc(): Added component value "dos" to convert a long
      path spec to DOS format (aka 8.3 format).
      Remarks:
        - Yes, that's a bit of an abuse of this function, but tolerable I think.
        - Only the valid (existing) part of the input path is returned.
        - The return is always without trailing backslash, even if the input had one.        
        - Note that in Windows the 8.3 file naming can be enabled/disabled per drive. If it is disabled 
          then this function returns the (valid part of the) input unchanged (apart from 
          removing any trailing backslash).
      Example:
        echo getpathcomponent("C:\Program Files", "dos"); //C:\PROGRA~1
    + SC getpathcomponent(), gpc(): Added component value "long" to convert a DOS/8.3 
      path spec into the long format.
      Remarks:
        - See above under "dos".
      Example: 
        echo getpathcomponent("C:\PROGRA~1", "long"); //C:\Program Files
    + SC getpathcomponent(), gpc(): Added flag values to convert a path to and from 
      DOS/8.3 format, and a new component value "full".
      Syntax: getpathcomponent([path], [component], [index=1], [flags])
        component: 
          full:   Return all components of the input path.
        flags: (bit field)
          8 = Convert long format to DOS/8.3
         16 = Convert DOS/8.3 to long format
      Examples:
        echo getpathcomponent("C:\Program Files", "full", 3:=8);  //C:\PROGRA~1
        echo getpathcomponent("C:\PROGRA~1", "full", 3:=16); //C:\Program Files
        echo getpathcomponent("C:\Program Files\AutoHotkey\AutoHotkeyU64.exe", "file", 3:=8);  //AUTOHO~3.EXE
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

:off: Summary of the latest XYplorer Official Release.

Download Page: https://www.xyplorer.com/download.php

Code: Select all

v23.00.0300 - 2022-05-06 20:00
    = MAINTENANCE RELEASE.
  +++ Minor bug fixes and enhancements.
To download this OFFICIAL version choose a package: (1) Installer Package, (2) No-Install Package.

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

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0301 - 2022-05-09 14:10
    * Configuration | File Operations | File Operations | Custom Copy Operations | 
      Configure...: Renamed "Skip verification on hard disks" to "Skip verification on 
      local hard disks". Copying across network is usually also between hard disks, so the 
      word *local* here makes the important difference.
    * XYcopy: Updated to 2.10.0188.
    ! Tools | Customize File Icons...: Fixed a rare drawing glitch related to extracted 
      icons.
    ! Since v23.00.0207 - 2022-05-05 13:06 folders with invalid names ending in two or more 
      dots could not be deleted anymore. Fixed.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0302 - 2022-05-10 13:30
    * Factory Defaults: The date columns now start wider (137 instead of 115 pixels) to 
      match the standard US date style, e.g. "10/20/2021 11:37:43 AM".
    * Custom Copy: Improved the prompt you see when source folders could not be removed 
      (due to being locked by another process) after their contents were moved. Now you 
      get a chance to retry the removal.
    * XYcopy: Updated to 2.10.0189.
    ! Tags: After moving a folder, where the operation fails to remove the source folder 
      after all of the contents have been moved (due to being locked by another process), 
      the tags of the moved items were lost (not moved along). Fixed.
    ! Deletion while thumbnails are being generated: You could get an error 10 here, 
      harmless but still not nice to have. Fixed. Won't happen anymore.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0308 - 2022-05-12 11:31
    + Configuration | Other | Shell Integration | 64-bit Windows: Added option "Open files 
      from 64-bit process". Enable it to always open files from a 64-bit process instead 
      of a 32-bit process. This affects how some environment variables are resolved.
      Notes:
      - Affects all sorts of open, e.g. by menu "File | Open", by "File | Open with...", by 
        Enter, or by Double-click on a file.
      - PFA (Portable File Associations) is supported.
      - Technically, this is done by passing the open command through a 64-bit helper app.
      - Of course, the setting is ignored on a 32-bit Windows edition.
    + SC open64 (opens files from 64-bit process; not yet officially documented): Added a 
      parameter to pass an Open-With-Application.
      Syntax: open64 [file_to_open], [app_to_open_file_with]
        file_to_open: Full path to file to be opened.
                      Defaults to focused and selected item.
        app_to_open_file_with: Full path to application to open the file with.
                      If omitted then the OS-associated app is used if any. If there is no 
                      OS-associated app you will end up with an error message.
      Examples:
        open64; //open current item with OS-associated app
        open64 , "C:\Program Files\Notepad++\notepad++.exe"; //open current item with Notepad++
        open64 "D:\Test.txt", "C:\Program Files\Notepad++\notepad++.exe"; //open "D:\Test.txt" with Notepad++
    * XY64: Updated to 1.0.0.28.
    % Configuration | Other | Shell Integration | 64-bit Windows | Show the 64-bit context 
      menu: The menu opens much faster now (about factor 7). Thanks to highend for AHK 
      skills and Antieve for the impulse!
    * XY64ctxmenu: Updated to 1.2.7.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0309 - 2022-05-13 15:37
    + Find Files and Quick Search: Added switch /V by which only visible subfolders of the 
      search location are traversed recursively, i.e. subfolders with the HIDDEN attribute 
      are not searched IF "Configuration | General | Tree and List | Items in Tree and 
      List | Show hidden files and folders" is OFF. Example:
        *.ini /V
    % Browsing and many other things should be slightly faster due to the implementation 
      of a small labor-saving flag in one of the most frequented places in the code.
    % Configuration | Other | Shell Integration | 64-bit Windows | Show the 64-bit context 
      menu: The menu opens even faster now and doesn't need any temp file anymore.
    * XY64ctxmenu: Updated to 1.2.8.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0310 - 2022-05-13 19:30
    + Configuration | Find and Filter | Find Files & Branch View | Find Files: Added 
      option "Persist quick search across folders". Tick it to directly repeat the same 
      quick search on the next folder you go to within the current tab.
      Notes:
      - If you click the current folder again in the tree the quick search mode is ended.
      - The setting is also available in the context menu of the search information bar in 
        the file list.
      - FYI, this functionality existed already prior to v4.00.0008 - 2005-04-05 16:09 but 
        then was dropped with the following note:
          Dropped "Automatic File Find when Browsing" (under menu Tools). 
          The functionality might be reintroduced later, this time by tab.
        17 years later it was about time!
    + Configuration | Information | File Info Tips & Hover Box | Show file info tips: Now 
      the bitness (32-bit or 64-bit) is shown at the end of the tooltip for all DLL and 
      EXE files.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0311 - 2022-05-14 10:04
    + Configuration | Find and Filter | Find Files & Branch View | Find Files: Added 
      option "Skip invisible subfolders". Enable it to not scan folders not shown by 
      current settings (i.e. HIDDEN folders if "Show hidden files and folders" is OFF, and 
      SYSTEM folders if "Show system files and folders" is OFF).
      The effect is identical to using the new /V switch.
    + Configuration | Information | File Info Tips & Hover Box | Show file info tips: Now 
      the bitness (32-bit or 64-bit) is shown at the end of the tooltip for the following 
      file types:
        .8bf.acm.asr.ax.bpl.com.cpl.deu.dll.dpl.drv.exe.fon.ime.lx
        .ocx.olb.qts.qtx.scr.sys.tlb.tpl.tsp.vbx.vxd
      Bitness can only be determined for MZ executables.
      If the bitness cannot be determined, nothing is returned.
    ! Quick Search: Broken in v23.00.0310 due to some "optimization". Fixed.
    ! Quick Search: A search pattern "%TEMP%;<xypath>? /fn" would not survive a tab 
      switch. Fixed.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0313 - 2022-05-14 17:33
    * Configuration | Information | File Info Tips & Hover Box: Packed the two field lists 
      into buttons "Select Standard Fields..." and "Select Extra Fields...". Relaxes the 
      page and has the great advantage that the pop-up lists can be filtered, which is a 
      blessing with more than 300 entries.
      Note:
      - The line numbers in "Select Standard Fields..." are 0-based because that's how 
        the Windows properties indices work internally and it's easier for coders this 
        way. Just for symmetry, the same is done in "Select Extra Fields...".
    * Configuration | Find and Filter | Find Files & Branch View | Find Files | Follow 
      junctions: Applying a change in this setting will now automatically repeat all open 
      searches to reflect any consequences.
    * Configuration | Find and Filter | Find Files & Branch View | Find Files | Skip 
      invisible subfolders: Applying a change in this setting will now automatically 
      repeat all open searches to reflect any consequences.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v23.00.0314 - 2022-05-16 17:43
    ! Configuration | Other | Shell Integration | 64-bit Windows | Open files from 64-bit 
      process: Did not work with Configuration | File Operations | File Operations | 
      External Copy Handlers. Fixed.
    ! Quick Search: A search pattern "e:\test|e:\temp? /fn" would not survive a tab 
      switch. Fixed.
:info: To update to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. To download it, choose a 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