Here's the new BETA (32-bit)

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

v9.90.0931 - 2011-05-18 15:31
    + SC formatlist enhanced: Added format "p" for perforate.
      Syntax: formatlist(list, [format], [separator=|], [param])
        format:   Switches for the desired formatting. Can be freely 
                  combined in any order.
          p = perforate (split by length of parts, not by separator)
        param:    On format p: Length of parts the list shall be split 
                  into. If missing or smaller than 1 it is set to 1.
      Examples:
        text formatlist("abcdefg", "pr", , 2); //g|ef|cd|ab
        text formatlist("abcdefg", "p", "." , 1); //a.b.c.d.e.f.g
    * Updated the help file.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.0934 - 2011-05-20 09:44
    + Custom Event Actions (CEA): Added another action to the custom 
      events "right-click on the tree's white space" and "right- click 
      on the list's white space" (currently only as a tweak).
        4 = Popup the Tabs menu        
      Examples:
        CEA_TreeRightClickOnWhite=4
        CEA_ListRightClickOnWhite=4
    * Improved the overwrite prompt on each name collision. Now 
      differences are verbally marked (larger/smaller, newer/older).
    - Tweak CtxMenuLetShellCopyPaste removed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.0935 - 2011-05-21 15:32
    * File Find: Before, when only one folder in a multi-location search 
      was not available the whole search was automatically cancelled. 
      Now, the search is only cancelled when all folders are not 
      available. Increases portability and tolerance against shaky 
      network environments.
    ! File Find: An ongoing search could be mixed with a new search 
      under certain conditions. Fixed. Now an ongoing search will be 
      stopped by a new search.
    ! Popping menu Window | Tabs could crash under certain conditions. 
      Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.0936 - 2011-05-21 21:56
    + SC folderreport enhanced: New named arguments for parameter "type":
        type:
          files:    List of files in current folder (absolute paths).
          filesrel: List of files in current folder (relative paths).
      These types work identically to the types "items" resp. "itemsrel" 
      with the only difference that they only return files, not folders.
    + SC folderreport enhanced: New parameter [separator]
      Syntax: folderreport([type=dump], [target=clipboard], [folder], _
                  [flags], [outputfile], [separator])
        separator:  Separator between records. Applied only to types 
                    tree, dirs, dirsrel, items, itemsrel, files, 
                    filesrel.
                    If missing records are returned one per line.
      For example, this returns a pipe-separated list of all files in 
      the current path (recursive):
        $filelist = text folderreport("files", "r", , "r", , "|");
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.0937 - 2011-05-22 21:28
    * Color Filters by Date: Now when you just give a date without the 
      time part it is interpreted as a time range covering that whole 
      day.
      Examples (valid date syntax depends on your locale):
        dateM: 2011.05.22     ' covers the whole day
        dateC: 05/22/2011     ' covers the whole day
      Similarly, when you give time ranges without the time part then 
      the ending date is now taken to cover that whole day.
      Examples (valid date syntax depends on your locale):
        dateM: 2011.05.21 - 2011.05.22  ' covers two whole days
        dateC: 05/01/2011 - 05/02/2011  ' covers two whole days
    * SC folderreport: Sorting of item names improved (for report types 
      tree, dirs, dirsrel, items, itemsrel, files, filesrel). Now direct 
      child files are listed before subfolders and their contents.
        Old order:
          E:\Test\sort\a.txt
          E:\Test\sort\b
          E:\Test\sort\b\a.txt
          E:\Test\sort\b\b
          E:\Test\sort\b\b\a.txt
          E:\Test\sort\b\c.txt
          E:\Test\sort\c
          E:\Test\sort\c\b.zip
          E:\Test\sort\z.txt
        New order:
          E:\Test\sort\a.txt
          E:\Test\sort\z.txt
          E:\Test\sort\b
          E:\Test\sort\b\a.txt
          E:\Test\sort\b\c.txt
          E:\Test\sort\b\b
          E:\Test\sort\b\b\a.txt
          E:\Test\sort\c
          E:\Test\sort\c\b.zip
    ! List Management: Some buttons were disabled since v9.90.0936. 
      Fixed.    
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.0938 - 2011-05-23 08:51
    ! Color Filters by Date: Exclusion operators for absolute dates 
      without times did not work as expected. Fixed.
    ! Catalogs: INI references to recent catalogs were not saved in a 
      portable manner anymore for a while. Saved.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1001 - 2011-05-24 12:05
    + The various lists in List Management and other dialogs now are 
      provided with a live filter box.
      - Matching is case-insensitive (A=a).
      - Partial matching is supported. E.g. a filter pattern "o" will 
        match "dog". However, if the pattern has wildcards * or ? then 
        the pattern is taken as is, so "o*" will not match "dog".
      - In List Management | Editor Mode no filtering is applied.
      - Patterns are not retained between calls.
      - Patterns don't support Boolean logic.
      - Line numbers in filtered lists still refer to the position in 
        the unfiltered list. Cool!
      - Sorting is supported in filtered lists.
      - Click the icon to toggle between "no filter" (stores the current 
        filter as "last filter") and "last filter". The last filter is 
        shared across all lists, and retained across sessions.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1003 - 2011-05-25 11:36
    + Configuration | Dual Pane: Added option "Always keep 1st pane 
      visible". Well, it ensures that the first pane is always visible. 
      E.g., when you are in single pane mode / 1st pane, and do "Toggle 
      Active Pane", then dual pane mode is auto-enabled before 
      activating the 2nd pane so that the first pane is still visible.
      In other words, check this option to never see only the 2nd pane.
    * Dialogs with Live Filter Box: UI polishing. Some buttons have been 
      turned into a toolbar, and the LFB got a bit wider.
      When the list is filtered the colors of the line numbers are now 
      inverted.
    * Live Filter Box: Now the last filter is updated also when you OK 
      the dialog with an active filter (not only when toggling the 
      filter).
    ! Live Filter Box: Filtering an empty list crashed. Fixed.
    * Scrolling by Wheel: Experimentally the scrolling direction for 
      horizontal wheels has been inverted.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1004 - 2011-05-25 21:50
    * Create Folders Here, Create Branches Here, Paste Folder Structure: 
      Now can create a duplicate folder structure under the same parent 
      as the source. It will be auto-renamed (incremental suffix) to 
      avoid the collision.
    ! Find Files: A search attempt in unavailable folders could lead to 
      a crash since a couple of days ago. Fixed.
    ! The new "Always keep 1st pane visible" didn't work in all 
      contexts yet. Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1006 - 2011-05-26 20:02
    * Configuration | General: The options related to type ahead find
      moved to the "Extended" tab, section "Type Ahead Find".
      One of them got renamed:
        OLD: Type ahead find uses sorted column
        NEW: Use sorted column
    + Configuration | Extended | Type Ahead Find: Added option "Match 
      anywhere". Check to count matches anywhere, not just at the 
      beginning of the file names.
    * List: Selection box now also shows in an empty list. This is 
      useless but consistent with Windows Explorer, so it might generate 
      confidence in the user which in turn is useful.
    ! Find Files: Under certain conditions available network locations 
      were not searchable ("Search location currently not available."). 
      Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1010 - 2011-05-31 10:10
  +++ Backup operations now come with a detailed progress dialog. 
      The dialog contains information about the elapsed and remaining 
      time, the average transfer rate, number of done and remaining 
      files and bytes, etc. ... the usual progress dialog stuff. But 
      there is also something interesting:
      - There is a Pause button which allows you to Pause and Continue 
        an operation.
      - For files larger 10MB you get a per-file progress (numeric 
        percentage only, no separate progress bar, to keep the UI as 
        plain as possible). FYI, while this service theoretically should 
        slow down copying a tiny bit, I wasn't able to measure any 
        difference.
      - When the operation is paused or completed you can view the 
        details (button "View details"). Note that this works also when 
        "Create log file" is off.
      - You also can view the log file from this dialog (button "View 
        log file") if you enabled Configuration | File Operations | 
        Create log file. The contents are identical to the "View 
        details" contents, but here they are shown in a file opened in 
        the system default editor.
      - In the unlikely case of failures (e.g. verification failed) you 
        get a button "View failures" which lets you see a detailed list 
        of all failed files.
      - When the operation is completed, the dialog (optionally, see 
        next section) stays up so that you can check the results.
      Showing the progress dialog is optional, see next section.
    + Configuration | File Operations: Added "Show progress dialog". 
      Check it (= factory default) to show a modal progress dialog while 
      the backup is in progress. If unchecked the progress is shown in 
      the statusbar as in previous versions.
      Note that if "Show progress dialog" is enabled then "Show summary 
      report" causes the progress dialog to stay open after the 
      operation is completed. The progress dialog IS the summary report 
      in this case. If "Show summary report" is off then the dialog is 
      auto-closed after 2 seconds, unless there are any failures in 
      which case the dialog unconditionally stays open.
    * Backup logs and summary reports: New format, more information.
    ! Configuration | File Operations | Skip junctions: Did not honor 
      Symbolic Links in Vista/Win7. Fixed. Now they are skipped as well.
    + SC backupto enhanced: Added parameter show_progress.
      Syntax: backupto location, [source], [on_collision], _
                  [preserve_dates], [create_log], [pop_stats], _
                  [skip_junctions], [verify], [show_progress]
        show_progress: Show progress dialog.
          Empty = Use global setting from Configuration.
          0 = Don't.
          1 = Do.         
    * Catalog: The properties dialog now shows the full file spec of the 
      current catalog, resp. of the mother catalog of the current item.
    ! Backup Operations | On name collisions: The option "Affix last 
      modified date to copy" wrongly took the date of the existing 
      target and affixed it to the copy. Of course, it should have taken 
      the date of the source. Fixed.
    ! Browsing: Since v9.90.0104 - 2011-01-26 15:28 you could break into 
      a locked tab by using a hidden destination (e.g. a SYSTEM folder 
      when system folders were hidden by user settings). Fixed. Now a 
      new tab is opened as expected.
    * SC tab: Now the "new" parameter also supports explicit browsing to 
      locations which are hidden from by user settings.
    * Refreshing Tree and List: Now the statusbar gives a short 
      feedback when you explicitly refresh.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1011 - 2011-05-31 12:38
    * Progress Dialog enhanced:
      - Now also verification has its own numeric progress.
      - Now the currently processed file is shown without full path.
    * Backup: Verification now ensures that the target file is read from 
      disk, not from the Windows write cache. This makes it slower, but 
      more secure. It actually makes it useful.
    + List: You you get a message when the list is empty. There is some 
      additional information if items are present in the folder but 
      currently not shown.
      Examples:
      - This view is empty.
      - This view is empty.
        1 item is hidden.
      - This view is empty.
        349 items don't match the current filter.
      - This view is empty.
        1 item is hidden.
        7 items don't match the current filter.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1012 - 2011-05-31 21:09
    * Progress Dialog: Wider progress bar. More expected, more 
      "natural", and the progress appears faster ;).
    * Backup with Progress: Now you can Abort or Pause processing also 
      *while* a large file is being copied or verified (not only between 
      the files).
      Note that after Pause the process will resume with the file that 
      was being processed when Pause was clicked. So it will be 
      copied/verified again.
    * Backup with Progress: Now the stats are also updated *while* a 
      large file is being copied or verified (not only between the files).
      You will note that estimating the remaining time is difficult when 
      verification is enabled, especially when you copy few large files.
    ! List Empty Message: Was shown too early sometimes. Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1013 - 2011-06-01 20:55
    * Progress Dialog:
      - Renamed "Abort" to "Cancel". "Cancel" appears most expected at 
        this position, although "Stop" would be maybe more correct 
        functionally.
      - Renamed "Continue" to "Resume". 
      - Various reports are now found under the new Reports button.
      - Dropped showing msecs, it's overkill.
      - Reorganized the display of progressing copying and verifying.
      - Made it smaller.
    * Backup reports: Redesigned the format. Now only one line per file. 
      Slightly different wording.
    % Verification and Comparison functions: Now the optimal chunk size 
      is determined with more smartness. The result is faster processing 
      and considerably less strain on your hard disks.
    ! Verification and Comparison functions: Would crash with "overflow" 
      on huge files. Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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: 64875
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

v9.90.1014 - 2011-06-02 14:36
    % New comparison algorithm uses SHA-1 instead of byte-to-byte 
      comparison. It's clearly faster with large files (but slightly 
      slower with small files) and much nicer to your hard disks.
      The new algorithm is applied to Edit | Compare and to verification 
      in Backup operations.
    ! Menu Edit | Compare: Comparisons would still error out with 
      "overflow" on huge files. Fixed.
To download the latest BETA version choose a download package: (1) Installer Package, (2) Portable 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