Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Releases: Guiorgy/android-smbfile-chooser

v1.3.3s

01 Mar 12:43
Compare
Choose a tag to compare

* fixed a bug that threw NullPointerException when selecting multiple files.
* updated the demo app.

v1.3.2s

01 Mar 08:32
Compare
Choose a tag to compare

+ added support for SD storage. (same as in android-file-chooser)
* displayPath(true) no longer sets dialog title to file name. Instead, path to the file is displayed below the title and above the list of files.
+ added customizePathView method to customize the filePath displayed.

v1.3.1s

28 Feb 11:36
Compare
Choose a tag to compare

* fixed progressbar not centered when loading files.
* fixed timeout when unable to connect to server. (temporary workaround)
- removed setServer and setAuthenticator methods.
+ now possible to pass custom properties to CIFSContext. example:

            Properties properties = new Properties();
            properties.setProperty("jcifs.smb.client.responseTimeout", "5000");
            properties.setProperty("jcifs.smb.client.minVersion", "SMB1");
            properties.setProperty("jcifs.smb.client.maxVersion", "SMB1");
            SmbFileChooserDialog.newDialog(ctx, properties, domain, auth)

v1.3.0s

26 Feb 10:54
Compare
Choose a tag to compare

* !BREAKING! switched to the new jcifs library currently maintained: https://github.com/AgNO3/jcifs-ng
* similarly, to support the new smb api, source and target compatibility now set to 1.8
+ now scrolling is blocked when new files are being loaded
+ added displayPath setting. if enabled (title must also be enabled), current path will be displayed in the title.
* bug fix on api < 21

v1.2.0s

23 Oct 14:27
Compare
Choose a tag to compare

* changed NewFolderFilter
+ added Delete mode indicator. When in Delete mode option button and Delete button become red
+ added the ability to select multiple files
+ added Dpad support for Android TVs
* bug fixes

v1.1.11s

14 Sep 13:01
Compare
Choose a tag to compare

+ added NtlmPasswordAuthentication authentication to the samba client
* updated the demo app

v1.1.10s

14 Sep 10:40
Compare
Choose a tag to compare

* forked as android-smbfile-chooser!
* changed all methods that start with with... to start with set...
+ added OnDismissListener(only works on API >= 17) and OnBackPressedListener
* changed the default back button behaviour from always dismissing the dialog, to going up a directory
+ added the ability to enable options button (AlertDialog Neutral button) to be able to create new folders and delete files on the go (for both local and shared Files)
+ added the ability to set Strings instead of StringResources. if both are set, StringResources take priority