Skip to content

Commit

Permalink
Release 3.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PSPDFKit committed May 28, 2024
1 parent 4d53995 commit 4362faf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Newest Release

### 3.10.1 - 28 May 2024
- Fixes issue where ViewUtils.generateViewId() cannot be resolved. (J#HYB-379)

## Previous Releases

### 3.10.0 - 03 May 2024
- Adds APIs to get page information such as size, rotation and label. (J#HYB-195)
- Adds document load callbacks to `PspdfkitWidget`. (J#HYB-195)
Expand All @@ -8,8 +13,6 @@
- Updates for PSPDFKit 2024.2.1 for Android.
- Updates for PSPDFKit 13.4.1 for iOS.

## Previous Releases

### 3.9.1 - 12 Apr 2024
- Downgrades to AGP 7.* for backward compatibility (J#HYB-290)
- Allow null value for `Pspdfkit.setLicenseKey` (J#HYB-294)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class FlutterAppCompatActivity extends AppCompatActivity
private static final String TAG_FLUTTER_FRAGMENT = "flutter_fragment";
// TODO(mattcarroll): replace ID with R.id when build system supports R.java
public static final int FRAGMENT_CONTAINER_ID =
ViewUtils.generateViewId(609893468); // random number
View.generateViewId(); // random number

/**
* Creates an {@link Intent} that launches a {@code FlutterFragmentActivity}, which executes a
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pspdfkit_example
description: Demonstrates how to use the pspdfkit plugin.
version: 3.10.0
version: 3.10.1
homepage: https://pspdfkit.com/
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
environment:
Expand Down
4 changes: 2 additions & 2 deletions ios/pspdfkit_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
Pod::Spec.new do |s|
s.name = "pspdfkit_flutter"
s.version = "3.10.0"
s.version = "3.10.1"
s.homepage = "https://PSPDFKit.com"
s.documentation_url = "https://pspdfkit.com/guides/flutter"
s.license = { type: "Commercial", file: "../LICENSE" }
Expand All @@ -22,6 +22,6 @@ Pod::Spec.new do |s|
s.dependency("Instant", "13.4.1")
s.swift_version = "5.0"
s.platform = :ios, "15.0"
s.version = "3.10.0"
s.version = "3.10.1"
s.pod_target_xcconfig = { "DEFINES_MODULE" => "YES", "SWIFT_INSTALL_OBJC_HEADER" => "NO" }
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pspdfkit_flutter
description: A Flutter plugin providing a feature-rich PDF viewing and editing experience to your users with the powerful PSPDFKit PDF SDK.
version: 3.10.0
version: 3.10.1
homepage: https://pspdfkit.com/
repository: https://github.com/PSPDFKit/pspdfkit-flutter
issue_tracker: https://support.pspdfkit.com/hc/en-us/requests/new
Expand Down

0 comments on commit 4362faf

Please sign in to comment.