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.90.0427 - 2023-01-20 09:57
    + SC get pick: Now you can reverse the pick order by adding "r" (reverse) to the 
      sort field:
        vi:<pick 12.mr>  //pick the oldest (by modified) 12 files from here
        text get("pick", "4.mr", "Desktop");  //pick the oldest 4 files from Desktop
    + Virtual Folders: Now you can customize the icon using "Tools | Customize File 
      Icons...". You have to be a bit creative to join VFO and CFI syntax in a working 
      way (you cannot use <get ...> variables here), but it can be done:
        vi:*pick*>cup_coffee.ico
        vi:*>omelet.ico
    + Virtual Folders: Now all reports are supported apart from "Tree Structure".
: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.90.0426 - 2023-01-19 19:32
    + Virtual Folders: Now the information bar shows the real path from which the elements 
      come (or the common branch when they come from several places).
    + Variable <get pick ...>: Experimentally the short form <pick ...> can now be used 
      for <get pick ...>, and <pick> for <get pick>.
        text <pick 3.m/{:Image}>;   //pick the latest 3 image files
        vi:<pick 8>                 //pick any 8 files from the current folder
        vi:<pick>                   //pick all files from the current folder
    ! Help | Online Support | Check for Updates: Did not work correctly for Standard 
      licenses. Popped a message "However, your current license is not valid for this 
      upgrade." when this wasn't the case. Fixed.
    ! SC update: Same problem as above. 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.90.0425 - 2023-01-19 13:13
    + SC get pick: Now you can select a certain number of the latest files according to 
      Modified, Created or Accessed date.
      Syntax: <get pick [filter=-1] [folder]>
        filter: if numeric: Number of files (not folders) to pick.
                            -1 [Default]: pick all files.
                            Append .m, .c, or .a to the number to the latest files by 
                            Modified, Created, or Accessed date.
                if textual: Simple filename pattern (case-insensitive: A==a).
                            Automatically surrounded by asterisks if there are no wildcards.
                            A list of patterns separated by | or ; is okay, too.
      Examples:      
        text <get pick 3.m>;              //pick the latest 3 files of the current folder
        text <get pick 3.m %SystemRoot%>; //the latest 3 files (by modified date) in C:\Windows
        vi:<get pick 3.m %SystemRoot%>    //the same as above as VFO
    + SC get pick: Now you can combine number and patterns, separated by /, to select a 
      random set of files of a specific type.
      Examples (all pick from the current folder):
        text <get pick>;              //pick all files
        text <get pick 8>;            //pick any 8 files
        text <get pick 8.m>;          //pick the latest 8 files
        text <get pick *.txt>;        //pick all TXT files
        text <get pick 7/*.txt>;      //pick any 7 TXT files
        text <get pick 7.m/*.txt>;    //pick the latest 7 TXT files
        text <get pick {:Image}>;     //pick all image files
        text <get pick 3/{:Image}>;   //pick any 3 image files
        text <get pick 3.m/{:Image}>; //pick the latest 3 image files
      The same as VFOs:
        vi:<get pick>               //pick all files
        vi:<get pick 8>             //pick any 8 files
        vi:<get pick 8.m>           //pick the latest 8 files
        vi:<get pick *.txt>         //pick all TXT files
        vi:<get pick 7/*.txt>       //pick any 7 TXT files
        vi:<get pick 7.m/*.txt>     //pick the latest 7 TXT files
        vi:<get pick {:Image}>      //pick all image files
        vi:<get pick 3/{:Image}>    //pick any 3 image files
        vi:<get pick 3.m/{:Image}>  //pick the latest 3 image files
      Remarks:
        Simply cool! Are you kidding me?
    + Virtual Folders: Now environment variables are supported:
        vi:%tmp%*
    + Virtual Folders: Now you can append a final comment to your VFO, separated by " //" 
      (one or more spaces before //):
        vi:%tmp%* /f //list all files in TEMP
      If the comment is quoted it is used as the caption of the VFO in many places where 
      the name of the VFO is displayed (title bar, info bar, status bar, tab headers):
        vi:%tmp%* /f //"list all files in TEMP"
        vi:C:*|D:*|E:* //"C/D/E"
        vi:<get pick 3.m/{:Image}>  //"3 newest pics"
    * Virtual Folders: Changed the syntax introduced in v23.90.0422 - 2023-01-17 19:02:
      Now you can specify folders so that the *items* (not just the files) contained are 
      listed. Simply append an asterisk (*) as final character to the path.
      Examples:
        vi:E:\Test\Text*                  //list all items in E:\Test\Text
        vi:E:\Test\Text\*                 //the same (final backslash is optional)
        vi:C:*|D:*|E:*                    //list all items in C:\ and D:\ and E:\
        vi:\\VEGA\shared*|T:\shared*      //list all items in those two locations
      You can limit the listing to only files or only folders by appending a switch to the 
      definition. Note that at least one space must precede the / character:
        vi:E:\Test\Text* /d               //list all folders in E:\Test\Text
        vi:E:\Test\Text* /f               //list all files in E:\Test\Text
      The switch can/must be set per part;
        vi:C:* /f|D:* /f|E:* /f           //list all files in C:\ and D:\ and E:\
      Remarks:
        - No recursion, just first level.
        - This gives you ultrafast treeless browsing of any location, and it gives you an 
          easy and fast way to list the joined contents of several locations.
        - For example, pointing a locked tab to such a VFO gives you quick and indestructive 
          access to files you often need to work with.
    ! Scripting: Block comments (/* ... */) were tolerated without the closing part (*/), 
      everything after /* was removed. Not anymore.
      This worked previously, now it will fail:
        ::echo "hi!" /* comment;
      Now you have to close it:
        ::echo "hi!" /* comment; */
      Or use the other comment style:
        ::echo "hi!" // comment;      
    ! Scripting: Using generic file types like {:Image} within a script and unprotected by 
      quotes did not work:
        text <get pick {:Image}>;   //FAILED, but works now
        text <get pick "{:Image}">; //always worked
      Now both ways work.
: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.90.0424 - 2023-01-18 19:05
    + SC get pick: Now generic file types are supported, e.g. {:Image}. Here, for example, 
      in a VFO:
        vi:<get pick {:Image}>
    % Thumbnails: The number of futile retries has been reduced to zero. If thumbnail 
      creation failed for a specific file or folder, it will now not try again unless an 
      update is specifically requested (Refresh All/Selected Thumbnails).
      Of course, the above assumes that thumbnail caching is enabled.
    * Thumbnails: Experimentally image types that are present but excluded (unchecked) in 
      "Configuration | Preview | Previewed Formats | Category: Image Files" are now also 
      excluded from thumbnails creation. Should reduce some unwanted work.
    ! Small Lists: In a filtered small list the next visible item was not always 
      auto-selected after deleting the current item. Fixed.
    ! Paper Folders / Virtual Folders: When sorted by Name there should have been an 
      implicit secondary sort order by Path. Fix #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 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.90.0423 - 2023-01-18 13:09
    + Virtual Folders: Now Find Files and Quick Search work on Virtual Folders.
      But note that a Quick Search per Address Bar (query appended to path after "?") does 
      not work on Virtual Folders. In this case the "?" is taken to be part of the folder. 
      Virtual Folders are made to tolerate weird stuff.
    + Virtual Folders: Now Folder View Settings are supported.
    * Virtual Folders: Now the tab header tooltip says "Path: ..." if all items listed in 
      the VFO are in the same folder, and "Branch: ..." if not (the branch is then the 
      nearest common ancestor).
    ! Paper Folders / Virtual Folders: When sorted by Name there should have been an 
      implicit secondary sort order by Path. Done.
    ! Virtual Folders: Fixed countless little glitches.
    ! SC listfolder, listpane: Since 23.90.0418, they returned nothing when no pattern was 
      passed. 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.90.0422 - 2023-01-17 19:02
    + Virtual Folders: Now you can specify folders so that the files contained are listed. 
      Simply append an asterisk (*) as final character to the path.
      Examples:
        vi:E:\Test\Text*                  //list all files in E:\Test\Text
        vi:E:\Test\Text\*                 //the same (final backslash is optional)
        vi:C:*|D:*|E:*                    //list all files in C:\ and D:\ and E:\
        vi:\\VEGA\shared*|T:\shared*      //list all files in those two locations
      Remarks:
        - Only files are listed, not folders.
        - No recursion, just first level.
        - This gives you ultrafast treeless browsing of any location, and it gives you an 
          easy and fast way to list the joined contents of several locations.
        - For example, pointing a locked tab to such a VFO gives you quick and indestructive 
          access to files you often need to work with.
    * Virtual Folders: Now a Visual Filter remains intact when you refresh a VFO tab (F5).
    * Virtual Folders: Now the tab header tooltip tells you the "Common Path" (the nearest 
      common ancestor) of all items listed in the VFO.
: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.90.0421 - 2023-01-17 10:49
    * Breadcrumb Bars | Hamburger Menu: Now trailing ";" are tolerated in the menu item 
      definitions.
    * Breadcrumb Bars | Hamburger Menu: Now multiple default (bold) items are tolerated. 
      Only the first of them will be bold, but at least the others are shown now. 
      Previously, they were suppressed because Windows does not allow more than one bold 
      element per level.
    * Configuration | General | Menus, Mouse, Usability | Context Menus: Renamed the "Copy 
      Virtual Path" command to "Copy Special Path". This is more in line with how it's 
      called elsewhere in the app and the docs, and it avoids confusion with the new 
      Virtual Folders.
    ! Tree | Context Menu: Hovering "Copy Special Path" showed the wrong path in the 
      status bar when the menu was not from the current node. Fixed.
    ! Tree / List | Context Menu | Copy Special Path: Did not work alright when in the 
      real path for which also a special path exists. 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.90.0420 - 2023-01-16 19:21
    + Breadcrumb Bars | Hamburger Menu: Now it supports Paper Folders and Virtual Folders 
      as menu items.
    + SC get selecteditemsnames: Added alternative shorthand "sin": <get sin>.
    + SC get selecteditemspathnamesslashed: Added alternative shorthand "sips": <get sips>.
    * Virtual Folders: They got a little more picky about the possible contents. You 
      cannot just do "vi:junk" and expect "junk" to be shown in the file list. It's a 
      *file* list after all. But there are exceptions: Apart from files and folders, 
      one-line scripts are currently tolerated (and run on double-click) and URLs (opened 
      in browser on double-click):
        vi:echo "a";|echo "b";
        vi:https://www.xyplorer.com/xyfc/viewtopic.php?p=206572#p206572
      Note: "tolerated" here means "not documented", "not recommended", and "might be 
      removed later"!
: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.90.0419 - 2023-01-16 12:20
    + SC get selecteditemspathnames: Added alternative shorthand "sip": <get sip>.
    ! Thumbnails: Since 20220806, when switching from Details to Thumbnails, the Details 
      view would sometimes get stuck while the thumbnails were being created. Fixed.
    ! Thumbnails: Fixed a nasty bug where having just one invalid image file (where 
      thumbnail creation failed for some reason) would mess up the cache and lots of 
      thumbnails in the folder and also cause the cache to keep regenerating.
    ! Virtual Folders: XY native variables in the title bad were not resolved on Virtual 
      Folders. 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.90.0418 - 2023-01-15 19:27
    * Virtual Folders: Changed the prefix from "virtual:" to "vi:". Saves the planet.
    + SC get pick: Instead of the number, you can now pass a simple pattern to filter the 
      returns.
      Syntax: <get pick [filter=-1] [folder]>
        filter: if numeric: Number of files (not folders) to pick.
                            -1 [Default]: pick all files.
                if textual: Simple filename pattern (case-insensitive: A==a).
                            Automatically surrounded by asterisks if there are no wildcards.
                            A list of patterns separated by | or ; is okay, too.
      Remarks:
        Cool feature! Allows you, for example, to have locked tabs with the sole purpose 
        to show you a particular subsection of the items in the current tab's folder, say 
        all PNG files: vi:<get pick *.png>
      Examples:
        vi:<get pick *.txt>      //pick all TXT files in the current folder
        vi:<get pick *.txt C:>   //pick all TXT files in C:\
        vi:<get pick y C:>       //pick all files in C:\ with "y" in the name
        vi:<get pick *.jpg;*.jpeg;*.png> //pick all JPG, JPEG, and PNG files in the current folder
        vi:<get pick a|b|c C:>   //pick all files in C:\ with "a", "b", or "c" in the name
    % Virtual Folders: Now VFOs use the thumbnails cache of normal folders if the paths 
      match. This is a major breakthrough when using VFOs like vi:<get pick> for image 
      management. Virtual Folders finally enter the XYplorer highlight zone!
      In multi-location VFOs, now the cache of the largest common path is used. Once again, this 
      largely increases the reuse of existing caches.
    + SC listfolder and listpane enhanced: Now you can pass a list of patterns separated by | or ;.
      Examples:
        List all items in %windir% that contain "x" or "y" in the name:
          text listfolder(%windir%, "x;y", , <crlf>);
        List all items in this pane that contain "fly" or "swim" in the name:
          text listpane(, "fly;swim", , <crlf>);
    + List Management: Now the Editor Mode supports Ctrl+F to open a Find dialog.
: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.90.0417 - 2023-01-15 10:55
    + SC get pick: Now you can pick all files (no folders) by passing -1 as number, which 
      is also the new default value.
      Syntax: <get pick [number=-1] [folder]>
        number: Number of files (not folders) to pick.
                -1 [Default]: pick all files.
      Examples:
        virtual:<get pick>        //pick all files in the current folder
        virtual:<get pick -1 C:>  //pick all files in C:\
        virtual:<get pick  C:>    //pick all files in C:\  (parameter omitted, hence 2 spaces)
    + SC get pick: Now the path can be soft:
        virtual:<get pick 12 %SystemRoot%>
        virtual:<get pick 12 <xyscripts>>
    + SC get pick: Now it also supports Paper Folders:  
        virtual:<get pick 8 paper:Pictures>
    ! Virtual Folders: Live Filtering did not work (anymore?). 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.90.0416 - 2023-01-14 19:07
    + Hover Box | Cycle Status Display: Pressing key "S" while the Hover Box is shown now 
      has a 4th state: Show the *full path* of the hovered item in the status area.
    ! Virtual Folders: Fixed some glitches.
: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.90.0415 - 2023-01-13 17:18
    + Scripting: Added auto-include for scripts that are run directly from the address 
      bar (and only from there). This way you can also use user functions from the address 
      bar (which doesn't allow a proper include statement).
      It works like this:
        - Create a file named "xy-autoinclude.xys" in <xyscripts>.
        - Fill it with the user functions you intend to use. For example:
            function half($a) {return $a/2}
            function sum($x, $y) {
              $z = $x + $y;
              return "$x + $y = $z";
            }          
        - Now you can run these commands right from the address bar:
            echo half(7); //returns 3.5
            echo sum(172,428); //returns "172 + 428 = 600"
        - Note: If "xy-autoinclude.xys" is not found when running a script from the 
          address bar, XY will not try again during that session. Saves speed, energy and 
          material.
    ! Address Bar: Since 20140309 the dropdown matchlist could be one row short. 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.90.0414 - 2023-01-13 13:24
    * Hover Box: Now it can be as small as 64 x 64 pixels. Was previously 100x100 (x 
      screen resolution factor).
    ! Thumbnails and Preview: Since 20211023, EPS files got neither. 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.90.0413 - 2023-01-12 18:34
    + Virtual Folders (VFO), phase 2:
      - Tabs pointing to VFOs now support the Hover Box on the tab icon (if Configuration 
        | Information | File Info Tips & Hover Box | Show Hover Box | Select Context... is 
        enabled for Tabs).
        So if you have tabs pointing e.g. to these locations, just hovering the tab icon 
        (even when the tab is in the background, even in the back-pane) will show a Hover 
        Box with the VFO contents:
          virtual:<get selecteditemspathnames>
          virtual:<clp>
      - Concerning virtual:<clp>
        The Hover Box and the file list assume they are fed with file and folder items. 
        But of course "virtual:<clp>" can contain *anything*. While it shouldn't crash the 
        app, it's certainly not guaranteed to make sense.
      - Virtual Folders are now added to the Recent Locations list and to the 
        History. The danger of endless recursion is now averted.
      - Now you can convert a Virtual Folder to a Paper Folder using View | Paper Folders 
        | Toggle Paper Folder.        
    + SC get got a new named argument "pick" to return a random set of files from a given 
      folder.
      Syntax: <get pick [number] [folder]>
        number: Number of files (not folders) to pick.
        folder: Folder to pick files from. Final backslash is optional.
                Defaults to the current tree folder.
        return: Random set of files, one per line, each with full path.
      Remarks:
        - This has been specially tailored for the new Virtual Folders and is a sheer delight.
        - Within a Virtual Folder just press F5 to pick a new set.
      Examples:
        virtual:<get pick 4>                        //pick 4 from the current tree folder
        virtual:<get pick 12 E:\Test\Text>          //pick 12 from E:\Test\Text
        echo get("pick", 2, "E:\Test\Text");        //same as script
    ! Thumbnails: In "High Speed" quality there could be black lines at the right or 
      bottom side of a thumbnail, due to rounding errors. 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.

Locked