Skip to content

Commit 52290ce

Browse files
author
Daniel Cohen
committed
promoted minor version (1.0.x -> 1.1.x) & fixed documentation external links
1 parent 8c0ba23 commit 52290ce

File tree

10 files changed

+46
-50
lines changed

10 files changed

+46
-50
lines changed

cloudinary-android-test/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>com.cloudinary</groupId>
77
<artifactId>cloudinary-parent</artifactId>
8-
<version>1.0.15-SNAPSHOT</version>
8+
<version>1.1.0-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>com.cloudinary</groupId>
1212
<artifactId>cloudinary-android-test</artifactId>
13-
<version>1.0.15-SNAPSHOT</version>
13+
<version>1.1.0-SNAPSHOT</version>
1414
<packaging>apk</packaging>
1515
<name>Cloudinary Android Test Project</name>
1616

@@ -31,13 +31,13 @@
3131
<groupId>com.cloudinary</groupId>
3232
<artifactId>cloudinary</artifactId>
3333
<type>jar</type>
34-
<version>1.0.15-SNAPSHOT</version>
34+
<version>1.1.0-SNAPSHOT</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>com.cloudinary</groupId>
3838
<artifactId>cloudinary-android</artifactId>
3939
<type>jar</type>
40-
<version>1.0.15-SNAPSHOT</version>
40+
<version>1.1.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>junit</groupId>

cloudinary-android/README.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
Cloudinary
22
==========
33

4-
Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.
4+
Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.
55

6-
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software.
7-
Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements.
8-
Images are seamlessly delivered through a fast CDN, and much much more.
6+
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software.
7+
Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements.
8+
Images are seamlessly delivered through a fast CDN, and much much more.
99

1010
Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application, existing or new.
1111

12-
Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.
12+
Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.
1313

1414
For Android, Cloudinary provides a library for simplifying the integration even further. The library requires Android 2.3 or higher.
1515

1616
## Manual Setup ######################################################################
17-
Download cloudinary-core-1.0.15.jar from [here](http://res.cloudinary.com/cloudinary/raw/upload/cloudinary-core-1.0.15.jar) and cloudinary-android-1.0.15.jar from [here](http://res.cloudinary.com/cloudinary/raw/upload/cloudinary-android-1.0.15.jar)
17+
Download cloudinary-core-1.1.0.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary/1.1.0/cloudinary-core-1.1.0.jar) and cloudinary-android-1.1.0.jar from [here](http://search.maven.org/remotecontent?filepath=com/cloudinary/cloudinary/1.1.0/cloudinary-android-1.1.0.jar)
1818
and put them in your libs folder.
1919

2020
## Maven Integration ######################################################################
@@ -23,7 +23,7 @@ The cloudinary_java library is available in [Maven Central](http://repo1.maven.o
2323
<dependency>
2424
<groupId>com.cloudinary</groupId>
2525
<artifactId>cloudinary-android</artifactId>
26-
<version>1.0.15</version>
26+
<version>1.1.0</version>
2727
</dependency>
2828

2929

@@ -45,7 +45,7 @@ Generating a 150x100 version of the `sample` image and downloading it through a
4545

4646
![Sample 150x100](https://res.cloudinary.com/demo/image/upload/w_150,h_100,c_fill/sample.jpg "Sample 150x100")
4747

48-
Converting to a 150x100 PNG with rounded corners of 20 pixels:
48+
Converting to a 150x100 PNG with rounded corners of 20 pixels:
4949

5050
http://res.cloudinary.com/demo/image/upload/w_150,h_100,c_fill,r_20/sample.png
5151

@@ -54,26 +54,26 @@ Converting to a 150x100 PNG with rounded corners of 20 pixels:
5454
For plenty more transformation options, see our [image transformations documentation](http://cloudinary.com/documentation/image_transformations).
5555

5656
Generating a 120x90 thumbnail based on automatic face detection of the Facebook profile picture of Bill Clinton:
57-
57+
5858
http://res.cloudinary.com/demo/image/facebook/c_thumb,g_face,h_90,w_120/billclinton.jpg
59-
59+
6060
![Facebook 90x120](https://res.cloudinary.com/demo/image/facebook/c_thumb,g_face,h_90,w_120/billclinton.jpg "Facebook 90x200")
6161

62-
For more details, see our documentation for embedding [Facebook](http://cloudinary.com/documentation/facebook_profile_pictures) and [Twitter](http://cloudinary.com/documentation/twitter_profile_pictures) profile pictures.
62+
For more details, see our documentation for embedding [Facebook](http://cloudinary.com/documentation/facebook_profile_pictures) and [Twitter](http://cloudinary.com/documentation/twitter_profile_pictures) profile pictures.
6363

6464

6565
## Usage
6666

6767
### Configuration
6868

69-
Each request for building a URL of a remote cloud resource must have the `cloud_name` parameter set.
70-
Each request to our secure APIs (e.g., image uploads, eager sprite generation) must have the `api_key` and `api_secret` parameters set.
69+
Each request for building a URL of a remote cloud resource must have the `cloud_name` parameter set.
70+
Each request to our secure APIs (e.g., image uploads, eager sprite generation) must have the `api_key` and `api_secret` parameters set.
7171
See [API, URLs and access identifiers](http://cloudinary.com/documentation/api_and_access_identifiers) for more details.
7272

73-
Setting the `cloud_name`, `api_key` and `api_secret` parameters can be done either directly in each call to a Cloudinary method,
73+
Setting the `cloud_name`, `api_key` and `api_secret` parameters can be done either directly in each call to a Cloudinary method,
7474
by when initializing the Cloudinary object, or by using the CLOUDINARY_URL meta-data property.
7575

76-
The entry point of the library is the Cloudinary object.
76+
The entry point of the library is the Cloudinary object.
7777

7878
Here's an example of setting the configuration parameters programatically:
7979

@@ -100,7 +100,7 @@ Then add a meta-data property to your application section in the AndroidManifest
100100
<meta-data android:name="CLOUDINARY_URL" android:value="cloudinary://123456789012345:abcdeghijklmnopqrstuvwxyz12@n07t21i7"/>
101101
</application>
102102
<manifest>
103-
103+
104104
### Embedding and transforming images
105105

106106
Any image uploaded to Cloudinary can be transformed and embedded using powerful view helper methods:
@@ -110,4 +110,3 @@ The following example generates the url for accessing an uploaded `sample` image
110110
cloudinary.url().transformation(new Transformation().width(100).height(150).crop("fill")).generate("sample.jpg")
111111

112112
...
113-

cloudinary-android/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.cloudinary</groupId>
1212
<artifactId>cloudinary-parent</artifactId>
13-
<version>1.0.15-SNAPSHOT</version>
13+
<version>1.1.0-SNAPSHOT</version>
1414
</parent>
1515

1616
<artifactId>cloudinary-android</artifactId>
@@ -63,5 +63,3 @@
6363
</plugins>
6464
</build>
6565
</project>
66-
67-

cloudinary-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.cloudinary</groupId>
66
<artifactId>cloudinary-parent</artifactId>
7-
<version>1.0.15-SNAPSHOT</version>
7+
<version>1.1.0-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cloudinary</artifactId>

cloudinary-core/src/main/java/com/cloudinary/Cloudinary.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323

2424
@SuppressWarnings({ "rawtypes", "unchecked" })
2525
public class Cloudinary {
26-
26+
2727
private static List<String> UPLOAD_STRATEGIES = new ArrayList<String>(Arrays.asList("com.cloudinary.android.UploaderStrategy","com.cloudinary.http42.UploaderStrategy","com.cloudinary.http43.UploaderStrategy"));
2828
private static List<String> API_STRATEGIES = new ArrayList<String>(Arrays.asList( "com.cloudinary.android.ApiStrategy", "com.cloudinary.http42.ApiStrategy", "com.cloudinary.http43.ApiStrategy" ));
2929
private static List<String> URLBUILDER_STRATEGIES = new ArrayList<String>(Arrays.asList( "com.cloudinary.android.UrlBuilderStrategy", "com.cloudinary.http42.UrlBuilderStrategy", "com.cloudinary.http43.UrlBuilderStrategy" ));
30-
30+
3131
public final static String CF_SHARED_CDN = "d3jpl91pxevbkh.cloudfront.net";
3232
public final static String OLD_AKAMAI_SHARED_CDN = "cloudinary-a.akamaihd.net";
3333
public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com";
3434
public final static String SHARED_CDN = AKAMAI_SHARED_CDN;
3535

36-
public final static String VERSION = "1.0.15";
36+
public final static String VERSION = "1.1.0";
3737
public final static String USER_AGENT = "cld-java-" + VERSION;
3838

3939
public final Configuration config;
@@ -43,7 +43,7 @@ public class Cloudinary {
4343

4444
public Uploader uploader(){
4545
return new Uploader(this,uploaderStrategy);
46-
46+
4747
};
4848

4949
public Api api(){
@@ -54,33 +54,33 @@ public static void registerUploaderStrategy(String className){
5454
if (!UPLOAD_STRATEGIES.contains(className)){
5555
UPLOAD_STRATEGIES.add(className);
5656
}
57-
57+
5858
}
59-
59+
6060
public static void registerAPIStrategy(String className){
6161
if (!API_STRATEGIES.contains(className)){
6262
API_STRATEGIES.add(className);
6363
}
6464
}
65-
65+
6666
public static void registerUrlBuilderStrategy(String className){
6767
if (!URLBUILDER_STRATEGIES.contains(className)){
6868
URLBUILDER_STRATEGIES.add(className);
6969
}
7070
}
71-
71+
7272
private void loadStrategies() {
7373
uploaderStrategy= StrategyLoader.find(UPLOAD_STRATEGIES);
74-
74+
7575
if (uploaderStrategy==null){
7676
throw new UnknownError("Can't find Cloudinary platform adapter [" + StringUtils.join(UPLOAD_STRATEGIES, ",") + "]");
7777
}
78-
78+
7979
apiStrategy= StrategyLoader.find(API_STRATEGIES);
8080
if (apiStrategy==null){
8181
throw new UnknownError("Can't find Cloudinary platform adapter [" + StringUtils.join(API_STRATEGIES, ",") + "]");
8282
}
83-
83+
8484
urlBuilderStrategy= StrategyLoader.find(URLBUILDER_STRATEGIES);
8585
if (urlBuilderStrategy==null){
8686
throw new UnknownError("Can't find Cloudinary platform adapter [" + StringUtils.join(URLBUILDER_STRATEGIES, ",") + "]");
@@ -179,7 +179,7 @@ public String privateDownload(String publicId, String format, Map<String, Object
179179
params.put("timestamp", new Long(System.currentTimeMillis() / 1000L).toString());
180180
signRequest(params, options);
181181
AbstractUrlBuilderStrategy builder= urlBuilderStrategy.init(cloudinaryApiUrl("download", options));
182-
182+
183183
for (Map.Entry<String, Object> param : params.entrySet()) {
184184
builder.addParam(param.getKey(), param.getValue().toString());
185185
}
@@ -229,7 +229,7 @@ protected Map parseConfigUrl(String cloudinaryUrl) {
229229
}
230230
return params;
231231
}
232-
232+
233233
@Deprecated
234234
public static Map asMap(Object... values) {
235235
return ObjectUtils.asMap(values);

cloudinary-http42/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.cloudinary</groupId>
66
<artifactId>cloudinary-parent</artifactId>
7-
<version>1.0.15-SNAPSHOT</version>
7+
<version>1.1.0-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cloudinary-http42</artifactId>
@@ -45,4 +45,3 @@
4545

4646
</dependencies>
4747
</project>
48-

cloudinary-taglib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.cloudinary</groupId>
66
<artifactId>cloudinary-parent</artifactId>
7-
<version>1.0.15-SNAPSHOT</version>
7+
<version>1.1.0-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cloudinary-taglib</artifactId>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<groupId>com.cloudinary</groupId>
1111
<artifactId>cloudinary-parent</artifactId>
12-
<version>1.0.15-SNAPSHOT</version>
12+
<version>1.1.0-SNAPSHOT</version>
1313
<packaging>pom</packaging>
1414
<name>Cloudinary Java Client Library Parent Project</name>
1515

@@ -22,10 +22,10 @@
2222
</modules>
2323

2424
<description>
25-
Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.
26-
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software.
27-
Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements.
28-
Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Java applications.
25+
Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.
26+
Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software.
27+
Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements.
28+
Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Java applications.
2929
</description>
3030
<url>http://github.com/cloudinary/cloudinary_java</url>
3131

samples/photo_album/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.cloudinary</groupId>
2525
<artifactId>cloudinary-taglib</artifactId>
26-
<version>1.0.14</version>
26+
<version>1.1.0</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.springframework</groupId>

samples/photo_album_gae/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.cloudinary</groupId>
4040
<artifactId>cloudinary-taglib</artifactId>
41-
<version>1.0.13</version>
41+
<version>1.1.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>org.springframework</groupId>
@@ -121,7 +121,7 @@
121121
<version>1.9.0</version>
122122
<scope>test</scope>
123123
</dependency>
124-
124+
125125
<dependency>
126126
<groupId>com.google.appengine</groupId>
127127
<artifactId>appengine-testing</artifactId>
@@ -140,7 +140,7 @@
140140
<artifactId>hibernate-validator-annotation-processor</artifactId>
141141
<version>4.1.0.Final</version>
142142
</dependency>
143-
143+
144144
<dependency>
145145
<groupId>gmultipart</groupId>
146146
<artifactId>gmultipart</artifactId>

0 commit comments

Comments
 (0)