BETA version (with detailed history information)

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

v26.50.0201 - 2024-10-24 22:14
    % Line Numbers: On some systems, setting the line numbers relative font size to a value 
      less than 100% caused noticeable slowdowns in list drawing. Attempt to fix.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0202 - 2024-10-26 13:02
    * Configuration | Colors and Styles | Fonts | Line numbers relative font size (%): 
      Settings < 100% seem to cause mysterious drawing lags on (some?) Chinese and 
      probably other East Asian Windows systems, therefore the factory default for these 
      systems has been changed from 90 to 100.
      Same for "Thumbnail captions relative font size (%)".
    ! Custom Columns: Could show wrong icons for format "Icon" if Custom File Icons were 
      defined for the source path of the icons. Probably since 20241009. Fixed.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0203 - 2024-10-27 16:38
    + Custom Columns: Left-clicking a cell now refreshes the cell (e.g. re-runs the script 
      in the case of a scripted custom column).
    + Custom Columns: Added variable <cc_trigger>. Returns 1 if the cell was left-clicked.
    + Custom Columns: Added variable <cc_cell>. Returns the current textual content of the cell.
    > Custom Columns: The above enhancements now allow you to define scripted custom 
      columns that run a specific part of a script when the cell is displayed, and another 
      part when the cell is left-clicked.
      For example, this script shows the GPS data of a file and, when clicked, opens 
      Google Maps at the location:
        if (<cc_trigger>==1) {
          open("https://www.google.com/maps/place/<cc_cell>");
        } else {
          return get("exif", "gps", <cc_item>);
        }
      As another example, here a left-click will toggle two icons in a column of the 
      format "Icon":
        if (<cc_trigger>==1) {
          if (<cc_cell>=="Help.ico") {
            return "Smiley.ico";
          } else {
            return "Help.ico";
          }
        } else {
          return "Help.ico";
        }
      Those in the know will see that this opens up a whole new world of possibilities.
    % Content-Based Folder Icons: Slightly faster startup and faster tagging when /t 
      switch is active.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0204 - 2024-10-28 12:55
    + Custom Columns: <cc_trigger> now also returns the state of the three function keys:
        Shift = 4
        Ctrl = 8
        Alt = 32
      So, for example, a value of 5 derives from 1 + 4 (Shift+LeftClick); a value of 13 
      derives from 1 + 4 + 8 (Ctrl+Shift+LeftClick).
      This gives you even more control over Custom Column Cell Click scripts.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0205 - 2024-10-28 15:25
    + Custom Column Cell Click: Now it can be enabled/disabled via the new custom column 
      header context menu toggle "Refresh Cell by Click". Like "Skip Custom Columns", this 
      is a global setting for all custom columns.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

admin
Site Admin
Posts: 63404
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @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

v26.50.0300 - 2024-10-28 17:00
    = MAINTENANCE RELEASE.
  +++ Minor bug fixes and enhancements.
To easily upgrade to this OFFICIAL version from XYplorer, click Help | Online Support | Check for Updates. If you prefer to download this new version, choose one of these packages: (1) Installer Package, (2) No-Install Package (for manual unpacking).

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

v26.50.0301 - 2024-10-29 20:59
    ! Live Filter: Under certain conditions it would not work properly for Custom Columns. 
      Fixed.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0302 - 2024-10-30 17:10
    * Updated the help file.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0303 - 2024-10-30 20:25
    * Refresh Cell by Click: The cell content disappeared after a click if the on-click 
      code did not take care of refilling the column. Not good. Now the column content 
      stays the same if the on-click code does not explicitly change it.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.50.0304 - 2024-10-31 16:52
    * XYcopy: Updated to 2.10.0263.
    ! SC sync: The on_collision=4 option ("Overwrite if different contents") did not work 
      properly when the delete_items option was set to 1 ("Delete items in target"). Fixed.    
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

Re: Here's the new BETA

Post by admin »

:off: Summary of the latest XYplorer Official Release.

Direct Download: https://www.xyplorer.com/download/xyplorer_full.zip
Download Page: https://www.xyplorer.com/download.php
Release Notes: https://www.xyplorer.com/release.php

Code: Select all

v26.60.0000 - 2024-10-31 21:00
    = NEW OFFICIAL RELEASE. Main developments since last release:
  +++ Track Tagged Items. Now you can define a custom folder icon for branches that 
      contain any tagged items. Makes it easy to track tagged items throughout the 
      interface.
  +++ View GPS Data. Now you can view formatted GPS data embedded in photo files in a 
      separate column.
  +++ Show Photos in Map. Now you can locate a photo with embedded GPS data on the map 
      with a single click.
  +++ Many Other Improvements. See change log.
:info: To easily upgrade to this new version from XYplorer, click Help | Online Support | Check for Updates. If you prefer to download this new version, choose one of these packages: (1) Installer Package, (2) No-Install Package (for manual unpacking).

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

v26.60.0001 - 2024-11-01 12:38
    ! Line Numbers: On some systems, setting the line numbers relative font size to a 
      value less than 100% caused a mysterious freeze when hovering or clicking on the 
      small lists. Fix attempt.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.60.0002 - 2024-11-01 13:43
    ! Line Numbers: Fix attempt #2.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

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

v26.60.0003 - 2024-11-01 14:42
    ! Line Numbers: Removed the smaller line numbers font size option from all small 
      lists. The freeze was not reproducible, not understandable, not fixable. Well, now 
      there is a radical fix: Feature removed.
:info: To easily upgrade to this BETA version from XYplorer, hold down the CTRL key while you click Help | Online Support | Check for Updates. If you prefer to download the BETA version, choose one of these packages:
(1) Installer Package, (2) No-Install Package (for manual unpacking).

:!!: Note that BETA versions are work in progress and may contain new bugs. You have been warned. It's a good idea to backup your complete XYplorer settings (File | Settings Special | Backup Application Data Folder...) before running a new BETA. This will also help to fix any new bugs.

admin
Site Admin
Posts: 63404
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @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

v26.60.0100 - 2024-11-01 18:00
    = MAINTENANCE RELEASE.
  +++ Minor bug fixes and enhancements.
To easily upgrade to this OFFICIAL version from XYplorer, click Help | Online Support | Check for Updates. If you prefer to download this new version, choose one of these packages: (1) Installer Package, (2) No-Install Package (for manual unpacking).

Locked