Here's the new BETA (32-bit)

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

v10.80.0013 - 2012-01-25 14:48
    % Better placement of captions in tabs depending on font size and 
      display settings. Also on non-standard DPI settings under Win7 the 
      tab height has been somewhat reduced.
    % Better placement of dialogs: Now it is ensured that no parts are 
      outside the monitor when a dialog is popped up centered over the 
      main form.
    * Network: Now you can browse network locations even when Mini Tree 
      is OFF and "Configuration | General | Show Network folder" is OFF.
      The Tree is then bypassed (and displayed greyed, see below) and 
      only the list is used to browse the location.
    * Tree: Now, a Tree bypassed by browsing (i.e. the browsed location 
      is not shown let alone selected in the Tree) is displayed with a 
      grey background, resp. with the color you have defined for Locked 
      Trees.
      Reason: This makes it immediately clear that Tree and List are not 
      synched and protects you from false assumptions and potentially 
      fatal decisions.
      Note: The Locked Tree color make sense here since being out of 
      sync with the list is a core property of the Locked Tree. Also 
      there will be no conflict or loss of information when your Tree IS 
      already locked because again, as a Locked Tree user you live with 
      an out-of-sync Tree by choice.
    ! Network: On a maxi tree the network special folder was not always 
      filled under certain conditions. Fixed.
    * Scripting | HereDoc: Now the radical parsing (ending identifier 
      can be anywhere) is enabled when the identifier starts with a "#".
        ---------------------------------------------------------------
        $isOk = Confirm (<<<#FOO
        Blah
        BlahFOO#FOO); echo $isOk;
        ---------------------------------------------------------------
      Otherwise the old-school parsing is enabled (ending identifier 
      must be on own line): 
        ---------------------------------------------------------------
        $isOk = Confirm (<<<FOO
        Blah
        BlahFOO
        FOO
          ); echo $isOk;
        ---------------------------------------------------------------
    - Scripting | HereDoc: Tweak ScriptHereDocEndsAnywhere has been 
      removed.
    ! Scripting | HereDoc: The last line feed was lost on the following 
      construct:
        ---------------------------------------------------------------
        $isOk = Confirm (<<<#FOO
        Blah
        Blah#FOO); echo $isOk;
        ---------------------------------------------------------------      
      Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0014 - 2012-01-26 12:43
    * List: Now, when temporary folder sizes are displayed (triggered by 
      menu View | Calculate Folder Sizes) then a Refresh List (or Auto-
      Refresh event) will also refresh the folder sizes. Before, they 
      would have vanished.
    ! Placement of some dialogs wrong (since v10.80.0013) on dual 
      monitor setups. Fixed.
    ! Due to a sensational bug in the FindFirstFile API which failed to 
      filter out items with extensions longer than 3 characters (the bug 
      is present even in Win7!), some routines had to be rewritten to 
      work around this bug. Done.
    ! SC listfolder: The above fix also fixes the issue here.
    * XYcopy: Updated to 2.00.0074.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0015 - 2012-01-26 20:07
    * The Favorite Folders right-click menu of the Tree's white space 
      now shows the cleaned and resolved items in the Status Bar when 
      you are hovering the menu.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0016 - 2012-01-27 17:58
    ! Status Bar: Since v10.80.0015 there were drawing glitches 
      sometimes. Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0018 - 2012-01-28 11:52
    + SC tab enhanced: New operation "lockhomezone", analog to "Lock 
      Home Zone" in menu View | Tab.
      The "data" parameter, if missing, toggles the status, whereas 0 
      unlocks and 1 locks. The "index" parameter can be used to define 
      the tab to lock to home zone (leftmost tab = 1).
      Examples:
        //toggles the Lock Home Zone status of the current tab
        tab("lockhomezone");
        //sets the Lock Home Zone status of the current tab ON
        tab("lockhomezone", 1);
        //toggles the Lock Home Zone status of the second tab
        tab("lockhomezone", , 2); 
        //sets the Lock Home Zone status of the second tab ON;   
        tab("lockhomezone", 1, 2);    
      If a tab has no home you get an error message.
    * Updated the help file.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0019 - 2012-01-29 14:12
    % Configuration | Thumbnails | Show dimensions of original image on 
      thumbnail: Now the dimensions are shown on a semi-transparent 
      background positioned in the lower right corner of the thumbnail.
    ! Image drop from the web: Would not auto-rename on collisions and 
      thus possibly cause unprompted overwrites. Fixed.
    ! Tabsets: All Save / Save As / Save Copy As operations only worked 
      when "Configuration | Startup & Exit | Remember most-recently-used 
      lists | Apply To | Tabs" was ticked. Fixed: Now the saving works 
      independently of this setting.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0101 - 2012-01-30 15:02
    ! Preview: Non-previewed formats (either excluded from preview by 
      user, or not previewable) were not handled correctly anymore, and 
      the tweaks PreviewShellIfNoneBetter and PreviewRawIfNoneBetter 
      also stopped functioning. All this since 20120102. Now it's fixed.
    ! Placement of some dialogs wrong (since v10.80.0013) on dual 
      monitor setups on some systems. Fixed #2.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0102 - 2012-01-31 12:41
    + Variable <get [Command ID] [ReturnOnTrue = 1] [ReturnOnFalse = 0]> 
      now also supports the following Command IDs:
        #333 = Sort Folders Apart
        #480 = Auto-Refresh
        #488 = Lock Tree 
        #489 = Mini Tree
        #491 = Show Floppy Drives
        #492 = Show Hidden Drives
        #493 = Show Hidden Files and Folders 
        #494 = Show System Files and Folders  
        #495 = Show Junctions 
        #496 = Show Folders in List
      Example:
        echo get("#489", "Mini Tree", "Maxi Tree");
    * Changed some of the the factory default thumbnail sizes. Monitors 
      and drives are bigger nowadays. Now it's:
        Thumbnails #1:  96 x  72
        Thumbnails #2: 128 x 128  (before:  96 x 96)
        Thumbnails #3: 180 x 180  (before: 128 x 96)
    - Removed this experiment from v10.60.0112 - 2011-12-01 21:00, 
      unless the files are image files:
      * Thumbnails: Experimentally added status feedback for all thumbs 
        that are about to be freshly created (that are not found in any 
        cache). This will cost a little time but I think it's worth it.
      Reason: Too time consuming on larger folders, and also irritating.      
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0103 - 2012-02-01 11:59
    ! Tree: The commands in the Mark submenu of the folder context menu 
      were not applied on any right-clicked folders but always on the 
      current folder. Bug is about a year old. Fixed.
    ! SC renameitem: Did not work as expected for folders when their 
      names had dots in them. Fixed.
      This will now work  as expected irrespective of any dots in the 
      folder or file name:
        text renameitem("CHANGED-- *", <curitem>);
    * XYcopy: Updated to 2.00.0075.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0105 - 2012-02-01 21:46
    + Color Filters: Added "dir:" as new selector for directory name 
      filters. These are name-based filters that are applied to folders 
      in Tree and List.
      Example:
        dir:v*    = color all folders named v*
      Note: The option "Apply all checked "dir:" and "attr:" patterns to 
      the Tree" has to be ticked to take effect on the Tree.
    * Configuration | Color Filters: Slightly reordered and reworded.
    + Configuration | Startup & Exit: Added dropdown "Startup window 
      state". Allows you to always start with a certain window state, or 
      with the last window state (factory default).
    - Configuration | Startup & Exit: Removed option "Startup 
      minimized". Has been replaced by dropdown "Startup window state".
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0106 - 2012-02-02 14:19
    + Toolbar | Favorite Folders / Favorite Files: Added Toggle command 
      to the right-click menu.
    ! Visual Filters: On toggling sometimes specific icons were not 
      shown but only the generic ones. Fixed.
    * Updated the help file.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0107 - 2012-02-02 19:58
    + SC property enhanced: Now some XYplorer-specific named arguments 
      are supported. They all have to be preceded by # to distinguish 
      them from Windows shell properties. They are not case-sensitive.
        #LinkTarget     = Shortcut Target
        #ShortcutTarget = Shortcut Target (same as #LinkTarget)
        #JunctionTarget = Junction Target
        #Label          = Label
        #Tags           = Tags
        #Comment        = Comment
      If the property is not applicable to the file in question then 
      nothing ("") is returned.
      Examples:  
        text property("#label");  //defaults to current list item
        text property("#linktarget", "E:\Test\funstuff\Icons.lnk");
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0108 - 2012-02-03 12:25
    + Now also variable <prop> supports the same XYplorer-specific named 
      arguments as SC property, e.g.:
        text <prop #label>;
        text <prop #ShortcutTarget>;
    ! Custom Copy/Move: Copying or moving an empty folder did not auto-
      refresh the Tree correctly. Fixed.
    * XYcopy: Updated to 2.00.0076.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0201 - 2012-02-07 12:26
    + Toolbar: Added button to show the shell properties (Alt+Enter). 
      Used the icon of the "Properties Tab" button for this, and gave a 
      new icon to the latter button.
    + Scripting: Now, foreach loops can be run in reverse direction. To 
      achieve this, a 4th parameter "flags" has been added to the syntax:
        foreach($variable, listoftokens, [separator=|], [flags]) {
          statement(s);
        }
        flags: Can be either empty (default) or set to "r" for "reverse 
               direction".
      Example 1:
        // returns 3 strings (moon, sun, venus):
          foreach($token, "moon,sun,venus", ",") {
            echo $token;
          }
      Example 2:
        // returns 3 strings (venus, sun, moon):
          foreach($token, "moon,sun,venus", ",", "r") {
            echo $token;
          }
    + SC formatlist enhanced: Added format "v" for "reverse sort".
      Syntax: formatlist(list, [format], [separator=|], [param])
        format:   Switches for the desired formatting. Can be freely 
                  combined in any order.
          v = reverse sort
        param:    (unused)
      Examples:
        text formatlist("bca", "v", ""); //acb  (reverse)
        text formatlist("bca", "r", ""); //cba  (descending)
        text formatlist("bca", "s", ""); //abc  (ascending)
    + SC property enhanced:
        #ResolveNestedJunctions     = path with all junctions resolved
        If path has no junctions, then it is returned unchanged.
    + Configuration | Advanced: Added option "Resolve nested junctions". 
      Tick it to automatically resolve junctions when entered through 
      the Address Bar or similar ports (Catalog, Favorites, Go to ...).
      This setting has been already available for a while as tweak 
      "ResolveNestedJunctions". The tweak ResolveNestedJunctions was 
      restricted to drive C:. From now on the function works on every 
      drive. However, it is not applied on tab switch anymore.
    ! (Ex-)Tweak ResolveNestedJunctions didn't work correctly on 
      junctions to junctions. Fixed.
    - Removed this change from v10.80.0014 - 2012-01-26 12:43, because 
      of undesired side effects (*all* folder sizes were calculated on a 
      refresh, not just the ones needed):
      * List: Now, when temporary folder sizes are displayed (triggered 
        by menu View | Calculate Folder Sizes) then a Refresh List (or 
        Auto- Refresh event) will also refresh the folder sizes. Before, 
        they would have vanished.
    ! Calculate Folder Sizes: When the modified date of a folder was not 
      up-to-date (which can happen due to a Windows bug (XP, Win7)where 
      a folder date is not updated when parts or all of its contents are 
      intra-volume-moved to another folder), getting the folder sizes 
      of this folder would trigger an immediate refresh because browsing 
      this folder (to calculate its contents) updates its modified date 
      (weird!) and triggers a change notification. Fixed: This refresh 
      is now suppressed when it happens within 500 msecs.
    ! Crash on app start on system-wide unusually large scrollbar 
      widths. Fixed.
    ! Queued Background File Operations: On completion of an 
      intermittent parallel operation (delete or intra-volume move) the 
      next queued operation would have been triggered even if any 
      ongoing queued operation was not yet completed. Fixed.
    * Menu View | Refresh: Now the List is refreshed *before* the Tree. 
      More snappy like this.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

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

v10.80.0202 - 2012-02-07 20:35
    * Tabs: Before, when going to a new location from Favorite Folders, 
      Favorite Files, Special System Folders, Hotlist, Recent Locations, 
      or Catalog, any existing tab pointing to this locations was selected 
      instead of using the current tab, even if the current tabs was not 
      locked. Now, the current tab is used.
    - Removed the "Calculate Folder Sizes" refresh fix from v10.80.0201. 
      This needs more thinking.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

Locked