ソースを参照

compdfkit(rn) - v2.1.3-2 release

liuxiaolong 2 ヶ月 前
コミット
a799236949

+ 13 - 2
CHANGELOG.md

@@ -1,13 +1,24 @@
 ## Newest Release
 
+### 2.1.3-2 - 26 Sep 2024
+
+* Added the features support for ComPDFKit PDF SDK for Android V2.1.3.
+* Fixed crash issue when opening certain documents.
+* Fixed crash issue when adding mark annotations to some documents.
+* Fixed potential crash during SDK initialization.
+* Fixed incomplete display of underline annotations.
+* Fixed abnormal annotation display after rotating the page.
+* Fixed crash when releasing watermarks.
+* Fixed memory leak in the property window of the ComPDFKit_Tools module.
+
+## Previous Release
+
 ### 2.1.3-1 - 25 Sep 2024
 
 * Added the features support for ComPDFKit PDF SDK for iOS V2.1.3.
 * iOS annotation toolbar image button adaptation for iPad.
 * RN iOS sandbox structure modification.
 
-## Previous Release
-
 ### 2.1.2 - 01 Sep 2024
 
 * Added `CPDFReaderView` UI component.

+ 3 - 3
android/build.gradle

@@ -88,9 +88,9 @@ dependencies {
   compileOnly fileTree(include: ['*.jar','*.aar'], dir: 'libs')
   implementation "com.facebook.react:react-native:+"
 
-  api "com.compdf:compdfkit:2.1.2"
-  api "com.compdf:compdfkit-ui:2.1.2"
-  api "com.compdf:compdfkit-tools:2.1.2"
+  api "com.compdf:compdfkit:2.1.3"
+  api "com.compdf:compdfkit-ui:2.1.3"
+  api "com.compdf:compdfkit-tools:2.1.3"
   api 'com.github.bumptech.glide:glide:4.15.1'
   annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
   api 'androidx.documentfile:documentfile:1.0.1'

+ 4 - 10
example/ios/CompdfkitPdfExample.xcodeproj/project.pbxproj

@@ -500,7 +500,7 @@
 					"$(inherited)",
 					"@executable_path/Frameworks",
 				);
-				MARKETING_VERSION = 2.1.2;
+				MARKETING_VERSION = 2.1.3;
 				ONLY_ACTIVE_ARCH = YES;
 				OTHER_LDFLAGS = (
 					"$(inherited)",
@@ -534,7 +534,7 @@
 					"$(inherited)",
 					"@executable_path/Frameworks",
 				);
-				MARKETING_VERSION = 2.1.2;
+				MARKETING_VERSION = 2.1.3;
 				ONLY_ACTIVE_ARCH = YES;
 				OTHER_LDFLAGS = (
 					"$(inherited)",
@@ -625,10 +625,7 @@
 					"-DFOLLY_CFG_NO_COROUTINES=1",
 					"-DFOLLY_HAVE_CLOCK_GETTIME=1",
 				);
-				OTHER_LDFLAGS = (
-					"$(inherited)",
-					" ",
-				);
+				OTHER_LDFLAGS = "$(inherited)  ";
 				REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
 				SDKROOT = iphoneos;
 				USE_HERMES = true;
@@ -701,10 +698,7 @@
 					"-DFOLLY_CFG_NO_COROUTINES=1",
 					"-DFOLLY_HAVE_CLOCK_GETTIME=1",
 				);
-				OTHER_LDFLAGS = (
-					"$(inherited)",
-					" ",
-				);
+				OTHER_LDFLAGS = "$(inherited)  ";
 				REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
 				SDKROOT = iphoneos;
 				USE_HERMES = true;

+ 2 - 2
example/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@compdfkit_pdf_sdk/react_native-example",
-  "version": "2.1.3-1",
-  "versionCode": "10",
+  "version": "2.1.3-2",
+  "versionCode": "11",
   "private": true,
   "scripts": {
     "android": "react-native run-android",

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@compdfkit_pdf_sdk/react_native",
-  "version": "2.1.3-1",
+  "version": "2.1.3-2",
   "description": "ComPDFKit for React Native is a comprehensive SDK that allows you to quickly add PDF functionality to Android, iOS, and React Native applications.",
   "main": "./src/index.tsx",
   "source": "src/index",