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

v9.90.0926 - 2011-05-15 13:50
    + SC formatlist enhanced: Added format "x" for shuffle (randomize 
      order), and a special parameter for a seed.
      Syntax: formatlist(list, [format], [separator=|], [seed])
        format:   Switches for the desired formatting. Can be freely 
                  combined in any order.
          x = shuffle (randomize order)
        seed:     Seeds the randomizer used for shuffle. Can be any 
                  number apart from 0. If the seed is set, the 
                  randomizer always generates the same random sequence 
                  for this seed.
      Examples:
        text formatlist("b|a|c", "x"); //a|c|b ... b|c|a ... c|b|a ...
        text formatlist("b|a|c", "x", , 19); //always b|a|c
    + SC formatlist enhanced: Now you can pass an empty delimiter in 
      order to treat the list as a list of single characters.
      Examples:
      - With default delimiter:
        text formatlist("b|a|c", "s"); //a|b|c
      - With empty delimiter:
        text formatlist("bac", "s", ""); //abc        
    ! Toolbar: Fixed some drawing glitches.
    * Tweak CtxMenuLetShellCopyPaste is now by factory default OFF 
      (see v9.90.0904 - 2011-05-06 22:00). Reason: If the shell handles 
      cut, copy, and paste, the operations bypass XYplorer's undo/redo 
      log.
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: 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

v9.90.0925 - 2011-05-14 18:09
    + Custom Event Actions (CEA): Added another custom event, "right-
      click on the tree's white space" (currently only as a tweak).
        [Settings]
        CEA_TreeRightClickOnWhite=0
      You can currently choose between the following actions:
        0 = Popup the Favorites Folders menu (factory default)
        1 = Popup the full Favorites menu
        2 = Popup the Drives menu
        3 = Popup the Drives with Special Folders menu
        (any other value) = Do nothing
    ! Menu Tools | Customize File Associations...: Wrong icons (for a 
      couple of beta versions). Fixed.
    ! File operations by drag and drop were not always backgrounded when 
      they should (for a couple of beta versions). Fixed.
    ! Toolbar: Did not always show the last button when scrolled. 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: 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

v9.90.0924 - 2011-05-14 10:07
    * Toolbar: The scrolling toolbar doesn't wrap anymore. Makes it much 
      more usable.
    ! List: You could create an "orphaned selection" when using Left or 
      Right arrows to select the currently focused item. 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: 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

v9.90.0923 - 2011-05-13 15:55
    + Access Control: Added further means to limit user power.
      The new key DisallowedOperations can be used to disallow certain 
      file related operations. The value is a made by OR-ing (here 
      equivalent to adding) the values of the following bit field:
          Move = 1
          Copy = 2
          Delete = 4
          Rename = 8
          New = 16
          Open = 32
          Tag = 64
          ShellCtxMenu = 128
      For example, to disallow Move, Delete, and Rename, add 1 + 4 + 8 = 
      13:
        [AccessControl]
        DisallowedOperations=13
    + Access Control: Added further means to limit user power.
      The new key DisabledFeatures can be used to disable certain 
      features. The value is a made by OR-ing (here equivalent to 
      adding) the values of the following bit field:
          Scripting = 1
          UDC = 2
          CKS = 4
          PFA = 8
          CacheServers = 16
          Catalog = 32
      For example, to disable Scripting:
        [AccessControl]
        DisabledFeatures=1
    > Access Control: Here's an example for how to set up XYplorer to 
      limit activity to Desktop and \\ServerB\Work, disallow Move, 
      Delete, and Rename even in this allowed locations, and generally 
      disable Scripting and UDC:
      Create Admin.ini in the path of XYplorer.exe and paste this:
        [AccessControl]
        AllowedDirs=Desktop|\\ServerB\Work
        DisallowedOperations=13
        DisabledFeatures=3
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: 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

v9.90.0922 - 2011-05-12 16:50
    + Access Control: Backup operations weren't covered yet. Done.
    * Access Control: Changed the icon. Credits and thanks for the new 
      icon go to http://www.brightmix.com/. Their generous WTFPL license 
      allowed me to pimp it up a bit.
    ! Access Control: The Mini Tree still would have displayed 
      disallowed paths when browsing to them via various location ports 
      (Favorites, Address Bar, ...). Fixed.
    + Command Line: Now you can set a session title via the new command 
      line switch /title=<session title>. If the title contains any 
      spaces it has to be quoted. Example:
        Run: XYplorer.exe /title="Mars Project"
      A session title is useful when you need to distinguish several 
      parallel sessions. See next paragraph...
    + Configuration | Templates | Titlebar Template: Added new field 
      <title> which is set to the title of the current session.
      Example:
        Run: XYplorer.exe /title="Mars Project"
        Template: <path> - <app> - <ver> - <title>
        Caption: E:\Test\c - XYplorer - v9.90.0922 - Mars Project
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: 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

v9.90.0912 - 2011-05-12 10:17
    + Access Control: The context menu of toolbar button "Mini Tree" now 
      features two extra items "Allowed Locations" (lists all allowed 
      locations) and "Mini Tree from Allowed Locations" (creates a Mini 
      Tree from just the allowed locations), which are only visible when 
      Access Control is active.
    + Access Control: When Access Control is active the titlebar caption 
      now has "[AC]" at its right end.
    * Configuration | Tags: Packed some of the advanced buttons into a 
      popup menu under "Advanced Options..." and differentiated between 
      "Edit Orphans (All Drives)" and "Edit Orphans (Fixed Drives 
      Only)".
    ! List Management: The edit box in Editor mode was limited hold to 
      only 32,767 characters. Fixed. This limit has been raised to about 
      4 gigabytes.
    ! SC report: A script line like the following produced an error when 
      no item was selected:
        ::text report("{Basename}<crlf>", 1);
      Fixed.
    ! List: Under certain conditions the list was auto-refreshed even if 
      inline-rename was in action. This should not happen. Fixed.
    + SC copyas: Now the itemlist parameter supports relative (to current 
      list path) paths, e.g.:
        ::copyas "copy-*.png", ,"1.png|2.png";
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: 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

v9.90.0911 - 2011-05-11 21:50
  +++ Access Control: A powerful corporate feature by which an admin can 
      easily control which paths can be accessed by the user of 
      XYplorer. If this feature is enabled then browsing and file 
      operations are only possible in, from, and to the explicitly 
      allowed paths.
      Access Control is invoked using Admin.ini, a plain text file 
      located in the path of XYplorer.exe.
      The following section and key in Admin.ini are used to enable 
      and define Access Control. In this example, access is allowed only 
      for Desktop, D:\, and E:\Test (all subfolders included).
        [AccessControl]
        AllowedDirs=Desktop|D:|E:\Test
      Any number of paths can be concatenated, separated by a | (pipe).
      If the key AllowedDirs is not empty then Access Control is 
      enabled. If Access Control is enabled then the Mini Tree mode is 
      forced on the user.
    + Configuration | Tags: Added button "Edit Orphans...". It pops a 
      list of all current orphans (if any) which can be manually edited.
      Note that in this interface, you cannot add or remove items.
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: 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

v9.90.0910 - 2011-05-10 15:43
    + List Management: Added "Tagged Items..." which offers backdoor 
      access to the tags database in its current state in memory. You 
      can edit the records (of course you should know what you do, there 
      is no error checking concerning the syntax), remove records, add 
      records. Using Editor Mode you can outsource the work to a text 
      editor of your choice. You will already see that this feature is a 
      very powerful addition to Tag-Based File Management. It is also 
      comes in handy at checking out orphans and maybe manually reviving 
      them by updating the paths.
    + Configuration | Tags: Added button "Edit Tagged Items..." which 
      pops the above described "Tagged Items..." section of List 
      Management right from the Configuration window.      
    + Configuration | General: Added option "Mixed sort on tag 
      columns". Check to use a mixed sort (mix folders and files when 
      sorting) always on the columns Label, Tags, and Comment.
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: 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

v9.90.0909 - 2011-05-09 14:42
    + Configuration | File Operations | Backup Operations | On name 
      collisions: Added option "Ask". Choose it to pop an overwrite 
      prompt on each name collision, allowing you to decide case by 
      case. The overwrite prompt tells you a bit about the conflicting 
      files and offers you not to be asked again during the current job.
    * On name collisions: Renamed some of the existing options to a more 
      standard wording:
        OLD                                 NEW
        Overwrite only older files          Overwrite if newer
        Overwrite never                     Skip
        Suffix increment to copies          Suffix increment to copy
        Affix current date to copies        Affix current date to copy
        Affix last modified date to copies  Affix last modified date to copy
    * Configuration | File Operations | Backup Operations. Renamed 
      "Create detailed log file for each backup" to "Create log file". 
      Renamed "Show summary report when done" to "Show summary report".
    + SC backupto enhanced: The on_collision parameter got a new value 
      (-1 = Ask) which pops an overwrite prompt on each name collision.
      Syntax: backupto location, [source], [on_collision], _
                  [preserve_dates], [create_log], [pop_stats]
        on_collision:
         -1 = Ask
      For example, backup all selected items to E:\Test; on collision 
      ask what to do:
        ::backupto "E:\Test", , -1;
    + Configuration | File Operations | Backup Operations: Added option 
      "On failures" with three choices:
      - Ask         Pops a prompt on each failure.
      - Continue    Just continues processing.
      - Cancel      Cancels the whole job.
      On "Ask" you get a prompt with three buttons:
      - Continue All  Continues on all such failures (no more asking).
      - Continue      Continues (ask again next time).
      - Cancel        Cancels the whole job now.
      FYI, currently three types of failures are recognized:
      - Verification failed: May happen if the "verify" option is 
        enabled.
      - Decryption failed: May happen when copying an encrypted file to 
        a medium that does not support encryption.
      - Something else failed: Well, something bad happened that cannot 
        be further specified.
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: 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

v9.90.0904 - 2011-05-06 22:00
    * Tree and List | Items' context menu: From now on the shell's 
      clipboard commands Cut, Copy, and Paste (shown in your locale in 
      the shell context menu) are actually executed by the shell. 
      Before, the shell was bypassed and execution was handed over to 
      XYplorer. Now you have an easy and intuitive alternative to 
      XYplorer's native clipboard commands, which are still accessible 
      via the Edit menu and KS (Ctrl+C etc.), or the List's white space 
      context menu.
      If you prefer the old behavior, use this new tweak:
        CtxMenuLetShellCopyPaste=0
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: 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

v9.90.0903 - 2011-05-06 12:40
    + Tweak to configure the translucent selection box transparency. 
      Allowed values: 1 (almost fully transparent) to 255 (fully 
      opaque). The factory default is 70.
        TSBTransparency=50
    * Icons for unavailable locations: Changed the icon to something 
      more standard.
      Credits and thanks for the icon (free for commercial use) goto 
      http://pixel-mixer.com/!
    * Unavailable locations icon: No such icon is shown anymore in the 
      Address Bar if it is dirty (if you are typing in it).
    + New variables <get curitem> and <get curitemprev>. They returns 
      the current resp. previous current item on whatever pane. Both 
      take optional parameters path, file, base, and ext.
      Examples:
        echo <get curitem>;       //E:\Test\b\c\Jane.txt
        echo <get curitem path>;  //E:\Test\b\c
        echo <get curitem file>;  //Jane.txt
        echo <get curitem base>;  //Jane
        echo <get curitem ext>;   //txt
      As always, SC get supports the same argument:
        echo get("curitemprev", "path");
    ! List: Select on paste did not always work on right-click drops. 
      Fixed.
    ! Showed a "hand" icon in various places in the UI for paths on 
      unavailable CD drives. 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: 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

v9.90.0901 - 2011-05-05 15:14
    + List: Added translucent selection box.
      Windows 2000 Professional or later.
    + Configuration | Colors & Styles: Added option "Translucent 
      selection box". If unchecked the old-school dotted focus rectangle 
      is used instead of the translucent selection box.
    + Configuration | Colors & Styles: Added color selector "Selection 
      Box". Lets you freely configure the color of the new translucent 
      selection box.
      Of course, this setting is ignored if "Translucent selection box" 
      is OFF.    
    + Tweak to hide certain drives by letter. The drives are hidden from 
      the Maxi Tree and from the Drives listing under the "Computer" node.
      E.g. this will hide drives A and B:
        HideDrivesByLetter=AB
      Note that this tweak supersedes the setting of Configuration | 
      General | Show hidden drives (which retrieves the systemwide 
      HIDDEN property for drives from the registry).
      An attempt to browse to such hidden drives will fail in MaxiTree 
      mode. The MiniTree, however, is not affected by this tweak.
    * Icons for unavailable locations: Now an "alert" icon is shown in 
      the Address Bar, on Tab headers and in various file listings for 
      unavailable locations resp. items. Before, simply now icon was 
      shown.
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: 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

v9.90.0812 - 2011-05-03 11:07
    + Scripting got a new function.
      Name:   isset
      Action: Determines if a variable is set.
      Syntax: isset($var)
        $var: The variable to be checked.
      For example, check whether a permanent variable is set before 
      using it:
        $contents = isset($p_filenamestore)?$p_filenamestore:"";
    + New variable <curitemprev>: Returns the previous current item on 
      whatever pane.
        echo <curitemprev>;
    + Menu Scripting | Permanent Variables: Now you can double-click a 
      variable in the listing to show its value.
      The same trick works in the variable listings in the "Stepping 
      through a Script" dialog.
    ! File Info Tips: Tips for clipped items did not show on network 
      locations when they should. 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: 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

v9.90.0811 - 2011-05-02 14:14
    + New variable <get find_contents>. Returns the contents of the 
      Contents field of the last search in the current pane in this 
      session.
      For example:
        echo <get find_contents>;
      As always, SC get supports the same argument:
        echo get("find_contents");
    + SC folderreport enhanced. New named arguments for parameter type:
        type:
          items:    List of items in current folder (absolute paths).
          itemsrel: List of items in current folder (relative paths).
      Both types support a format template. The template is appended to 
      the type selector separated by a ":" (colon), and it fully 
      supports the syntax of the template argument in SC report!
      Examples:
      - Return similar to dos command 'dir /b /s':
        ::text folderreport("items", "r", , "r");
      - Returns path and name for an folder, additional size and mod 
        date for files:
        ::text folderreport("items:{dir {fullname}|{fullname}; {size kbr}; _
            {modified yyyy-mm-dd}|}", "r", , "r");
      - Returns CSV with user chosen info and self-defined separator 
        TAB:
        ::text folderreport("items:{fullname}<tab>{size kbr}<tab>{modified}", _
            "r", , "r");
      - Returns recursive CSV list with info good for diff comparing 
        after an installation:
        ::text folderreport("items:{fullname}; {FileVersion}; _
            {size B}; {modified}", "r", , "r");
    ! Icon Overlays were refreshed even if Auto-Refresh was off. 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: 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

v9.90.0810 - 2011-05-02 10:57
    + Added preview of *.m4v files (iTunes Video File). As always: XY 
      can play it if WMP can play it. You just need the codec.
    * Updated the help file.
    ! Dual Pane: The position of the vertical splitter was not 
      remembered correctly 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.

Locked