@rayabelcode/expo-image-orientation-normalizer 0.9.0 → 0.9.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.
package/android/build.gradle
CHANGED
|
@@ -4,13 +4,13 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'expo.modules.imageorientationnormalizer'
|
|
7
|
-
version = '0.9.
|
|
7
|
+
version = '0.9.1'
|
|
8
8
|
|
|
9
9
|
android {
|
|
10
10
|
namespace "expo.modules.imageorientationnormalizer"
|
|
11
11
|
defaultConfig {
|
|
12
12
|
versionCode 1
|
|
13
|
-
versionName "0.9.
|
|
13
|
+
versionName "0.9.1"
|
|
14
14
|
}
|
|
15
15
|
lintOptions {
|
|
16
16
|
abortOnError false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = 'ImageOrientationNormalizer'
|
|
3
|
-
s.version = '0.9.
|
|
3
|
+
s.version = '0.9.1'
|
|
4
4
|
s.summary = 'Native ingress normalization for gallery-picked images on React Native / Expo.'
|
|
5
5
|
s.description = 'Decodes via PhotoKit and ImageIO on iOS, BitmapFactory + ExifInterface + Matrix on Android; writes display-oriented JPEG with EXIF Orientation=1.'
|
|
6
6
|
s.author = 'Ray Abel'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rayabelcode/expo-image-orientation-normalizer",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Native ingress normalization for gallery-picked images on React Native / Expo. Decodes via PhotoKit and ImageIO on iOS, BitmapFactory + ExifInterface + Matrix on Android; writes display-oriented JPEG with EXIF Orientation=1.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
"build": "node internal/module_scripts/build.js",
|
|
19
19
|
"clean": "node internal/module_scripts/clean.js",
|
|
20
20
|
"lint": "eslint src/",
|
|
21
|
-
"test": "node internal/module_scripts/test.js",
|
|
22
21
|
"prepare": "node internal/module_scripts/prepare.js",
|
|
23
22
|
"open:ios": "node internal/module_scripts/open-ios.js",
|
|
24
23
|
"open:android": "node internal/module_scripts/open-android.js"
|
|
@@ -53,25 +52,13 @@
|
|
|
53
52
|
},
|
|
54
53
|
"dependencies": {},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.26.0",
|
|
57
|
-
"@types/jest": "^29.2.1",
|
|
58
|
-
"@types/react": "~19.1.1",
|
|
59
|
-
"babel-preset-expo": "~55.0.8",
|
|
60
55
|
"eslint": "~9.39.4",
|
|
61
|
-
"eslint-config-universe": "^15.0
|
|
62
|
-
"expo": "^56.0.
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"prettier": "^3.0.0",
|
|
66
|
-
"react-native": "0.82.1",
|
|
56
|
+
"eslint-config-universe": "^15.2.0",
|
|
57
|
+
"expo": "^56.0.4",
|
|
58
|
+
"prettier": "^3.8.3",
|
|
59
|
+
"react-native": "0.85.3",
|
|
67
60
|
"typescript": "^5.9.2"
|
|
68
61
|
},
|
|
69
|
-
"jest": {
|
|
70
|
-
"preset": "jest-expo",
|
|
71
|
-
"roots": [
|
|
72
|
-
"<rootDir>/src"
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
62
|
"peerDependencies": {
|
|
76
63
|
"expo": "*",
|
|
77
64
|
"react": "*",
|