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

v13.40.0206 - 2013-12-13 12:29
    ! Thumbnails: Shell thumbnails (PSD, PDF, Office, and many more) 
      would not be displayed under DBCS codepages (East Asia) when the 
      path or file name contained Unicode characters. 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 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

v13.40.0205 - 2013-12-12 12:03
    + Scripting: Now the icon specification in a multi-script resource 
      support permanent global variables. For example:
        "TeraCopy|$PathToTeraCopy"
          Msg "Hi!";
        "FastCopy|$PathToFastCopy"
          Msg "Hi!";
      The above will work if something like the following has been 
      previously done:
        perm $PathToTeraCopy = "C:\Programme\TeraCopy\TeraCopy.exe";
        perm $PathToFastCopy = "C:\Programme\FastCopy\FastCopy.exe";
    * Copier: Now the specification of the path to the executable 
      supports full portability, and you can use all kinds of XY native 
      and environment variables.
      For example (in INI file):
        Copier=FastCopy|%ProgramFiles%\FastCopy\FastCopy.exe|/auto_close
      For example as script (single quotes to suppress on-the-fly 
      resolving of variables):  
        copier 'FastCopy|%ProgramFiles%\FastCopy\FastCopy.exe|/auto_close';
    * Toolbar | Configuration: New icon.
      Credits for the icon go to http://www.everaldo.com.
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 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

v13.40.0204 - 2013-12-11 20:25
    + Scripting got a new command.
      Name: Copier
      Action: Defines a 3rd party program to handle copy and move operations.
      Syntax: copier [definition]
        definition: Defines the program to use and how.
          General syntax: Caption|Executable|Switches
          - The Caption has to be either TeraCopy or FastCopy.
          - The Executable has to be the full path to the executable.
          - The Switches are optional. Look them up in the documentation 
            of the copier.
          Set to nothing to use XYplorer's Custom Copy.
      Remarks:
      - "Configuration | File Operations | Custom Copy Operations | Use 
        Custom Copy" has to be enabled, else Shell Copy is used.
      - Of course, you need the 3rd party program installed on your 
        system.
      - Currently only TeraCopy and FastCopy are supported.
      - When copying with FastCopy the mode "diff" (copy only if size or 
        date are different) is used which is the default for FastCopy 
        (see FastCopy documentation).
      - The copiers are auto-elevated if necessary when copying to UAC-
        protected locations. You don't need to define any 
        "CustomCopyBlacklist.dat" for this. Actually, you should remove 
        "CustomCopyBlacklist.dat" if you plan to use copiers because 
        locations listed in this file will be handled by shell copy and 
        thus never reach the copiers.         
      Examples:
        copier "TeraCopy|C:\Program Files\TeraCopy\TeraCopy.exe|/RenameAll";
        copier "FastCopy|C:\Program Files\FastCopy\FastCopy.exe|/auto_close";
        copier; //back to Custom Copy
    * Toolbar | Use Custom Copy: The tooltip now displays the name of 
      the current Copier.
    - Removed the TeraCopy tweaks from v13.40.0201.
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 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 »

The last upload was broken. Try again, please:

To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

v13.40.0201 - 2013-12-10 20:41
    + TeraCopy Integration: Currently only as three tweaks, soon 
      elevated to GUI.
      Prerequisites:
      - Of course, you need TeraCopy installed on your system.
      - "Configuration | File Operations | Custom Copy Operations | Use 
        Custom Copy" has to be enabled.
      Tweaks:
      - Set to 1 to use TeraCopy instead of Custom Copy:
          UseTeraCopy=1
      - State the full path to the TeraCopy exectuable. For example:
          TeraCopyPath=C:\Program Files\TeraCopy\teracopy.exe
      - State any TeraCopy switches (cf TeraCopy online documentation). 
        Whatever you state here will be appended to the command line, 
        separated from it by one space. For example:
          TeraCopySwitches=/RenameAll
      Note that integration is very good (whenever anything is copied or 
      moved then TeraCopy will be used for it), but there are a few 
      exceptions:
      - No Rich Copy. In a Rich Copy situation Custom Copy will be 
        automatically used instead of TeraCopy.
        Reason: You cannot state multiple destinations in TeraCopy (one 
        individual destination for each source file).
      - No undo.
      - No queueing.
      - No background processing via XYcopy (TeraCopy is another process anyway).
      - No reports.
      - No verification.
    ! Search Templates: When loading a cached search results list into a 
      visually filtered tab the filter as not removed from the GUI 
      (although it was not applied either). 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 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

v13.40.0200 - 2013-12-09 10:10
    ! Search Templates: "Save search results" checkbox was disabled when 
      no Templates were listed. Nonsense. 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 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

v13.40.0107 - 2013-12-08 19:07
    * Configuration | Styles | Custom current tree folder backcolor: 
      Changed the default color to a light grey. This is the expected 
      tint nowadays.
    * Configuration | Styles | Custom selected list items backcolor: 
      Changed the default color to a light grey. This is the expected 
      tint nowadays.
    ! Various Lists: Drawing glitch related to Focus and Themes (Vista 
      and later) since v13.30.0103. Fixed.
    ! Breadcrumbs: The hovering colors were not reset correctly when 
      switching the menu style ("Colored" to "Custom"). This also 
      affected the Tree Node Crumb popup. Fixed.
    ! Breadcrumbs menus and Tree Node Crumb popups: The hovering 
      highlight was not theme aware in the correct way. Fixed.
    ! Address Bar dropdown: The hovering highlight was not theme aware 
      in the correct way. 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 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

v13.40.0104 - 2013-12-08 14:05
    ! Custom Move: "Preserve Item Dates" did not preserve all dates of 
      files moved to a junction on the same volume pointing to a 
      different volume. Fixed.
    * XYcopy: Updated to 2.10.0046.
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 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

v13.40.0103 - 2013-12-07 13:35
    ! Quick Name Search: Did not work alright when a Fuzzy search had 
      been performed right before because something was not reset. Fixed.
    ! SC formatdate: Did not support passing fractions of seconds. 
      Fixed. Now this works as expected and returns "1999-12-12 23:59:58.9999999":
        text formatdate("1999-12-12 23:59:59.9999999", "yyyy-mm-dd hh:nn:ss.fffffff", "s", -1);
    ! Custom Copy: "Preserve Item Dates" apparently did not preserve 
      folders' accessed times on some systems under certain conditions. 
      Attempt to fix.
    * XYcopy: Updated to 2.10.0045.
    ! Search Templates: Disabled "Save search results" checkbox could be 
      in ticked state and hence untickable. Fixed.
    ! Animated GIFs in Floating Preview: FP would sometimes get key 
      input although not the foreground window. 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 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

v13.40.0102 - 2013-12-06 10:19
    * Search Templates: From now you cannot store any Quick Name 
      Searches anymore. Reason: This never really worked since Search 
      Templates only cares about the data in the Find Files tab. It's 
      simply not made for QNS.
    * Search Templates: From now you cannot cache the results of any 
      visually filtered searches anymore. Reason: The filter is not 
      stored along with the template so when loading the Search 
      Templates you have no way to find out by what the data had been 
      filtered.
    ! Search Templates: When loading a cached search results list into a 
      visually filtered tab the filter as not removed from the GUI 
      (although it was not applied either). Fixed.
    ! Icon Overlays: Were not shown for drives in the Tree. Fixed #2.    
    ! Visual Filters: Tab icon overlay for VF was not auto-refreshing 
      since v13.40.0101. Fixed.
    ! SC tab: Using ::tab("rename", "xyz") on a search results tab 
      destroyed the search results icon. 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 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

v13.40.0101 - 2013-12-05 14:39
    + Configuration | Find Files & Branch View | Visual Filters: Added 
      option "Show filter information in tab headers". So now this very 
      old feature became optional and you can turn it off. Since the 
      filter information can be shown in the list it's not that 
      necessary anymore to have it in the tab headers as well where it 
      easily takes away precious space.
      The factory default is OFF (but it will be turned on for upgraders 
      for continuity).
    ! Icon Overlays: Were not shown for drives in the Tree. Fixed.
    ! Icon Overlays: Were not updated in the Mini Tree when the setting 
      of "Configuration | Refresh, Icons, History | Icons | Show icon 
      overlays" was changed. 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 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

v13.40.0007 - 2013-12-03 16:19
    ! Branch View: The folder contents sort order was not perfect yet 
      under certain conditions. 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 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

v13.40.0006 - 2013-12-01 20:09
    * Fuzzy Favorites: From now only "*" is supported as wildcard. 
      Favorites containing a "?" are interpreted as Quick Name Searches 
      or portable favorites (?:\...). 
    ! Favorites Files: After selecting a favorite file the selections in 
      the list were not updated when the parent folder was the current 
      folder. 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 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

v13.40.0005 - 2013-12-01 10:45
    + Fuzzy Favorites: Now Favorite Folders and Favorite Files support 
      wildcards (* and ?). You can manually add those wildcards via List 
      Management.
      The *first* match will be used, and what's "first" is determined 
      by the system default order (since XP, items are by default 
      alphabetically ordered, but with slight differences to the order 
      usually presented by file managers -- XYplorer can show this order 
      when you select "Unsorted").
      Example from my XP system:
        Fuzzy Favorite        Resolved to
        C:\*.log          ->  C:\RobotError.log
        C:\REC*\          ->  C:\RECYCLER\
    + Tweak TabWidthMin: Lets you control the minimal width of tabs. 
      Example:
        TabWidthMin=80
      If set to 0 then no custom minimal width is applied, but an 
      internally hard-coded value is used.
    ! SC property: Under certain circumstances the result could not be 
      up-to-date due to a stale cache. 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 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

v13.40.0004 - 2013-11-30 16:05
    - Removed the following from v12.50.0010 - 2013-06-23 21:27:
      * Tree: Added 2 hard pixels padding to the top.
      Reason: It looked disturbingly imperfect.
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 Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.

Locked