Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit 4f912fc

Browse files
committed
ready to release v1.4.0
1 parent 33dea2d commit 4f912fc

File tree

2 files changed

+37
-28
lines changed

2 files changed

+37
-28
lines changed

CHANGELOG.md

Lines changed: 36 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
1-
## 1.0.0
1+
## 1.4.0
22

3-
* `intent` is your one stop solution for handling different Android Intents from Flutter app.
3+
* Updated `androidx.core` dependency to latest version
4+
* Added optional `type` param support for `Intent.putExtra(String extra, dynamic data, {String type})`` method
5+
* This change is backward compatible
6+
* Now you can specify which type this extra value to be casted into, in android platform code
7+
* If no type information provided uses default behaviour, where it simply gets casted to `String`
8+
* Supported extra data types are put inside `TypedExtra` class
49

5-
**Enjoy :)**
10+
## 1.3.4
611

7-
## 1.1.0
12+
* Activity identifier code updated in Kotlin, using 998 for handling both image & video capture Intent(s)
13+
* Image & video temp filename format changed, using locale date format ( i.e. ddmmyyyy_HHmmss.* )
14+
* Updated activity call back handler section, returning result from `else` block of code ( prior to it, it was out of scope of `else` block )
815

9-
* `intent` - your one stop solution for android activity, can now get you back result from launched activity
10-
* Can pick documents/ multimedia using their default activity, and get you back a `List<String>`, which holds result.
11-
* There might be some situation in which you want to pick multiple documents, which is why `Intent.startActivityForResult()` returns a `List<String>`.
12-
* Most important news, `intent` can capture image using default Camera Activity and get you back path to captured image.
16+
## 1.3.3
1317

14-
## 1.2.0
18+
* Fixed sourceCompatibility & targetCompatibility issue, set to jdk1.8
19+
* Fixed image & video capture failure issue
1520

16-
* Prior to this release on a single device, > 1 app could not use `intent` package, due to name conflict issue, which has been resolved by pull request submitted by [agniswarm](https://github.com/agniswarm)
17-
* Added platform specificness in pubspec.yaml to denote usage of package only on android platform
18-
* Now serving `intent` on pub.dev using verified publisher
21+
## 1.3.2
22+
23+
* Removed cover photo from Github README.md
24+
25+
## 1.3.1
26+
27+
* **Critical bug fix** - in previous release I made a big mistake by not considering `package` is a JAVA keyword, which needs to be escaped in Kotlin code
28+
* Added `setPackage` support for `startActivityForResult` method in Intent class
29+
* Updated Android SDK version, Kotlin version
30+
* Thanks for being so patient :)
1931

2032
## 1.3.0
2133

@@ -25,24 +37,21 @@
2537
* Usage can be found [here](https://github.com/itzmeanjan/intent#create-precomposed-email-)
2638
* Thanks for using `intent` :)
2739

28-
## 1.3.1
29-
30-
* **Critical bug fix** - in previous release I made a big mistake by not considering `package` is a JAVA keyword, which needs to be escaped in Kotlin code
31-
* Added `setPackage` support for `startActivityForResult` method in Intent class
32-
* Updated Android SDK version, Kotlin version
33-
* Thanks for being so patient :)
40+
## 1.2.0
3441

35-
## 1.3.2
42+
* Prior to this release on a single device, > 1 app could not use `intent` package, due to name conflict issue, which has been resolved by pull request submitted by [agniswarm](https://github.com/agniswarm)
43+
* Added platform specificness in pubspec.yaml to denote usage of package only on android platform
44+
* Now serving `intent` on pub.dev using verified publisher
3645

37-
* Removed cover photo from Github README.md
46+
## 1.1.0
3847

39-
## 1.3.3
48+
* `intent` - your one stop solution for android activity, can now get you back result from launched activity
49+
* Can pick documents/ multimedia using their default activity, and get you back a `List<String>`, which holds result.
50+
* There might be some situation in which you want to pick multiple documents, which is why `Intent.startActivityForResult()` returns a `List<String>`.
51+
* Most important news, `intent` can capture image using default Camera Activity and get you back path to captured image.
4052

41-
* Fixed sourceCompatibility & targetCompatibility issue, set to jdk1.8
42-
* Fixed image & video capture failure issue
53+
## 1.0.0
4354

44-
## 1.3.4
55+
* `intent` is your one stop solution for handling different Android Intents from Flutter app.
4556

46-
* Activity identifier code updated in Kotlin, using 998 for handling both image & video capture Intent(s)
47-
* Image & video temp filename format changed, using locale date format ( i.e. ddmmyyyy_HHmmss.* )
48-
* Updated activity call back handler section, returning result from `else` block of code ( prior to it, it was out of scope of `else` block )
57+
**Enjoy :)**

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: intent
22
description: A simple to use Flutter plugin to deal with Android Intents - your one-stop-solution for Android Intents.
3-
version: 1.3.4
3+
version: 1.4.0
44
homepage: https://github.com/itzmeanjan/intent
55

66
environment:

0 commit comments

Comments
 (0)