Skip to content

Releases: miguelpruivo/flutter_file_picker

5.2.11

21 Apr 19:13
ae93637
Compare
Choose a tag to compare

Updates dependencies, including win32 bump to 4.1.3 (#1255).

5.2.10

19 Apr 20:06
eea91e0
Compare
Choose a tag to compare

Fixes the bug that the result of the save-file dialog was incorrect when it was invoked with a long default file name but the user selected a file with a much short file name (#1257).

5.2.9

19 Apr 20:06
f709753
Compare
Choose a tag to compare

Fixes the errors Type 'Uint8List' not found and 'Uint8List' isn't a type (#1260). Thank you @miguelslemos!

5.2.8

19 Apr 20:06
7f00932
Compare
Choose a tag to compare

Fixes the bug that the current directory sometimes changed after the user picked a file. Now, after the dialog is closed, the current directory is automatically restored to its original value even if the user changed the directory while searching for files (#1254). Thank you @Tokenyet!

5.2.7

05 Apr 22:41
b060f04
Compare
Choose a tag to compare

Fixes the behavior of the saveFile() dialog on Windows. Now, when the user selects an already existing file, then Windows prompts the user to confirm overwriting this file. This change makes the dialog behave the same on all desktop platforms (macOS, Linux, and Windows). Previously, Windows would not have asked the user for confirmation (#989).

5.1.0

15 Sep 10:10
Compare
Choose a tag to compare

4.5.0

28 Feb 22:23
bb0683c
Compare
Choose a tag to compare

Changes the implementation of getDirectoryPath() on Windows to provide a modern dialog that looks the same as a file picker dialog (#915).

4.4.0

16 Feb 22:57
03cedea
Compare
Choose a tag to compare

Adds the additional parameter initialDirectory to configure the initial directory where the dialog should be opened. This parameter is supported for all three dialogs (pick files, pick directory, and save file). The only exception is that the parameter does not work on Windows for the function getDirectoryPath(). Please note that this feature has not been implemented for Android and iOS (#859).

4.3.3

26 Jan 21:19
9c58307
Compare
Choose a tag to compare

Introduces two fixes for the KDE Plasma Linux implementation which uses kdialog to open the file picker dialogs. Firstly, the selection of multiple files is fixed so that file paths with blanks/spaces are handled correctly. Secondly, file type filters are implemented. Thank you @w1th0utnam3.

4.3.1

27 Jan 20:32
c2c64ab
Compare
Choose a tag to compare

Adds support for Linux distributions with KDE Plasma which typically don't ship with zenity or qarma but instead offer KDialog. Thank you @mnipritom.