BETA version (with detailed history information)

Get a glimpse of the next XYplorer...
Locked
admin
Site Admin
Posts: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.60.0015 - 2015-08-29 20:38
    * Visual Filter: Added the "no:" prefix, the logical inversion of the "nec:" 
      prefix, like a shorthand of "nec:!". It means that something must NOT match 
      the following pattern. Like with "nec:" this condition is necessary but 
      not sufficient. Any following filter must be passed as well.
      
      Tip for understanding: nec: and no: mean to AND this pattern with 
      everything coming afterwards. Like this:
        nec:a;b;c;d                   = a AND (b OR c OR d)
        no:a;no:b;c;d                 = NOT a AND (NOT b AND (c OR d))
        nec:a;b;nec:c;d               = a AND (b OR (c AND (d OR e)))

      Examples:
      
        XY Visual Filter Syntax     Equals in Boolean Notation
        ~~~~~~~~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        no:ageM: y; size: > 50KB    NOT modified this yea" AND larger than 50KB
        no:*.txt; a*; b*            NOT "*.txt" AND ("a*" OR "b*")
        no:*.txt;no:*.ini;ageM: y   NOT *.txt AND NOT *.ini AND modified this year
      
      Hmm, I'm tempted to change "nec:" to "yo:" ... :)
    
    * Status Bar: Active Visual Filters are always shown in the Status Bar 
      tooltip now, even if they don't have any effect on the current listing. 
      The filter icon, however, is only shown if anything is actually filtered 
      from the current listing.
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.60.0016 - 2015-08-30 11:23
    * Updated the help file.
To download the latest BETA version choose a download package: (1) Installer Package, (2) No-Install Package.

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

admin
Site Admin
Posts: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Summary of the latest XYplorer Official Release.

Download: http://www.xyplorer.com/download.php

Code: Select all

v15.70.0000 - 2015-08-31 12:00
    = NEW OFFICIAL RELEASE. Main developments since last release:
  +++ Flatten Folder. Now you can flatten a multi-level folder structure via the 
      folder's right-click menu. Simply click "Flatten Folder". It's easy, 
      quick, and safe. And you can even reverse it by clicking Undo.
  +++ Drag and Drop. Now you can change the default drag and drop behavior 
      (which is Move on same drive, Copy on different drive), and e.g. always 
      Move or always Copy. Might save you a headache.

admin
Site Admin
Posts: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0001 - 2015-08-31 22:29
    + SC getPathComponent: Added alias "gpc" to this function because the 
      function is often used and the full name is quite long.
    * Configuration | Styles | Autosize columns maximum width: The default 
      setting "0" ("unlimited") will now be limited to 1000 pixels internally. 
      Before, this was 600 pixels.
    * Supported Operating Systems: Removed the official support for Windows 
      2000, NT, Me, and 98. XYplorer still works fine on these systems (though 
      with partly limited functionality) but it's getting less and less likely 
      that the support can be continued, and less and less people are working 
      under those systems so there is hardly any feedback from the user base. 
      Better to make a cut now.
    ! Configuration | Shell Integration | Default File Manager: There was a 
      fault in the logic. On opening Configuration the two "Default File 
      Manager" checkboxes were shown in checked state if *any* XYplorer instance 
      was set to be the default file manager. However, they should be in checked 
      state only if *this* XYplorer instance is set to be the default file 
      manager. Fixed.
    * XYplorerFree: Configuration | Shell Integration | Default File Manager: 
      Now "XYplorerFree" will be shown in the Shell Context Menu if you set the 
      app to be the Default File Manager. Before, "XYplorer" was shown.
    ! Address Bar: Mysterious delay when typing into the bar, probably related 
      to Ghost Filter, probably fixed.
    % Couple of new icons here and there.
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0002 - 2015-09-01 15:55
  +++ Color Filters: Added support for Tags and Extra Tags.

      Selector      Value
      ------------------------------------------------------------------------
        lbl:        #n, where n = index of Label (#1 = first label).
                    OR:
                    Name of Label, wildcard pattern, case-insensitive (A==a).
        tags:       No wildcard patterns but a comma-separated list of tags, 
                    case-insensitive (A==a). All tags must be present in item 
                    (item can have more tags).
        cmt:        Wildcard pattern, case-insensitive (A==a).
        ex1 - ex5:  Wildcard pattern, case-insensitive (A==a).
      ------------------------------------------------------------------------

      Notes:
        - All matching is case-insensitive (A==a).
        - Item must be in tag DB to match. This regards patterns like "lbl:0" 
          (see examples below).
        - Extra columns can also be referred to by their caption, again 
          case-insensitive (A==a).
        
      Example             matches all items...
      ------------------------------------------------------------------------
        lbl:green         with label "green"
        lbl:g*            with a label beginning with "g"
        lbl:#1            with label #1
        lbl:?*            with any label
        lbl:              without any label (but item in tag DB)
        tags:Jazz         with tag Jazz (and possibly any other tags)
        tags:Rock,Pop     with tags Rock and Pop (and possibly any other tags)
        tags:             without any tags (but item in tag DB)
        cmt:*ow           with a comment ending in "ow"
        cmt:              without any comment (but item in tag DB)
        ex4:Ch*           where extra column #4 value begins with "Ch"
        ex4:              where extra column #4 is empty (but item in tag DB)
        country:Ch*       where extra column "Country" begins with "Ch"
      ------------------------------------------------------------------------

  +++ Visual Filters: Added support for Tags and Extra Tags.
      See Color Filters above, it's all the same.
    % Trial Version: New welcome screen.
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0003 - 2015-09-01 20:54
    * Color Filters, Visual Filters: Now the selector "tags:" also supports 
      case-insensitive (A==a) wildcard patterns.

      Example             matches all items...
      ------------------------------------------------------------------------
        tags:Jazz         with tag Jazz (and possibly any other tags)
        tags:Rock,Pop     with tags Rock and Pop (and possibly any other tags)
        tags:r*           with tags beginning with "r" or "R" (and possibly any other tags)
        tags:r*,p*        with tags beginning with "r" or "R" and tags beginning with 
                          "p" or "P" (and possibly any other tags)
        tags:?*           with any tags
        tags:             without any tags (but item in tag DB)
      ------------------------------------------------------------------------

    * Updated the help file.
    ! Color Filters, Visual Filters: Support for Tags and Extra Tags did not 
      handle "Ignore Diacritics" yet. 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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0101 - 2015-09-03 21:11
  +++ Search In List: Added a new search mode where you don't search in one or 
      more locations but in a list of items (;-separated) passed in lieu of the 
      search locations.
      This list can contain files (they are directly checked against the search 
      filters) and folders (they are recursed like in a normal (multi-)location 
      search).
      The Search In List (SIL) mode is invoked automatically if any files are 
      found in the list of search locations. No switch, no setting. It just 
      works.
      So, in other much simpler words: You now can pass files as search 
      locations and they are directly checked against the search filters.
      It's a simple idea but what you can do with it is pretty awesome.
      Examples:
      - Quick Search in Address Bar:
          E:\Test.jpg;E:\Test2.txt?ageC: > 1 y  //of these, list those older than 1 year
          <selitems ;>?a*       //among the selected items, find all starting with "a"        
          <selitems ;>?* /e     //among the selected items, find all that are empty
          <selitems ;>?cmt:"Done" //among the selected items, find all with comment "Done"
      - SC QuickSearch:
        text quicksearch("*.txt", "E:\Test.jpg;E:\Test2.txt");  //E:\Test2.txt
          text quicksearch("*.txt", "<selitems ;>");
      - Running a search and then another search over the search results of the 
        first search, using scripting. List all JPGs, then scan the listed JPGs 
        for being last modified in 2014:
          goto "?*.jpg"; goto "<allitems ;>?dateM: y 2014";
      - Running a search over a hard set of files stored in some file, using a 
        small script, fast non-GUI operation. ListToSearch.txt contains a list 
        of ;-separated files with full path:
          // return files modified in the last 7 days:
            $list = readfile("<xyscripts>\ListToSearch.txt"); 
            text quicksearch("ageM: <= 7 d", $list);
        One fascinating aspect of the above example is that you can 
        super-quickly check out multiple items in the wildest locations all over 
        your system without the need to browse the whole locations as in a 
        normal find operation.
      - Store a search result in a perm and list it anytime later:
          perm $results = "<allitems ;>"; //store today
          goto "$results?*";  //restore tomorrow
        Or you could just make up $results manually by whatever criteria and 
        then list it in the file list using:
          goto "$results?*";
        Paper Folder to go.
    + Variable <selitems> enhanced: Now you can pass a separator (one or more 
      characters; the space character is not possible here). If a separator is 
      passed then the individual items are not quoted.
      Examples:
        text "<selitems>";          //items are quoted, separated by space
        text "<selitems ;>";        //items are separated by ;
        text "<selitems |>";        //items are separated by |
        text "<selitems //>";       //items are separated by //
        text "<selitems <crlf>>";   //items are separated by CRLF
      BTW, in case you forgot, the variable <selitems...> returns the currently 
      selected list items with full path.      
    + New variable <allitems>. Works exactly like <selitems>, but returns all 
      list items, not only the selected ones.
    + Quick Search: Experimentally added #? as a shorthand for <allitems ;>?. 
      So, to search the current list (which can be a search results list) for 
      all items last modified in 2014 you can do this through the Address Bar:
          #?dateM: y 2014
    + Quick Search: Experimentally added +? as a shorthand for <selitems ;>?. 
      So, to search the selected items in the current list (which can be a 
      search results list) for all items last modified in 2014 you can do this 
      through the Address Bar:
          +?dateM: y 2014
    ! SC listfolder: The following line returned "" instead of 0 when there were 
      no subfolders:
        echo listfolder(<curpath>, "*", 2+32);
      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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0102 - 2015-09-04 16:59
    + Find Files: You now can use the following aliases in the Location combo:
        #     = Search all items in the current list
        +     = Search the select items in the current list
      So it's quite easy now to run a search over the results of a previous 
      search.
    ! Search In List: Did not list matching folders contained in the list. Fixed.
    > Notes on Search In List:
      - To make the search repeatable the searched list has to be stored in tabs 
        and in certain setting files on disk, just as if it was a simple search 
        location. However, such a list can easily get *very* long. It's your 
        responsibility to use this feature with prudence.
      - If a location term is longer than 32767 characters the Location field 
        cannot display the string anymore and will appear empty. This is a 
        Windows display limitation. It does not affect the functionality.
      - Searching a list of 100 items will take notably longer than searching a 
        location with 100 items. This is technically unavoidable and the price 
        for the power of this feature.
    + Quick Search: Multi Location Searches now support | as an alternative 
      separator. Before, only ; was supported.
        E:\Test\a|E:\Test\b?*.jpg
        E:\Test\a;E:\Test\b?*.jpg
    + Quick Search: Experimentally, for the adventurous, Multi Location Searches 
      now also support CRLF (Windows New Line CR+LF) as an alternative 
      separator. This allows for human-friendlier lists.
      NOTE: This experiment will fail after restarting the app if "=" characters 
      are anywhere in any of the listed items; this is because there is a currently 
      unresolved conflict with INI file parsing and multi-line values.
    * Info Panel | Find Files | Location: This field is not updated anymore when 
      selecting a tab with a Quick Search. Actually it was rather a bug that 
      this happened. The Location is not relevant for Quick Searches.
    + Floating Preview: Now, if MDBU is off (toggle it by "M" when in FP), you 
      can navigate by left mouse click on the image itself:
      - Click on left half of the preview: Go Back.
      - Click on right half of the preview: Go Forward.
      You still can pan a partially shown image by mouse holding down right 
      mouse button.
      The hand cursor has been removed completely.
    * Floating Preview: Panning by keys (Shift+Arrow) got faster: 96 screen 
      pixels per key press (was 32 before).
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0105 - 2015-09-06 17:21
    * Menu Favorites: Completely reorganized everything. Especially added 
      Manage... commands for Favorite Folders and Favorite Files, so newbies 
      don't have to find List Management to get access to this.
      Also added icons to the menus, yeah.
    * List: Now in Thumbnails and Tiles views, clicking on any empty space 
      between the images and captions counts as a click on empty. This means it 
      will unselect all selected items, and you can start a lasso select from 
      such a point.
      In other words, now to mouse-hit an item you have to hit the 
      icon/thumbnail or the caption.
      Before, the hittable area was much larger, almost the total cell of each 
      item, so a lasso select was practically impossible.
    * MLS: Internally updated to version 8.67.
      > TRANSLATORS: Please wait until Reference_8.67.lng is uploaded.
        You will be notified if you have subscribed 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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0106 - 2015-09-06 20:55
    ! Runtime error 387 at starting version 15.70.0105. 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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0107 - 2015-09-07 12:05
    + Quick Search: Now Multi Location Searches officially also support CRLF 
      (Windows New Line CR+LF) as an alternative separator; the potential issue 
      with "=" characters mentioned in v15.70.0102 below is handled now with 
      grace and success. This allows for human-friendlier lists, and more...
    > The support for CRLF allows for interesting things like running a search 
      on the clipboard contents (which are likely to be in the form of a 
      line-by-line list).
      For example, paste one of these lines into the Address Bar, then copy some 
      files or filenames (full path) to the clipboard, the press ENTER in the 
      Address Bar:
        <clipboard>?*.jpg           //of all files in clipboard, list the JPGs
        <clipboard>?dateM: y 2014   //of all files in clipboard, list the ones modified 2014
      Note that <clipboard> works for real files in clipboard (Ctrl+C) as well as for 
      just the path/names (Ctrl+P)! Cool!
      You could make a button that searches file lists that were put to the 
      clipboard by any other application. Or run a match all search:
        <clipboard>?*
      ... to list the clipboard contents right in XYplorer. Gasp!
      BTW, <clipboard> also works in the Location field of the Find Files tab.
    > Just in case you missed it: All the above is pretty sensational stuff!
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0108 - 2015-09-07 19:56
    + Global Visual Filters: Finally the next revolution is showing up in the UI.
      Two new commands:
        View | Show Items | Set Global Visual Filter...
        View | Show Items | Toggle Global Visual Filter
      Two new toolbar buttons:
        Set Global Visual Filter
        Toggle Global Visual Filter
      Two things still missing:
        Global Power Filters
        List Management for GVF
    + Variables: Added <clp> shorthand for <clipboard>. Note that in one string 
      you should either use one or the other, not both.
    * Find Files: Now in a MLOS (Multi Location Search) you are prompted what to 
      do when *part* of the locations are unavailable. Before, the search would 
      completely abort at that point. Now you can continue with those locations 
      that are available.
    ! Date Picker: Wrong/Unusable weekday abbreviations for Chinese (and 
      probably other languages). Fixed. Now English is used in such cases.
    ! Scripting: Since v15.70.0105 error 13 on
        popupmainmenu "favorites";
      if main menu was hidden by #1061. 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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0109 - 2015-09-08 20:32
    + Global Visual Filters: Added Global Power Filters to the dropdown part of 
      the "Toggle Global Visual Filter" toolbar button.
      The Global Power Filters are initialized to the same filters as those of 
      the local Visual Filter button (however, they feature the nec:/no: prefix, 
      since this is the expected way of GVF to behave). Then you can customize 
      them independently.
    + List Management: Added Global Visual Filters and Global Power Filters.
    + Global Visual Filters: Added support for captions and comments.
    + Find Files | Dupes: Added option "Extension". If you untick Extension 
      while Name is ticked then the search is for Dupes by Base, a hip new 
      feature. It will return groups of files with the same base regardless of 
      their extensions. Something like this:
        ---------
        Alpha.jpg
        Alpha.png
        ---------
        Delta.jpg
        Delta.png
        Delta.txt
        ---------
        File.bak
        File.txt
        ---------
      Note that Extension is ignored if Name is not ticked.
    * Floating Preview: Navigate by mouse-click also happened when the click 
      just activated the preview window. No more.
    ! MP3 Preview: ID3v2 would not be read when the "APIC" tag was present in 
      the file. Fixed. This also fixes a related issue with File | Rename 
      Special | Mp3 Special | ID3 Tag to Filename.
    ! Date Picker: Chinese weekday abbreviations, fix #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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0110 - 2015-09-09 16:25
    + Search In List: For those with a bad character memory I added a mousy way 
      to reach SIL. Right-click the Find Now button and you get these choices:
        - Search in Location: Same as clicking the button right-away.
        - Search in Listed Items: Same as entering # into Location.
        - Search in Selected Items: Same as entering + into Location.
    * Find Files | Dupes | Name: Enhanced the recent changes. Removed the 
      Extension checkbox. Instead you now got 3 options in a dropdown:
      - Same Extension
        Dupes need a matching file title (base plus extension).      
      - Different Extension
        Dupes need a matching base, and a different extension.
        Interesting new option.
      - Ignore Extension
        Dupes need a matching base (the extension is ignored).
        Note that Ignore Extension is what was called "Dupes by Base" in 
        v15.70.0109.
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: 60564
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Here's the new BETA

Post by admin »

Change Log for the latest XYplorer BETA version:

Code: Select all

v15.70.0111 - 2015-09-09 21:40
    + Scripting got a new function.
      Name: ItemAtPos
      Action: Returns the item at a certain screen position.
      Syntax: itematpos([x], [y], [flags])
        x: (optional) Defaults to the X mouse position on screen.
        y: (optional) Defaults to the Y mouse position on screen.
        flags:
          0: If x and y are passed, they are the position on screen.
          1: If x and y are passed, they are the position on XYplorer.
        return: The item that would be selected by a click on this position. 
                Nothing if no item would be selected.
      Remarks:
        - The function returns items from Tree, both Lists, and Catalog.
        - The function returns nothing if XYplorer is not the foreground window.
        - In case of special folders, the function returns the real path:
          "C:\Users\Donald\Desktop\", not "Donald\Desktop\".
      Examples:
        echo itematpos(); //item at current mouse position on screen
        echo itematpos(592, 662); //item at arbitrary mouse position on screen
        echo itematpos(73, 108, 1); //item at arbitrary mouse position on XYplorer
    ! SC CopyData: Could not send empty strings. Now it can.
    ! F1 did not work anymore keyboard as shortcut to Help in certain contexts 
      (since 20150626). Fixed.
    * Date Picker: F1 does not call the Date Picker anymore from Find Files | 
      Date. Use the buttons. It's a mouse interface anyway.
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