expo-image-manipulator 13.1.6 → 13.1.7
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/CHANGELOG.md +6 -0
- package/android/build.gradle +2 -2
- package/build/web/ImageManipulatorContext.web.d.ts +4 -2
- package/build/web/ImageManipulatorContext.web.d.ts.map +1 -1
- package/expo-module.config.json +1 -7
- package/package.json +3 -3
- package/src/web/ImageManipulatorContext.web.ts +13 -3
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6-sources.jar +0 -0
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6-sources.jar.md5 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6-sources.jar.sha1 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6-sources.jar.sha256 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6-sources.jar.sha512 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.aar +0 -0
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.aar.md5 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.aar.sha1 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.aar.sha256 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.aar.sha512 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.module +0 -103
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.module.md5 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.module.sha1 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.module.sha256 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.module.sha512 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.pom +0 -41
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.pom.md5 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.pom.sha1 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.pom.sha256 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/13.1.6/expo.modules.imagemanipulator-13.1.6.pom.sha512 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml +0 -13
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.md5 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha1 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha256 +0 -1
- package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha512 +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 13.1.7 — 2025-05-08
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix `ReferenceError` during export for web. ([#36703](https://github.com/expo/expo/pull/36703) by [@aleqsio](https://github.com/aleqsio))
|
|
18
|
+
|
|
13
19
|
## 13.1.6 — 2025-05-06
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { SharedObject } from 'expo';
|
|
2
|
-
import ImageManipulatorImageRef from './ImageManipulatorImageRef.web';
|
|
3
2
|
import { ActionCrop, ActionExtent, FlipType } from '../ImageManipulator.types';
|
|
3
|
+
import ImageManipulatorImageRef from './ImageManipulatorImageRef.web';
|
|
4
4
|
type ContextLoader = () => HTMLCanvasElement | Promise<HTMLCanvasElement>;
|
|
5
5
|
export default class ImageManipulatorContext extends SharedObject {
|
|
6
6
|
private loader;
|
|
7
|
-
private
|
|
7
|
+
private _currentTask;
|
|
8
|
+
get currentTask(): Promise<HTMLCanvasElement>;
|
|
9
|
+
set currentTask(task: Promise<HTMLCanvasElement>);
|
|
8
10
|
constructor(loader?: ContextLoader);
|
|
9
11
|
resize(size: {
|
|
10
12
|
width: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageManipulatorContext.web.d.ts","sourceRoot":"","sources":["../../src/web/ImageManipulatorContext.web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,OAAO,
|
|
1
|
+
{"version":3,"file":"ImageManipulatorContext.web.d.ts","sourceRoot":"","sources":["../../src/web/ImageManipulatorContext.web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAC/E,OAAO,wBAAwB,MAAM,gCAAgC,CAAC;AAGtE,KAAK,aAAa,GAAG,MAAM,iBAAiB,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAE1E,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,YAAY;IAC/D,OAAO,CAAC,MAAM,CAAgB;IAE9B,OAAO,CAAC,YAAY,CAAyC;IAC7D,IAAI,WAAW,+BAMd;IACD,IAAI,WAAW,CAAC,IAAI,4BAAA,EAEnB;gBAEW,MAAM,CAAC,EAAE,aAAa;IAKlC,MAAM,CAAC,IAAI,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,uBAAuB;IAIxE,MAAM,CAAC,OAAO,EAAE,MAAM,GAAG,uBAAuB;IAIhD,IAAI,CAAC,QAAQ,EAAE,QAAQ,GAAG,uBAAuB;IAIjD,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,MAAM,CAAC,GAAG,uBAAuB;IAIvD,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,GAAG,uBAAuB;IAIhE,KAAK,IAAI,uBAAuB;IAK1B,WAAW,IAAI,OAAO,CAAC,wBAAwB,CAAC;IA4BtD,OAAO,CAAC,OAAO;CAQhB"}
|
package/expo-module.config.json
CHANGED
|
@@ -4,12 +4,6 @@
|
|
|
4
4
|
"modules": ["ImageManipulatorModule"]
|
|
5
5
|
},
|
|
6
6
|
"android": {
|
|
7
|
-
"modules": ["expo.modules.imagemanipulator.ImageManipulatorModule"]
|
|
8
|
-
"publication": {
|
|
9
|
-
"groupId": "host.exp.exponent",
|
|
10
|
-
"artifactId": "expo.modules.imagemanipulator",
|
|
11
|
-
"version": "13.1.6",
|
|
12
|
-
"repository": "local-maven-repo"
|
|
13
|
-
}
|
|
7
|
+
"modules": ["expo.modules.imagemanipulator.ImageManipulatorModule"]
|
|
14
8
|
}
|
|
15
9
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-image-manipulator",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.7",
|
|
4
4
|
"description": "Provides functions that let you manipulation images on the local file system, eg: resize, crop.",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"expo-image-loader": "~5.1.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"expo-module-scripts": "^4.1.
|
|
37
|
+
"expo-module-scripts": "^4.1.7"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"expo": "*"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "49c9d53cf0a9fc8179d1c8f5268beadd141f70ca"
|
|
43
43
|
}
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
import { SharedObject } from 'expo';
|
|
2
2
|
|
|
3
|
-
import ImageManipulatorImageRef from './ImageManipulatorImageRef.web';
|
|
4
3
|
import { ActionCrop, ActionExtent, FlipType } from '../ImageManipulator.types';
|
|
4
|
+
import ImageManipulatorImageRef from './ImageManipulatorImageRef.web';
|
|
5
5
|
import { crop, extent, flip, resize, rotate } from './actions/index.web';
|
|
6
6
|
|
|
7
7
|
type ContextLoader = () => HTMLCanvasElement | Promise<HTMLCanvasElement>;
|
|
8
8
|
|
|
9
9
|
export default class ImageManipulatorContext extends SharedObject {
|
|
10
10
|
private loader: ContextLoader;
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
private _currentTask: Promise<HTMLCanvasElement> | undefined;
|
|
13
|
+
get currentTask() {
|
|
14
|
+
if (this._currentTask) {
|
|
15
|
+
return this._currentTask;
|
|
16
|
+
}
|
|
17
|
+
this._currentTask = new Promise((resolve) => resolve(this.loader()));
|
|
18
|
+
return this._currentTask;
|
|
19
|
+
}
|
|
20
|
+
set currentTask(task) {
|
|
21
|
+
this._currentTask = task;
|
|
22
|
+
}
|
|
12
23
|
|
|
13
24
|
constructor(loader?: ContextLoader) {
|
|
14
25
|
super();
|
|
15
26
|
this.loader = loader ?? (() => document.createElement('canvas'));
|
|
16
|
-
this.currentTask = new Promise((resolve) => resolve(this.loader()));
|
|
17
27
|
}
|
|
18
28
|
|
|
19
29
|
resize(size: { width: number; height: number }): ImageManipulatorContext {
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
71622281255feb4dcaf797a74964698b
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
b9b08b0aca5c25507ec419236d8895a87df02585
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
83452b235a0ea4b9ed9dc693de4fdda6a7940c15c27b9033fb0e398e00b56a7b
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
08af6c95ebf4df88f09274f2dc172df230d57b8f3ca2d1774d44584282b25d9d93ba57a78a2cdfef9232145c67aa8765b8df86f6c79852ba8c1b6b3eb3c21350
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
cfb7ce8cffa4293a4be28eed18f097d4
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
af2eaf94f3f3347569bb73e6195ab76e0607e5fc
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
d89bc4ca8a27b1ef34bbe9b828365f8b9ee105bc9c288dc50dbc13c5decdc3e3
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
75a5bb9e3a3edaf2250acd9ae86f23d421c7f99acce9cee0044f028c6b2f18c11b9a56a89f680f96e37e493ccb88e2ceb574811e528f92b8652f802840920cd7
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"formatVersion": "1.1",
|
|
3
|
-
"component": {
|
|
4
|
-
"group": "host.exp.exponent",
|
|
5
|
-
"module": "expo.modules.imagemanipulator",
|
|
6
|
-
"version": "13.1.6",
|
|
7
|
-
"attributes": {
|
|
8
|
-
"org.gradle.status": "release"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"createdBy": {
|
|
12
|
-
"gradle": {
|
|
13
|
-
"version": "8.13"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"variants": [
|
|
17
|
-
{
|
|
18
|
-
"name": "releaseVariantReleaseApiPublication",
|
|
19
|
-
"attributes": {
|
|
20
|
-
"org.gradle.category": "library",
|
|
21
|
-
"org.gradle.dependency.bundling": "external",
|
|
22
|
-
"org.gradle.libraryelements": "aar",
|
|
23
|
-
"org.gradle.usage": "java-api"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": [
|
|
26
|
-
{
|
|
27
|
-
"group": "androidx.annotation",
|
|
28
|
-
"module": "annotation",
|
|
29
|
-
"version": {
|
|
30
|
-
"requires": "1.0.0"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"files": [
|
|
35
|
-
{
|
|
36
|
-
"name": "expo.modules.imagemanipulator-13.1.6.aar",
|
|
37
|
-
"url": "expo.modules.imagemanipulator-13.1.6.aar",
|
|
38
|
-
"size": 74485,
|
|
39
|
-
"sha512": "75a5bb9e3a3edaf2250acd9ae86f23d421c7f99acce9cee0044f028c6b2f18c11b9a56a89f680f96e37e493ccb88e2ceb574811e528f92b8652f802840920cd7",
|
|
40
|
-
"sha256": "d89bc4ca8a27b1ef34bbe9b828365f8b9ee105bc9c288dc50dbc13c5decdc3e3",
|
|
41
|
-
"sha1": "af2eaf94f3f3347569bb73e6195ab76e0607e5fc",
|
|
42
|
-
"md5": "cfb7ce8cffa4293a4be28eed18f097d4"
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "releaseVariantReleaseRuntimePublication",
|
|
48
|
-
"attributes": {
|
|
49
|
-
"org.gradle.category": "library",
|
|
50
|
-
"org.gradle.dependency.bundling": "external",
|
|
51
|
-
"org.gradle.libraryelements": "aar",
|
|
52
|
-
"org.gradle.usage": "java-runtime"
|
|
53
|
-
},
|
|
54
|
-
"dependencies": [
|
|
55
|
-
{
|
|
56
|
-
"group": "org.jetbrains.kotlin",
|
|
57
|
-
"module": "kotlin-stdlib-jdk7",
|
|
58
|
-
"version": {
|
|
59
|
-
"requires": "2.0.21"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"group": "androidx.annotation",
|
|
64
|
-
"module": "annotation",
|
|
65
|
-
"version": {
|
|
66
|
-
"requires": "1.0.0"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
],
|
|
70
|
-
"files": [
|
|
71
|
-
{
|
|
72
|
-
"name": "expo.modules.imagemanipulator-13.1.6.aar",
|
|
73
|
-
"url": "expo.modules.imagemanipulator-13.1.6.aar",
|
|
74
|
-
"size": 74485,
|
|
75
|
-
"sha512": "75a5bb9e3a3edaf2250acd9ae86f23d421c7f99acce9cee0044f028c6b2f18c11b9a56a89f680f96e37e493ccb88e2ceb574811e528f92b8652f802840920cd7",
|
|
76
|
-
"sha256": "d89bc4ca8a27b1ef34bbe9b828365f8b9ee105bc9c288dc50dbc13c5decdc3e3",
|
|
77
|
-
"sha1": "af2eaf94f3f3347569bb73e6195ab76e0607e5fc",
|
|
78
|
-
"md5": "cfb7ce8cffa4293a4be28eed18f097d4"
|
|
79
|
-
}
|
|
80
|
-
]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"name": "releaseVariantReleaseSourcePublication",
|
|
84
|
-
"attributes": {
|
|
85
|
-
"org.gradle.category": "documentation",
|
|
86
|
-
"org.gradle.dependency.bundling": "external",
|
|
87
|
-
"org.gradle.docstype": "sources",
|
|
88
|
-
"org.gradle.usage": "java-runtime"
|
|
89
|
-
},
|
|
90
|
-
"files": [
|
|
91
|
-
{
|
|
92
|
-
"name": "expo.modules.imagemanipulator-13.1.6-sources.jar",
|
|
93
|
-
"url": "expo.modules.imagemanipulator-13.1.6-sources.jar",
|
|
94
|
-
"size": 8159,
|
|
95
|
-
"sha512": "08af6c95ebf4df88f09274f2dc172df230d57b8f3ca2d1774d44584282b25d9d93ba57a78a2cdfef9232145c67aa8765b8df86f6c79852ba8c1b6b3eb3c21350",
|
|
96
|
-
"sha256": "83452b235a0ea4b9ed9dc693de4fdda6a7940c15c27b9033fb0e398e00b56a7b",
|
|
97
|
-
"sha1": "b9b08b0aca5c25507ec419236d8895a87df02585",
|
|
98
|
-
"md5": "71622281255feb4dcaf797a74964698b"
|
|
99
|
-
}
|
|
100
|
-
]
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
40023743ca6a08727a0a382edee5f4cb
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
09bd88ff4db8522bb356af24c8e9dd5ecdcf7a61
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0de7dfcbdf49f4537f2aefdf41b7d044cf7af76622d99e360a2c6ed4a0102c95
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
6f388a6f3df3c34b1e4c96703b28960c6dee39b984b9524ff0f77a91256b04086e15bd64351a05e87e122abc7cec8f9829f984c3fb900f9de5670fb22b0ddf23
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
-
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
5
|
-
<!-- which should be used instead. Do not delete the following line which -->
|
|
6
|
-
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
7
|
-
<!-- that they should prefer consuming it instead. -->
|
|
8
|
-
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
9
|
-
<modelVersion>4.0.0</modelVersion>
|
|
10
|
-
<groupId>host.exp.exponent</groupId>
|
|
11
|
-
<artifactId>expo.modules.imagemanipulator</artifactId>
|
|
12
|
-
<version>13.1.6</version>
|
|
13
|
-
<packaging>aar</packaging>
|
|
14
|
-
<name>expo.modules.imagemanipulator</name>
|
|
15
|
-
<url>https://github.com/expo/expo</url>
|
|
16
|
-
<licenses>
|
|
17
|
-
<license>
|
|
18
|
-
<name>MIT License</name>
|
|
19
|
-
<url>https://github.com/expo/expo/blob/main/LICENSE</url>
|
|
20
|
-
</license>
|
|
21
|
-
</licenses>
|
|
22
|
-
<scm>
|
|
23
|
-
<connection>https://github.com/expo/expo.git</connection>
|
|
24
|
-
<developerConnection>https://github.com/expo/expo.git</developerConnection>
|
|
25
|
-
<url>https://github.com/expo/expo</url>
|
|
26
|
-
</scm>
|
|
27
|
-
<dependencies>
|
|
28
|
-
<dependency>
|
|
29
|
-
<groupId>androidx.annotation</groupId>
|
|
30
|
-
<artifactId>annotation</artifactId>
|
|
31
|
-
<version>1.0.0</version>
|
|
32
|
-
<scope>compile</scope>
|
|
33
|
-
</dependency>
|
|
34
|
-
<dependency>
|
|
35
|
-
<groupId>org.jetbrains.kotlin</groupId>
|
|
36
|
-
<artifactId>kotlin-stdlib-jdk7</artifactId>
|
|
37
|
-
<version>2.0.21</version>
|
|
38
|
-
<scope>runtime</scope>
|
|
39
|
-
</dependency>
|
|
40
|
-
</dependencies>
|
|
41
|
-
</project>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
478a76f9eab5a71471ec88820dd099f5
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
a9ba74eca903089b0326bcb6da644faa7804690e
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
65de37f7dc9b976a25e8f3e1ce82d68cc35e568f2f414f704adae2039ff898c7
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
5a7035dedccfdac5097f67e50c56fc579ed50cfdb70fbb7e2c84df018deb73058b43a6b8d08431d0093fc6da2d4ae9cd11c2a93fdd82f34065530b7659425687
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<metadata>
|
|
3
|
-
<groupId>host.exp.exponent</groupId>
|
|
4
|
-
<artifactId>expo.modules.imagemanipulator</artifactId>
|
|
5
|
-
<versioning>
|
|
6
|
-
<latest>13.1.6</latest>
|
|
7
|
-
<release>13.1.6</release>
|
|
8
|
-
<versions>
|
|
9
|
-
<version>13.1.6</version>
|
|
10
|
-
</versions>
|
|
11
|
-
<lastUpdated>20250506221714</lastUpdated>
|
|
12
|
-
</versioning>
|
|
13
|
-
</metadata>
|
package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.md5
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0860c198af073f11daf9f93266031ffd
|
package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha1
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
93de2155c572f90af9c4ecdfb78f178d5220d8df
|
package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha256
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
fc7b38fe19cd5f65e6dd9c20121e95458d30c46bf890259ed07f7301f33681dc
|
package/local-maven-repo/host/exp/exponent/expo.modules.imagemanipulator/maven-metadata.xml.sha512
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
29d1093f2c2570907a33db74a9a54e5bceef3d3ef4082788b7ec50ebc4fde813f4910b278a9639a4cd4c2cb8449669039eceb6fbe0c2e44863f639720f661a41
|