Skip to content

Commit dcab41b

Browse files
committed
bump version 2.2.0
1 parent e8b1081 commit dcab41b

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.2.0](https://github.com/spoonconsulting/cordova-plugin-telerik-imagepicker/compare/2.1.1...2.2.0) (2025-02-28)
2+
3+
* **Android:** Now using the recommended image picker by Android (PickVisualMedia) instead of file picker. However an option to revert to file picker has been added: `useFilePicker: true`
4+
15
## [2.1.2](https://github.com/spoonconsulting/cordova-plugin-telerik-imagepicker/compare/2.1.1...2.1.2) (2024-05-27)
26

37
* **ios:** Bug Fix.

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,19 @@ window.imagePicker.getPictures(
7777
// available options are
7878
// window.imagePicker.OutputType.FILE_URI (0) or
7979
// window.imagePicker.OutputType.BASE64_STRING (1)
80-
outputType: int
80+
outputType: int,
81+
82+
// option to revert to file picker on android
83+
useFilePicker: boolean
84+
8185
};
8286

8387
### Note for Android Use
8488

8589
The 'maximumImagesCount' option is currently the only option supported for Android
8690

91+
The `useFilePicker` option is only used for Android as prior to the current version the file picker was being used.
92+
8793
## Android 6 (M) Permissions
8894
On Android 6 you need to request permission to read external storage at runtime when targeting API level 23+.
8995
Even if the `uses-permission` tags for the Calendar are present in `AndroidManifest.xml`.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spoonconsulting/cordova-plugin-telerik-imagepicker",
3-
"version": "2.1.2",
3+
"version": "2.2.0",
44
"cordova_name": "ImagePicker",
55
"description": "This plugin allows selection of multiple images from the camera roll / gallery in a phonegap app",
66
"license": "MIT",

plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="@spoonconsulting/cordova-plugin-telerik-imagepicker"
5-
version="2.1.2">
5+
version="2.2.0">
66

77
<name>ImagePicker</name>
88

0 commit comments

Comments
 (0)