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

v23.80.0020 - 2022-12-02 15:24
    * Toolbar: Now all right-click menus are displayed exactly at the mouse pointer 
      instead of being aligned with the button that was clicked. AFAIK, that's the 
      expected behavior.
: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 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

v23.80.0019 - 2022-12-01 18:56
    + Network: Improved the support for RDP shared drives (\\tsclient).
    * Configuration | Information | File Info Tips & Hover Box | Show file info tips | For 
      executables as well: Now if unticked, you'll still see all the information that can 
      be gathered without triggering an AV-induced delay, which was the original intention 
      of this setting.
    ! Toolbar | Toggle Active Pane, Dual Pane: Buttons didn't really update when they 
      should. 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 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

v23.80.0018 - 2022-12-01 08:58
    + Configuration | Preview | Thumbnails | Show folder thumbnails: Now also PDF files 
      are used as folder thumbnails if all other options fail.
        1. - 5. ...
        6.  The first PDF file among the alphabetically first 50 files. 
    ! Special Property | Length: The length of audio files > 2GB was not displayed. Fixed.
    ! Network Browsing: Fixed a crash bug related to \\tsclient servers.
: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 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

v23.80.0017 - 2022-11-30 19:24
    > More traps to slay a nasty crash bug.
: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 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

v23.80.0016 - 2022-11-30 14:50
    + Scripting got a new function.
      Name:   TagCheck
      Action: Checks and repairs the state of the current tags.
      Syntax: tagcheck(flags, [include_removables])
        flags: (bit field)
          1 = Count orphans.
          2 = Remove orphans.
          4 = Remove dupes.
          8 = Correct capitalization.
        include_removables:
          1 = Also scan items located on removable drives.
              Background: You normally don't want to throw items out of your DB just 
              because a particular USB drive isn't plugged in.
        return: Count of removed, if none count of corrected, if none count of orphans.
      Remark:
        This function does not change any data on disk, just the tags in memory.
      Examples:
        echo tagcheck(1); //returns count of orphans
        echo tagcheck(2); //remove orphans, returns count of removed orphans
        echo tagcheck(4); //remove dupes, returns count of removed dupes
        echo tagcheck(8); //correct capitalization, returns count corrected items
        echo tagcheck(14, 1); //remove orphans and dupes, correct capitalization, include removables
                              //meaning of return value depends on what happened
    + Scripting got a new function.
      Name:   TagSave
      Action: Saves current tags to a file.
      Syntax: tagsave([file], [flags])
        file: Full path to database file.
              If the path or file doesn't exist it will be created without asking 
              questions.
              Defaults to the currently loaded database (<xytagdat>).
        flags: (bit field)
          1,2,4 = [reserved].
          8 = SafeSave: This value is only useful in Multi-User Tagging.
              Before writing, the current saved state of the database is read and matched 
              with the tags in memory. Can be useful in a multi-user tagging context if for 
              some reason your current tags in memory do not match the status of the 
              database on disk.
              Note that whether database is actually read is also controlled by the value 
              of the Admin.ini key TagDatSafeSave. If no Admin.ini exists TagDatSafeSave is 
              0 and the database is not read.
              This flag is ignored if "file" is set to a DB different from the currently 
              loaded database.
        return: "1" on success, else "".
      Examples:
        tagsave(); //save tags now (typically to "<xydata>\tag.dat")
        tagsave(, 8); //save tags now, using the SafeSave strategy
        tagsave("E:\Test\TagsDB\Test.dat"); //save the current tags to this file
    + Tagging: The tag database now gets the author (Windows User ID) and the timestamp 
      (Now) in the first line every time it is written.
        OLD: XYplorer File Tags v5
        NEW: XYplorer File Tags v5 - last modified by Donald, 2022-11-30 09:19:29
      This line is intentionally not translated into non-English languages to make it 
      machine-processable.
    + Special Property | Length: The context menu of the column header now offers the 
      toggles "Show Hours" and "Show Milliseconds". Lets you format the length display the 
      way you like it.
    ! Special Property | Length: Sorting failed on media 1 hour or longer. 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 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

v23.80.0015 - 2022-11-29 21:21
    % Toolbar: Even smarter positioning of extra long drop-down menus.
    ! Toolbar | Back / Forward: Since v21.10.0016 - 2020-09-25 13:18 the dropdown menu was 
      not placed exactly under the buttons anymore. Fixed.
    ! LNK: LNK files pointing to executables in System32 were opened in System32 instead 
      of in the defined working directory. 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 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

v23.80.0014 - 2022-11-29 14:39
    + Small Lists: With no item selected, you can now use Ctrl+Up/Down to move the focus. 
      Windows standard.
    % Toolbar: Smarter positioning of extra long drop-down menus so the menu doesn't 
      appear directly under the mouse pointer. It's not always possible to avoid it, but 
      often it is.
    ! Sync Folders: Sync Folders never supported portable devices, but a corresponding 
      message was missing and you just encountered an error. Fixed.
      This info was also missing from the Help. Fixed as well (comes with next Help update).
: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 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

v23.80.0013 - 2022-11-28 19:58
    + Tools | List Management | Tagged Items...: Experimentally, dirty items (items with 
      unsaved tags) are now shown with a yellow background color (brown in dark mode).
    ! Configuration | Information | Tags | Copy tags on copy operations: Newly tagged 
      items created this way were not yet added to the dirty count. 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 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

v23.80.0012 - 2022-11-28 14:23
    + Catalog: Added another value to the tweak CatalogFlags (bit field):
        32: No drag without CTRL/SHIFT.
      Protects your Catalog from accidental dragging.
    * Admin Settings: The key "TagsFlags" has been renamed to "TagFlags" and been moved to 
      the new [Tags] section just to keep everything together.
        NEW:
          [Tags]
          TagFlags=1          'bit 1 = tags DB headers are read-only
        OLD:
          [AccessControl]
          TagsFlags=1         'bit 1 = tags DB headers are read-only
      Note that TagsFlags will still work in [AccessControl] for backward compatibility.
    % Multi-User Tagging: Now if TagDatSafeSave=1 a superfluous DB reload after 
      self-notification will be skipped.
        [Tags]
        TagDatSafeSave=1
    ! Multi-User Tagging: When another client renamed a tagged item, your instance would 
      hear from the rename via Auto-Refresh, but it did not automatically update the 
      tags-in-memory to be attached to the new name. 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 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

v23.80.0007 - 2022-11-27 19:54
    * Multi-User Tagging: A safety mechanism (called "SafeSave" internally) was 
      implemented on 20221109 where when saving tags, the database was first read, matched 
      to the tags in memory, and only then saved. This mechanism was activated when either 
      a shared database was defined via admin settings ("FileTagDat" key) or when 
      "Configuration | Information | Tags | Auto-refresh tags" was enabled. This latter 
      condition has now been dropped. "SafeSave" is only executed if "FileTagDat" is 
      defined.
    + Admin Settings: Added a new section Tags with a new key TagDatSafeSave which 
      defaults to 1 (if Admin.ini exists but the key is missing).
        [Tags]
        TagDatSafeSave=1
      This key allows the admin to control whether "SafeSave" is used when saving your 
      tags. Meaning of the values:
        0=never
        1=when necessary [Default]
        2=always
      The default 1 ("when necessary") means that the DB will only be read if it has been 
      modified (by someone else) since this instance last read or wrote 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 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

v23.80.0006 - 2022-11-27 09:40
    ! SC inputselect: Since yesterday generic icons were shown for file system items where 
      specific icons should be shown. 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 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

v23.80.0005 - 2022-11-26 18:50
    ! Configuration | File Operations | File Operations | Custom Copy Operations | Check 
      beforehand whether there is enough space: When unticked then the real-time free 
      space calculation of target paths that are junctions or mount points was incorrect. 
      Fixed.
    ! Main Menu: When the main menu was hidden and one of the submenus was displayed via 
      the right-click menu of the toolbar button "Show Menu Bar", some items in those 
      submenus were not updated correctly, were missing, or were not translated in the 
      case of a non-English UI. Fixed.
    * XYcopy: Updated to 2.10.0211.
: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 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

v23.80.0004 - 2022-11-26 11:49
    + SC resolvepath: Now it resolves the wildcard * in the path parameter. The first 
      matching item is used according to NTFS item order:
      In a typical installation, the following two lines return "C:\Program Files 
      (x86)\XYplorer\LicenseXY.txt":
        text resolvepath("<xypath>\*.txt");
        text resolvepath("*.txt");  //resolvepath defaults to <xypath>
    * Tools | List Management | Tagged Items...: For performance reasons, you now only see 
      generic icons when your database contains more than 65,536 items.
    ! Tools | List Management | Tagged Items...: Since 20221121 icons were missing for 
      lists larger than 1000 items. Fixed.
    ! Tags: Moving or renaming selected items did not set the dirty flags for those items 
      and did not increase the dirty count. Fixed.
    ! Multi-User Tagging: If you deleted a tagged file, and then renamed another file to 
      the name of the deleted file, after close and restart the renamed file would inherit 
      the tags of the deleted file. 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 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

v23.80.0003 - 2022-11-25 18:32
    + New variable: Returns the full path to the actual Admin.ini file used (which differs 
      from the default "<xypath>\Admin.ini" in case of redirection):
        echo <xyac>; //actually used Admin.ini file
        text readfile(<xyac>); //show the contents of the actual Admin.ini 
    + SC readfile: Now it supports the wildcard * in the filename parameter. The first 
      matching item is used according to NTFS item order.
        text readfile("<xypath>\*.txt");    //opens the first TXT file
        text readfile("<xypath>\XY*.txt");  //opens the first matching TXT file
    % Custom Copy: The progress dialog now works better for 12 point fonts. No more 
      clipped descenders.
    * XYcopy: Updated to 2.10.0210.
: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 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

v23.80.0002 - 2022-11-24 14:51
  >>> This beta version was compiled with special DEBUG code that will pop error messages 
      where in earlier versions it would just crash. Helps to track down a crash bug. The 
      code will remain in there until further notice.
: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 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