react-native-pdf-jsi 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +12 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -44,13 +44,13 @@
44
44
 
45
45
  ```bash
46
46
  # Using npm
47
- npm install react-native-pdf-enhanced react-native-blob-util --save
47
+ npm install react-native-pdf-jsi react-native-blob-util --save
48
48
 
49
49
  # or using yarn:
50
- yarn add react-native-pdf-enhanced react-native-blob-util
50
+ yarn add react-native-pdf-jsi react-native-blob-util
51
51
  ```
52
52
 
53
- Then follow the instructions for your platform to link react-native-pdf-enhanced into your project:
53
+ Then follow the instructions for your platform to link react-native-pdf-jsi into your project:
54
54
 
55
55
  ### iOS installation
56
56
  <details>
@@ -64,7 +64,7 @@ Run `pod install` in the `ios` directory. Linking is not required in React Nativ
64
64
 
65
65
  ```bash
66
66
  react-native link react-native-blob-util
67
- react-native link react-native-pdf-enhanced
67
+ react-native link react-native-pdf-jsi
68
68
  ```
69
69
  </details>
70
70
 
@@ -91,7 +91,7 @@ android {
91
91
  **React Native 0.59.0 and below**
92
92
  ```bash
93
93
  react-native link react-native-blob-util
94
- react-native link react-native-pdf-enhanced
94
+ react-native link react-native-pdf-jsi
95
95
  ```
96
96
 
97
97
 
@@ -138,7 +138,7 @@ Add to your `android/build.gradle`:
138
138
  android {
139
139
  externalNativeBuild {
140
140
  cmake {
141
- path "node_modules/react-native-pdf-enhanced/android/src/main/cpp/CMakeLists.txt"
141
+ path "node_modules/react-native-pdf-jsi/android/src/main/cpp/CMakeLists.txt"
142
142
  version "3.22.1"
143
143
  }
144
144
  }
@@ -436,7 +436,11 @@ if (stats.jsiEnabled) {
436
436
 
437
437
  ## 📝 Changelog
438
438
 
439
- ### v1.0.1 (2025) - Latest
439
+ ### v1.0.2 (2025) - Latest
440
+ - 📚 **Documentation Fix**: Updated README with correct package name and installation instructions
441
+ - 🔧 **Package Clarity**: Clear distinction between npm package name (`react-native-pdf-jsi`) and import names (`react-native-pdf-enhanced`)
442
+
443
+ ### v1.0.1 (2025)
440
444
  - 🔧 **Enhanced JSI Integration**: Comprehensive Android and iOS JSI enhancements
441
445
  - 📱 **iOS Progressive Loading**: Smart caching, preloading queue, and performance tracking
442
446
  - 🤖 **Android JSI Optimization**: Complete native C++ implementation with batch operations
@@ -687,7 +691,7 @@ For issues and questions:
687
691
 
688
692
  *Transform your PDF viewing experience with enterprise-grade performance and reliability.*
689
693
 
690
- **v1.0.1 - Enhanced JSI Integration**
694
+ **v1.0.2 - Enhanced JSI Integration**
691
695
  **Copyright (c) 2025-present, Punith M (punithm300@gmail.com). Enhanced PDF JSI Integration. All rights reserved.**
692
696
 
693
697
  *Original work Copyright (c) 2017-present, Wonday (@wonday.org). All rights reserved.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-pdf-jsi",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "summary": "A react native PDF view component with JSI performance enhancements",
5
5
  "description": "A high-performance react native PDF view component with JSI (JavaScript Interface) integration for enhanced speed and efficiency. Supports iOS, Android, and Windows platforms with zero-bridge overhead operations.",
6
6
  "main": "index.js",