Skip to content

Commit 221dc2e

Browse files
authored
Release 22.12 (#49)
DotCodeMask mark as DEPRECATED
1 parent 2d0ff77 commit 221dc2e

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Freleases.aspose.cloud%2Fjava%2Frepo%2Fcom%2Faspose%2Faspose-barcode-cloud%2Fmaven-metadata.xml)](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)
66

77
- API version: 3.0
8-
- SDK version: 22.11.0
8+
- SDK version: 22.12.0
99

1010
## Demo applications
1111

@@ -68,7 +68,7 @@ Add this dependency to your project's POM:
6868
<dependency>
6969
<groupId>com.aspose</groupId>
7070
<artifactId>aspose-barcode-cloud</artifactId>
71-
<version>22.11.0</version>
71+
<version>22.12.0</version>
7272
<scope>compile</scope>
7373
</dependency>
7474
```
@@ -83,7 +83,7 @@ mvn clean package
8383

8484
Then manually install the following JARs:
8585

86-
- `target/aspose-barcode-cloud-22.11.0.jar`
86+
- `target/aspose-barcode-cloud-22.12.0.jar`
8787
- `target/lib/*.jar`
8888

8989
## Getting Started
@@ -161,7 +161,7 @@ All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed und
161161
All URIs are relative to *<https://api.aspose.cloud/v3.0>*
162162

163163
Class | Method | HTTP request | Description
164-
------------ | ------------- | ------------- | -------------
164+
----- | ------ | ------------ | -----------
165165
*BarcodeApi* | [**getBarcodeGenerate**](docs/BarcodeApi.md#getBarcodeGenerate) | **GET** /barcode/generate | Generate barcode.
166166
*BarcodeApi* | [**getBarcodeRecognize**](docs/BarcodeApi.md#getBarcodeRecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
167167
*BarcodeApi* | [**postBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postBarcodeRecognizeFromUrlOrContent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.

docs/DotCodeParams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**aspectRatio** | **Double** | Height/Width ratio of 2D BarCode module. | [optional]
8-
**dotCodeMask** | **Integer** | Mask of Dotcode barcode. Default value: -1. | [optional]
8+
**dotCodeMask** | **Integer** | DEPRECATED: DotCodeMask is now calculated automatically | [optional]
99

1010

1111

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>aspose-barcode-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>aspose-barcode-cloud</name>
8-
<version>22.11.0</version>
8+
<version>22.12.0</version>
99
<url>https://www.aspose.cloud</url>
1010
<description>Aspose.BarCode Cloud SDK for Java</description>
1111
<scm>

src/main/java/com/aspose/barcode/cloud/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
public class ApiClient {
5151

5252
public final String apiVersion = "v3.0";
53-
public final String clientVersion = "22.11.0";
53+
public final String clientVersion = "22.12.0";
5454
private String baseUrl = "https://api.aspose.cloud";
5555
private String clientId;
5656
private String clientSecret;
@@ -96,7 +96,7 @@ protected ApiClient() {
9696
json = new JSON();
9797

9898
// Set default User-Agent.
99-
setUserAgent("Swagger-Codegen/22.11.0/java");
99+
setUserAgent("Swagger-Codegen/22.12.0/java");
100100

101101
addDefaultHeader("x-aspose-client", "java sdk");
102102
addDefaultHeader("x-aspose-client-version", clientVersion);

src/main/java/com/aspose/barcode/cloud/model/DotCodeParams.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ public void setAspectRatio(Double aspectRatio) {
5454
}
5555

5656
/**
57-
* Mask of Dotcode barcode. Default value: -1.
57+
* DEPRECATED: DotCodeMask is now calculated automatically
5858
*
5959
* @return dotCodeMask
6060
*/
61-
@ApiModelProperty(value = "Mask of Dotcode barcode. Default value: -1.")
61+
@ApiModelProperty(value = "DEPRECATED: DotCodeMask is now calculated automatically")
6262
public Integer getDotCodeMask() {
6363
return dotCodeMask;
6464
}

0 commit comments

Comments
 (0)