You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.txt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,4 +5,5 @@
5
5
1.1.0 - 2014-11-17 - Support folder listing API. Consolidate Android and Java client libraries. Support signed urls in tag helpers (image and url)
6
6
1.1.1 - 2014-12-18 - Support secure domain sharding. Don't sign version component. Support url suffix and use root path. Support tags in upload large.
7
7
1.1.2 - 2015-01-15 - fix support for string eager parameters
8
-
1.1.3 - 2015-02-24 - Added timeout parameter to admin api and Fixed test and configuration
8
+
1.1.3 - 2015-02-24 - Added timeout parameter to admin api and Fixed test and configuration
9
+
1.2.0 - 2015-04-13 - Support httpcomponents 4.4. Support for video tag and transformations. support ftp url upload. support eager_async in explicit. Fix UTF-8 issues in API. Improved parameter support for upload_large.
Copy file name to clipboardExpand all lines: README.md
+17-16Lines changed: 17 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,12 @@ Images are seamlessly delivered through a fast CDN, and much much more.
9
9
10
10
Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application, existing or new.
11
11
12
+
12
13
Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.
13
14
14
15
For Java, Cloudinary provides a library for simplifying the integration even further.
15
16
16
-
**Note:** Starting from version 1.1.0, you should depend on cloudinary-http42 for Java and cloudinary-android for Android. The artifact cloudinary is deprecated.
17
+
**Note:** Starting from version 1.1.0, you should depend on cloudinary-http42 for Java and cloudinary-android for Android. The artifact cloudinary is deprecated. From version 1.2.0 cloudinary-http44 is available.
17
18
18
19
**Note:** This readme intended mainly for Web applications. For **Android** specific instructions, see: https://github.com/cloudinary/cloudinary_java/tree/master/cloudinary-android
19
20
@@ -26,12 +27,12 @@ The cloudinary_java library is available in [Maven Central](https://repo1.maven.
26
27
27
28
<dependency>
28
29
<groupId>com.cloudinary</groupId>
29
-
<artifactId>cloudinary-http42</artifactId>
30
-
<version>1.1.0</version>
30
+
<artifactId>cloudinary-http44</artifactId>
31
+
<version>1.2.0</version>
31
32
</dependency>
32
33
33
-
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.1.0/cloudinary-core-1.1.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http42/1.1.0/cloudinary-http42-1.1.0.jar)
34
-
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/cloudinary-http42/blob/master/pom.xml) for library dependencies.
34
+
Alternatively, download cloudinary_java from [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-core/1.2.0/cloudinary-core-1.2.0.jar) and [here](https://repo1.maven.org/maven2/com/cloudinary/cloudinary-http44/1.2.0/cloudinary-http44-1.2.0.jar)
35
+
and see [pom.xml](https://github.com/cloudinary/cloudinary_java/blob/master/cloudinary-http44/pom.xml) for library dependencies.
35
36
36
37
## Try it right away
37
38
@@ -100,21 +101,21 @@ Any image uploaded to Cloudinary can be transformed and embedded using powerful
100
101
101
102
The following example generates the url for accessing an uploaded `sample` image while transforming it to fill a 100x150 rectangle:
**See [our documentation](http://cloudinary.com/documentation/java_image_manipulation) for more information about displaying and transforming images in Java**.
120
121
@@ -124,21 +125,21 @@ Assuming you have your Cloudinary configuration parameters defined (`cloud_name`
124
125
125
126
The following example uploads a local JPG to the cloud:
**See [our documentation](http://cloudinary.com/documentation/java_image_upload) for plenty more options of uploading to the cloud from your Java code**.
144
145
@@ -148,7 +149,7 @@ Returns an html image tag pointing to Cloudinary.
0 commit comments