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.80.0113 - 2014-03-11 14:18
    + Custom Copy Progress: Now the source and target paths for each processed 
      file are displayed. The dialog became a little higher and wider.
    * XYcopy: Updated to 2.10.0051.
    * View | Columns | Show Columns...: Now the list shows the columns in their 
      current order, and you can drag them to a new position. Cool enhancement!
      Tip: Instead of mouse-dragging you can also shift their positions by 
      Ctrl+Up/Down.
    * View | Sort By: Also in this menu the columns are now shown in their 
      current order.
    * View | Columns: Also in this menu the columns are now shown in their 
      current order.
    + SC SetColumns enhanced:
      Syntax: setcolumns([columns], [flags=0]
        flags:      Options for set and get.
          4: Set only the widths, not visibility or position.
        setcolumns("Name.250", 4); //set Name column width to 250 pixels
        setcolumns("Name.250,Size.100", 4); //set the width of two columns
    ! Find Files by Custom Columns: Did not apply numeric comparison when 
      needed. Fixed. Now this will not match documents with only 5 pages:
        ?Pages: > 40
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.80.0112 - 2014-03-10 21:16
    + Scripting got a new function.
      Name: SetColumns
      Action: Sets or gets the list's columns.
      Syntax: setcolumns([columns], [flags=0]
        columns:    Comma-separated list of canonic column names.
                    May optionally include visibility prefix "+" as '+Name'.
                    May optionally include the column width (in pixels) as 'Name.Width'.
                    If missing only the current columns are returned.
                    If "" then the current columns are ordered in the default column sequence.
        flags:      Options for set and get.
          0: Only visible columns. Prefixes and Widths are ignored (but 
             permitted), respectively not returned.
          1: Mind/Return visibility of the columns with prefixed "+".
          2: Mind/Return column widths, suffixed to the names separated by a period.
        return:     The previous columns (as comma-separated list of canonic column names).
                    Depending on the flags with visibility prefixes and widths suffixes.
      Examples:
        setcolumns("Name,Size");      //shows Name and Size
        setcolumns("Name,+Size", 1);  //shows only Size
        // set exact pixel widths; where the width is missing or 0 the current width of the column is used
        setcolumns("Name.223,Ext.43,Size.48,Created.115,Modified.115,Accessed.115,Label.18,Tags.53,Comment.82", 2);
      Notes:
        - You cannot hide all columns. If you try then the Name column will be shown.
        - This command could become very popular. :)
    + Tweak to inherit Browse mode columns, view, and sort order to the Find 
      mode (= Search Results listing), analog to the changes to Branch View in 
      v13.80.0109. Affects Quick Name Search as well as Find Files.
        FindInheritColumns=1
      Might be raised to UI level later.
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.80.0111 - 2014-03-10 14:59
    + Special Properties: Added the following special properties:
        MP3 Album (#mp3.album)
        MP3 Artist (#mp3.artist)
        MP3 Comments (#mp3.Comments)
        MP3 Genre (#mp3.genre)
        MP3 Title (#mp3.title)
        MP3 Track (#mp3.track)
        MP3 Year (#mp3.year)
      Note that they also work in the <prop> variable. e.g.:
        text "<prop #mp3.year>";
    > Find Files: Note that the above addition means that you can now find files 
      by their MP3 properties. For example, to find all MP3s with a title 
      beginning with "no":
        prop:#mp3.title: no*
      Note that this works completely independent of Custom Columns.
    + Configure Custom Column dialog: Now you can more easily select a property 
      right from the dialog using a little orange button.
    * Find Files: From now on all patterns are trimmed: leading and trailing 
      spaces are ignored. This is also done for in a Boolean term, or in a Multi 
      Field Search.
      Reason: This is simply the expected behavior.
      So now, for example, these search terms are equivalent:
        Name:a*
        Name: a*
      Before, the second term would not have found anything (since filenames 
      don't start with spaces).
      Same here, both yield the same results:
        Height:300 or 600
        Height: 300  or   600
    > If you want leading or trailing spaces in your patterns you have to put 
      them within quotes:
        Name: " a*"
    * Find Files: From now on, Extra Tag and Custom Column patterns are NOT 
      auto-wildcarded anymore (aka Loose Match).
      Reason: This (no auto-wildcards) is simply the expected behavior.
      Example:
        Height:30         will NOT match 300 or 130 anymore, but only 30
    > If you want leading and trailing wildcards in your patterns you have to put 
      them yourself:
        Height:*30*       will match 300 or 130 or 30
    ! Custom Columns: Find Files by Custom Columns did not recognize the 
      localized default captions inherited from the shell column headers. Fixed.
      Now for an unnamed column defined by property #27, you can do this in 
      German Windows:
        Abmessungen:500 x *
      and this in English Windows:
        Dimensions:500 x *
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.80.0110 - 2014-03-09 22:22
    + Configure Custom Column dialog: Now the "Clear" button has the same 
      right-click menu as the "Clear" button in the Edit User Button dialog, 
      offering the following semi-documented commands:
      - Copy as Snippet: Copy the current configuration to the clipboard.
      - Paste Snippet: Paste the configuration currently on the clipboard.
      You can use those snippets to easily share column definitions online.
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.80.0109 - 2014-03-09 11:37
    + Special Properties: Added property "Dimensions" (#image.dimensions). It 
      returns the dimensions much faster than the shell for the following image 
      file types: gif.jpg.jpeg.jpe.png.psd.psb
    + Special Properties: Added property "Date Taken" (#image.datetaken). It 
      returns the date taken much faster than the shell for the following image 
      file types: jpg.jpeg.jpe.tif.tiff.nef
    + SC report: Now Custom Columns are supported, referenced by their 
      case-insensitive canonic names (independent of any translations), e.g. "custom 1".
      Example:
        text report("{name}: {custom 1}, {custom 2}, {custom 3}, {custom 4}, {custom 5}<crlf>");
      Columns of type Date can be formatted in the usual way, e.g.:
        text report("{name}: Year {custom 5 yyyy}<crlf>");
    * Branch View: Now the current column layout is preserved when you toggle 
      from Browse mode to a Branch View.
      Notes:
      - The Path column is ensured to be visible in the Branch View since it is 
        essential in this view.
      - Any changes in the Branch View column layout are not inherited back to 
        the Browse mode, nor are they inherited to the next Branch View. In 
        other words, they are simply forgotten.
    ! Mode Switch Oddity: Switching back to Browse mode would not return to the 
      previous Browse mode list layout after switching to another Browse mode 
      tab and back to the first tab. Fixed.
    ! Some variables, e.g. <prop ...> did not work anymore in all contexts since 
      v13.80.0108. 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.80.0108 - 2014-03-07 21:13
    + SC get got a new named argument "counticons", by which you can retrieve 
      the number of embedded icons in a file.
      Syntax: get("counticons", [file])
        file:     Full path to the file.
                  If missing the currently focused file is used.
        return:   The number of embedded icons in the file.
      Note:
        The following file type are scnned for embedded icons:
          .exe.dll.cpl.ocx.scr.icl.bpl.wlx.wfx.wcx.wdx.acm
      Examples:
        text get("counticons", "%winsysdir%\shell32.dll");  //from shell32.dll
        text get("counticons");   //from focused file
        text <get counticons>;    //from focused file
      Example for a Custom Column of type Template:
        <get counticons "<cc_item>">
    ! Custom Columns: Definitions for columns of type Template only supported 
      variables of type <prop>. Now they support all XY variables.
    ! SC unset did not work for any non-first variable in a list of variables. 
      Fixed. Now this works again:
        unset $a, $b;
    ! Date display: A lowercase "f" was wrongly seen as placeholder for 
      milliseconds in certain date formats. 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.80.0107 - 2014-03-07 12:27
    + Special Properties: Added property "Length" (#audio.length). It returns 
      the length in a more exact format than the Shell column of the same name:
        nn:ss.fff
          n = minutes
          s = seconds
          f = milliseconds
      Notes:
      - Length is currently only retrieved for WAV, FLAC, OGG, and MP3. The 
        formats ASF and WMA are yet to come.
      - OGG length is only approximate since it is calculated from file_size 
        divided by nominal_bit_rate.
      - Of course, the shell cannot display the length for OGG and FLAC at all.
    + Special Properties: Now audio properties for FLAC files are supported.
    ! Custom Columns / Extra Columns: Columns of format/type Date were not 
      sorted correctly. Fixed.
      Note that for Custom Columns the Format field must be set to "Date" to get 
      the sorting right.
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.80.0106 - 2014-03-06 20:27
    ! Custom Columns: Columns were refreshed in the inactive pane even if they 
      were not visible. 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.80.0105 - 2014-03-06 19:54
    + Customize Columns: The column headers right-click menu got a new command 
      "Select Special Property...". Here you can select one of XYplorer's 
      special properties from a list. The column caption is automatically set if 
      you leave it unnamed in the Configure Custom Column dialog.
      The following special properties (also known from the <prop> variable) are 
      currently supported:
        Bit Depth (#audio.bitdepth)
        Bit Rate (#audio.bitrate)
        Channels (#audio.channels)
        Sample Rate (#audio.samplerate)
        Aspect Ratio (#aspectratio)
        Hard Links (#hardlinks)
        MD5 (#hash.md5)
        SHA1 (#hash.sha1)
        SHA256 (#hash.sha256)
        SHA512 (#hash.sha512)
        CRC32 (#hash.crc32)
        Junction Target (#junctiontarget)
        Shortcut Target (#shortcuttarget)
    + Special Properties: Now audio properties for MP3 files are supported.
    ! Audio Format Info: Did not support files with Unicode names on drives with 
      NtfsDisable8dot3NameCreation (registry) enabled. Fixed.
    + Info Panel | Preview: Finally, MP3s with Unicode names can be previewed 
      and analyzed.
    + Configure Custom Column dialog: Added format "Text Right-Aligned".
    ! Configure Custom Column dialog: Error on loading the dialog with an 
      out-dated language file active. 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.80.0104 - 2014-03-05 22:00
    + Now the variable <prop> supports four audio properties that will be 
      retrieved from the following formats: ASF, OGG, WMA, WAV.
      The format looks like this:
        text "<prop #audio.bitdepth>";
        text "<prop #audio.bitrate>";
        text "<prop #audio.channels>";
        text "<prop #audio.samplerate>";
      Note that #audio.bitdepth is only supported for WAV files.
      FYI, these things work really fast. :)
    + Custom Columns: Now columns of type Property support stating internal 
      properties in this format (directly into the Definition field):
        #aspectratio
        #Hash.MD5
        #audio.bitdepth
      Processing this way will be faster than going via Template and constructs 
      like <prop #aspectratio>.
    > Custom Columns: For the new audio properties you don't need to filter the 
      files since the action is already internally limited to ASF, OGG, WMA, and 
      WAV files
    ! Hotlist: The & character was not correctly escaped in the menu items. 
      Fixed.
    ! Custom Columns: Auto-filling undefined Custom Columns on showing them 
      popped Properties dialog. 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.80.0103 - 2014-03-05 13:33
    + Custom Columns: Now Find Files by Custom Columns is supported.
      Referring to the columns works just like with Find Files by Extra Tags. 
      You can either state a canonic field prefix "cc1" to "cc5" which will work 
      independently of the column captions. Or you state the column caption as 
      prefix.
      For example, find all items where the column called "Contents" returns 
      "Hash":
        contents:Hash
      Or, find all items where the first Custom Column returns "100" and the 
      second Custom Column returns "Blue".
        :cc1:100 AND cc2:Blue
      Note: You can even search by columns that are not currently visible. And 
      the search results will not automatically show the column(s) by which you 
      have searched.
    + Customize Column dialog: Added field "Item type" where you can limit the 
      action to Files, Folders, or Files and Folders.
    * Customize Column dialog: Renamed "Scope" to "Item filter". Also renamed 
      the INI key, so you need to redo this part in your column definitions from 
      the previous version.
    * Customize Column dialog: Now it remembers its position.
    + Custom Columns: Added "Hide Column" to the column headers right-click menu.
    + Custom Columns: Add variable <cc_isfolder>. It's "1" for folders, "0" for 
      files.
    * Custom Columns: Now when you show a Custom Column in the file list it is 
      auto-filled immediately.
    * Configuration | Styles: Added "Autosize columns maximum width (0 = 
      unlimited)". Here you can set the maximum width for autosized columns in 
      pixels. Valid inputs are "0" ("unlimited") up to "9999".
      Note that the default setting "0" ("unlimited") will be actually limited 
      to 600 pixels internally.
      Note that there is an internal "minimum maximum width" of 100 pixels. So 
      when you enter a value of 50 it will be internally set to 100.
      FYI, this is tweak AutosizeColumnsMaxWidth raised to config level.
    + Tweak AutosizeColumnsRadical: Set to 1 to autosize columns even on 
      startup, on tab switch, and on view change.
        AutosizeColumnsRadical=1
    * Help | List All Commands...: The command ID is not shown anymore. You can 
      however force it by holding CTRL when you click the command.
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.80.0102 - 2014-03-04 20:22
  +++ Custom Columns: Now you got five additional freely customizable columns 
      that you can use to display more information about your files, sort files 
      by it, and find files by it.
      
      Usage
      ~~~~~
      - You show the columns just like the other regular columns: Via menu View, 
        or via right-clicking the currently shown column headers (not with Size 
        and Date columns, which show their special context menu), or the zone 
        right of the column headers.
      - To customize the Custom Columns right-click the column header. You get a 
        menu with the following commands:
        - Select Property: Pops a list with all extended shell properties. 
          Simply select one and the column will be auto-named to the property 
          (localized) and the list filled with the matching data.
          This command is actually a shortcut to something you can also achieve 
          via the following more comprehensive command.
        - Customize Column: Pops the "Customize Column" dialog, an extended 
          interface for advanced customizations. Here things get wild and geeky 
          and you can fulfill (some of) your wildest dreams about file 
          management. See the next section.
      
      Customize Column dialog
      ~~~~~~~~~~~~~~~~~~~~~~~
      Caption:
        Caption of the column. For column type "Property" the shell's 
        column name will be used if you can leave it empty.
      Type:
        Type of the column. Controls how the following definition is 
        interpreted.
      Definition: The format to be used depends on the Type selected above.
        If Type is Property:
          The definition can be either a numeric index or keyword. Microsoft 
          never published a documentation on the keywords so you are left to 
          guessing them.
          Examples:
            10
            Owner
            Dimensions
        If Type is Template:
          The definition is a text with variables, e.g. the <prop> variable.
          Notes:
          - Using the <prop> variable you can add more than one property to a 
            column.
          - You can as well use some of the interesting XY-special properties 
            that go beyond the shell.
          - The template input (and hence output) may be multi-line.
          Examples:
            Owner: <prop #10>, Size: <prop #1>
            <prop #ShortcutTarget>
            <prop #aspectratio>
            <prop #hardlinks>
        If Type is Script:
          The definition is one script (single- or multi-line).
          Notes:
          - Of course, here you cannot state multi-scripts that would pop a 
            menu, so indenting of lines is totally ingnored: All lines are 
            combined to one script.
          - The special command "return" is used to set the column data.
          - There are a couple of new variables just for this context by which 
            you can refer to the item for which the data are being generated:
            - <cc_item> = the item name with path
            - <cc_name> = the item name (no path)
            - <cc_path> = the item's path
          Example (single line script):
            // display the first 12 characters of each file
            return readfile(<cc_item> , , 12);
          Example (multi line script):
            // fills the column with characters 4-8 of each item name
            $a = substr(<cc_name>, 3, 5);
            return $a;          
      Format:
        The format controls display and sorting of the column. "Text" will be 
        the best setting in almost all cases.
      Scope:
        Here you can enter a semicolon-separated list of wildcard patterns. Only 
        for items whose name (without path) matches at least one of the patterns 
        the column data are retrieved. By setting those patterns wisely you can 
        speed up browsing considerably.
        Notes:
        - Patterns without any wildcards are treated as "ending matches" 
          ("*pattern"); that way you can simply enter a couple of extensions 
          without caring about wildcards.
        - To suppress auto-wildcarding you can quote the pattern.
        - Matching is case-insensitive (A==a).
        Examples:
          jpg               matches *.jpg
          jpg;png;gif       matches *.jpg and *.png and *.gif
          "readme.txt"      matches only readme.txt (and Readme.txt)
      
      Notes
      ~~~~~
      - You pay a price for this feature: Retrieving and processing all this 
        extra information takes time. The shell as used here is v-e-r-y slow 
        compared to XYplorer's native functions, so browsing a list with Custom 
        Columns using shell properties will be notably slower than browsing a 
        list without such columns. Also running a script for each item in a list 
        and for each column of type "Script" takes a lot of time.
      - Only visible columns are filled with data.
      - Defining columns with a script is geek stuff. Be careful! You can easily 
        create nasty things here.
      - Column definitions are global to all tabs on both panes. In a later 
        phase they can be per tab and loaded via FVS.
      - FYI, the column definitions are stored in the INI file.
      - This feature is only available in the Pro Edition.
      > Support for Find Files and Reporting and various other things will be 
        added in the next version.
    + Command Line Switches: Now, if you pass /flg=8 no Custom Column scripts 
      are executed. That way you can start in XYplorer even when you messed up 
      your scripts.      
    + List: Now when you hold CTRL and right-click a non-empty cell you get a 
      small popup menu with one command "Copy Data" by which you can copy the 
      contents of the cell to the clipboard. This works with all columns apart 
      from the Name column.
      Additional cool new action: Instead of holding CTRL you can hold the left 
      mouse button down.
      Of course, the "Copy Data" feature does not work with Full Row Select 
      enabled.
    + Menu Help | List All Commands: Now where the currently assigned keyboard 
      shortcuts differ from the factory defaults, both are shown as "(Default) 
      >> (Now)".
    * Configuration | Styles | Focus rectangle: Reduced the situations where 
      this rectangle is shown. It is now mainly confined to the file list and 
      only if Configuration | Styles | Selections is set to "XYplorer Classic".
      In the Tree it is only shown when the focused node is different from the 
      selected node.
    * Autosize Columns: Now this is not done anymore on startup, on tab switch, 
      or on view change. In those cases the previous column widths should be 
      preserved. The primary moment for Autosize Columns to happen when changing 
      the location within the current tab.
    * MLS: Internally updated to version 8.45.
      > TRANSLATORS: Please wait until Reference_8.45.lng is uploaded.
        You will be notified if you subscribe to this thread:
        http://www.xyplorer.com/xyfc/viewtopic.php?f=12&t=9648
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.80.0101 - 2014-02-28 14:14
    * Address Bar: Now when you type into the Address Bar the very first letter 
      (a-z, A-Z) will not trigger a file system match list (e.g. "e" -> match 
      list for drive E:\) but will just look for matches in the MRU. This avoids 
      unnecessarily waking up sleeping drives.
    > Tip: To pop a match list after just typing one letter you now either have 
      to type ":" as 2nd letter ("e:") or simply press the right-arrow key.
    ! Thumbnails: Fixed a recent issue with chopped icons.
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.80.0007 - 2014-02-26 19:40
    ! Thumbnails: Fixed a recent issue with chopped captions.
    ! ContextMenu64: Popped at wrong position 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 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.80.0006 - 2014-02-26 10:16
    + ContextMenu64: Now the virtual folders "This PC" (Computer), "Network", 
      and "Recycle Bin" are supported.
    * Shell Context Menu: Now when you call the 64-bit context menu from the 
      32-bit context menu using the command "Show 64-bit Context Menu" then the 
      64-bit menu will pop exactly at the same position as the 32-bit menu.
      Before, it popped at the mouse position.
    * ContextMenu64: Updated to v1.2.3.
    * Menu Help: Added command "Select Local Language File...". Opens the 
      standard Open File dialog to load a locally stored *.LNG file.
    ! XYplorer as default file manager did not always come to the foreground 
      under certain conditions. Fixed.
    ! List: In particular modes, e.g. Recycle Bin or Drives, the "List" and 
      "Small Icons" views were not correctly rendered under certain conditions 
      (recent bug related to the introduction of Extra Tags). Fixed.
    ! Thumbnails: The focus highlight was shifted to the right for some pixels 
      for some days. 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.

Locked