FXFileChooser
FXFileChooser copied to clipboard
Custom JavaFX file chooser which allows quick manual filtering, which allows to add Path predicates as filter and which is testable using TestFX.
In some cases, when crowded directories (> 200.000 files) are refreshed on a local share (or on a very fast share), the progress indicator update slows down the update process....
Current directory selection standard dialogs on Windows or MacOS do not show a simple directory tree. Instead the dialogs appear like file dialogs but accept only directories.
Create module-info and properly expose desired public API via JPMS
For latest release 0.0.7, Java-11 and JavaFX 11 shall be baseline for Actions and deployment.
There was a request to use wild cards for file name filtering. Wild cards asked for * '%' and '*' both indicate any string * ? should indicate any character...
Remove all *non-core* functionalities and APIs. File chooser use cases shall be limited to: * Run FileChooser from JavaFX within a separate window * Run FileChooser from JavaFX within JavaFX...
There are cases, where the FileChooserDialog only shows "." instead the expected location. 
With directories containing 100.000s of files memory consumption can be an issue. For ~ 330.000 files on Windows 10 the FileChooserModel requires ~ 80 MiB of memory. On macOS Monterey...
It turned out, that the change location (or change directory) functionality implemented is hard to test. Therefore a rework is needed. Points which turned out problematic: * PathSupplier is actually...