react-native-image-stitcher 0.2.0 → 0.2.1

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/CHANGELOG.md +48 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -16,6 +16,52 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
 
17
17
  ## [Unreleased]
18
18
 
19
+ ## [0.2.1] — 2026-05-21
20
+
21
+ ### Changed
22
+
23
+ - **Example app no longer wires Expo modules.** The deferred v0.2
24
+ follow-up landed: the example app now uses the standard React
25
+ Native 0.84 host wiring throughout — `RCTReactNativeFactory` in
26
+ `AppDelegate.swift`, `DefaultReactHost.getDefaultReactHost` in
27
+ `MainApplication.kt`, no `use_expo_modules!` macro in `Podfile`,
28
+ no `expo-root-project` plugin or `expoAutolinking.useExpoModules()`
29
+ call in the gradle files, and no `expo`/`expo-modules-core`/
30
+ `expo-modules-autolinking` packages in `example/package.json`.
31
+ The two inline `patch-package`-style Podfile patches for Expo
32
+ SDK 55 on RN 0.84 are also gone — they were only needed because
33
+ we were dragging Expo in. Verified by clean build + install on
34
+ iPhone 16 Pro and Galaxy A35 (with `LANG=en_US.UTF-8 pod install`
35
+ + `JAVA_HOME` set to OpenJDK 17, both required workarounds for
36
+ unrelated tooling bugs we now document in the troubleshooting
37
+ table).
38
+ - **`docs/host-app-integration.md` rewritten** for the post-Expo
39
+ posture. Dropped ~340 lines describing Podfile macros,
40
+ AppDelegate Expo factory wiring, MainApplication Expo factory
41
+ wiring, gradle `expo-root-project` plugin, and the
42
+ `expo-modules-core+55.0.14.patch` patch-package patch. The
43
+ remaining content (vision-camera permission strings, ARCore
44
+ manifest entries, the one `react-native-sensors+7.3.6.patch`
45
+ patch for the jcenter→mavenCentral swap, network access from
46
+ devices to Metro, troubleshooting) is preserved. The README's
47
+ IMPORTANT block at [README.md:53-66](README.md:53) and the
48
+ pre-existing setup walkthrough still apply.
49
+
50
+ ### Migration from 0.2.0
51
+
52
+ Hosts upgrading from 0.2.0 with their existing Expo modules host
53
+ wiring **don't have to change anything** — Expo modules are
54
+ additive, so the wiring keeps working even though the SDK no
55
+ longer requires it. But the wiring is now strictly optional, and
56
+ [`docs/host-app-integration.md`](docs/host-app-integration.md)
57
+ describes the simpler post-Expo path. If you want to follow the
58
+ simpler path: drop the four Expo packages from your
59
+ `package.json`, revert your `AppDelegate.swift` /
60
+ `MainApplication.kt` / Podfile / gradle / patches to the standard
61
+ RN 0.84 templates documented in that file, run
62
+ `pod deintegrate && pod install` (the CocoaPods 1.16 bug needs
63
+ `LANG=en_US.UTF-8`), and rebuild.
64
+
19
65
  ## [0.2.0] — 2026-05-21
20
66
 
21
67
  > [!IMPORTANT]
@@ -311,7 +357,8 @@ Native module names also changed:
311
357
  - iOS pod: `RetaiLensCaptureSDK` → `RNImageStitcher`
312
358
  - iOS xcframework: shipped as `opencv2.xcframework` (linked from `RNImageStitcher.podspec`)
313
359
 
314
- [Unreleased]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.2.0...HEAD
360
+ [Unreleased]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.2.1...HEAD
361
+ [0.2.1]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.2.0...v0.2.1
315
362
  [0.2.0]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.1.3...v0.2.0
316
363
  [0.1.3]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.1.2...v0.1.3
317
364
  [0.1.2]: https://github.com/bhargavkanda/react-native-image-stitcher/compare/v0.1.1...v0.1.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-image-stitcher",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Pose-aware panorama capture + stitching for React Native. One <Camera> component, both tap-to-photo and hold-to-pan modes, both AR-backed and IMU-fallback capture paths.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",