Skip to content

Commit

Permalink
Release 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PSPDFKit committed Sep 7, 2023
1 parent ee492db commit 5b2716a
Show file tree
Hide file tree
Showing 41 changed files with 7,207 additions and 115 deletions.
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
## Newest Release

### 2.7.0 - 07 Sep 2023

- Adds Annotation Preset customization. (#41528)
- Updates for PSPDFKit 8.8.1 for Android. (#41910)
- Updates for PSPDFKit 12.3.1 for iOS. (#41910)
- Updates the deployment target to iOS 15. (#39956)
- Fixed issue where configuration is overridden by ToolbarMenuItems. (#41681)
- Fixed issue where PDF generation returns "can not get property of null" on iOS. (#41247)
- Fixed annotation toolbar menu grouping customization values. (#41197)
- Fixed issue where the close button is not displayed on iOS. (#41710)
- Fixed issue where showCloseButton config removes all other BarButtonItems on iOS. (#41731)
- Fixed issue where presentInstant uses different parameters on iOS and Android. (#41922)

## Previous Releases

### 2.6.1 - 19 Jun 2023

- Updates for PSPDFKit 8.7.3 for Android. (#40880)
- Updates for PSPDFKit 12.3 for iOS. (##40880)
- Fixes issue when showThumbnailBar is set to pinned (#40807)

## Previous Releases

### 2.6.0 - 05 Jun 2023

- Adds measurement tools configurations (#40296)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
yarn install
```

1. Open your project’s Podfile in a text editor to update the platform to iOS 14, and add the PSPDFKit Podspec:
1. Open your project’s Podfile in a text editor to update the platform to iOS 15, and add the PSPDFKit Podspec:

```bash
open ios/Podfile
Expand All @@ -106,7 +106,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

- platform :ios, '10.0'
+ platform :ios, '14.0'
+ platform :ios, '15.0'

target 'PSPDFKitDemo' do
config = use_native_modules!
Expand Down Expand Up @@ -153,7 +153,7 @@ Let's create a simple app that integrates PSPDFKit and uses the `react-native-ps
open PSPDFKitDemo.xcworkspace
```

1. Make sure the deployment target is set to 14.0 or higher:
1. Make sure the deployment target is set to 15.0 or higher:

![deployment-target](./screenshots/deployment-target.png)

Expand Down
7 changes: 6 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@
* Contains gradle configuration constants
*/
ext {
PSPDFKIT_VERSION = '8.7.3'
PSPDFKIT_VERSION = '8.8.1'
}

buildscript {
ext.kotlin_version = '1.8.10'

repositories {
mavenCentral()
maven {
Expand All @@ -31,10 +33,12 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:7.1.0-alpha03'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 33
Expand Down Expand Up @@ -63,4 +67,5 @@ dependencies {
}
implementation "com.facebook.react:react-native:+"
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
Loading

0 comments on commit 5b2716a

Please sign in to comment.