Skip to content

Commit

Permalink
Version 1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KasemJaffer committed Jan 26, 2024
1 parent 2d09313 commit c58cc13
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.6.4

* Added a flag to disable the automatic closing of the share extension after sharing.

```swift
class ShareViewController: RSIShareViewController {

// Use this method to return false if you don't want to redirect to host app automatically.
// Default is true
override func shouldAutoRedirect() -> Bool {
return false
}

}
```
* Added new field `message` to the SharedMediaFile class.

## 1.6.3

* Updated readme iOS section, rearranged the steps to properly setup the plugin and added a new step #7
Expand Down
2 changes: 1 addition & 1 deletion ios/receive_sharing_intent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'receive_sharing_intent'
s.version = '1.6.2'
s.version = '1.6.4'
s.summary = 'A flutter plugin that enables flutter apps to receive sharing photos from other apps.'
s.description = <<-DESC
A flutter plugin that enables flutter apps to receive sharing photos from other apps.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: receive_sharing_intent
description: A flutter plugin that enables flutter apps to receive sharing photos, text or url from other apps.
version: 1.6.3
version: 1.6.4
homepage: https://github.com/KasemJaffer/receive_sharing_intent

environment:
Expand Down

0 comments on commit c58cc13

Please sign in to comment.