Skip to content

Commit 70634c4

Browse files
authored
Version updated. (#91)
1 parent 4cbd8e1 commit 70634c4

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

README.md

Lines changed: 3 additions & 3 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: 4.0
8-
- SDK version: 25.4.0
8+
- SDK version: 25.5.0
99

1010
## SDK and API Version Compatibility:
1111

@@ -73,7 +73,7 @@ Add this dependency to your project's POM:
7373
<dependency>
7474
<groupId>com.aspose</groupId>
7575
<artifactId>aspose-barcode-cloud</artifactId>
76-
<version>25.4.0</version>
76+
<version>25.5.0</version>
7777
<scope>compile</scope>
7878
</dependency>
7979
```
@@ -88,7 +88,7 @@ mvn clean package
8888

8989
Then manually install the following JARs:
9090

91-
- `target/aspose-barcode-cloud-25.4.0.jar`
91+
- `target/aspose-barcode-cloud-25.5.0.jar`
9292
- `target/lib/*.jar`
9393

9494
## Getting Started

docs/BarcodeImageParams.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Barcode image optional parameters
1010
|------------ | ------------- | ------------- | -------------|
1111
|**imageFormat** | **BarcodeImageFormat** | | [optional] |
1212
|**textLocation** | **CodeLocation** | | [optional] |
13-
|**foregroundColor** | **String** | Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] |
14-
|**backgroundColor** | **String** | Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] |
13+
|**foregroundColor** | **String** | Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] |
14+
|**backgroundColor** | **String** | Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] |
1515
|**units** | **GraphicsUnit** | | [optional] |
16-
|**resolution** | **Float** | Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional] |
17-
|**imageHeight** | **Float** | Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
18-
|**imageWidth** | **Float** | Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
19-
|**rotationAngle** | **Integer** | BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional] |
16+
|**resolution** | **Float** | Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional] |
17+
|**imageHeight** | **Float** | Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
18+
|**imageWidth** | **Float** | Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
19+
|**rotationAngle** | **Integer** | BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional] |
2020

2121

2222

docs/GenerateApi.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ Name | Type | Description | Notes
2121
---- | ---- | ------------ | -----
2222
**barcodeType** | [**EncodeBarcodeType**](.md)| Type of barcode to generate. | [enum: QR, AustraliaPost, AustralianPosteParcel, Aztec, Codabar, CodablockF, Code11, Code128, Code16K, Code32, Code39, Code39FullASCII, Code93, DataLogic2of5, DataMatrix, DatabarExpanded, DatabarExpandedStacked, DatabarLimited, DatabarOmniDirectional, DatabarStacked, DatabarStackedOmniDirectional, DatabarTruncated, DeutschePostIdentcode, DeutschePostLeitcode, DotCode, DutchKIX, EAN13, EAN14, EAN8, GS1Aztec, GS1CodablockF, GS1Code128, GS1DataMatrix, GS1DotCode, GS1HanXin, GS1MicroPdf417, GS1QR, HanXin, IATA2of5, ISBN, ISMN, ISSN, ITF14, ITF6, Interleaved2of5, ItalianPost25, MSI, MacroPdf417, Mailmark, Matrix2of5, MaxiCode, MicroPdf417, MicroQR, OPC, OneCode, PZN, PatchCode, Pdf417, Pharmacode, Planet, Postnet, RM4SCC, RectMicroQR, SCC14, SSCC18, SingaporePost, Standard2of5, SwissPostParcel, UPCA, UPCE, UpcaGs1Code128Coupon, UpcaGs1DatabarCoupon, VIN]
2323
**data** | **String**| String represents data to encode |
24-
**dataType** | [**EncodeDataType**](.md)| Type of data to encode. Default value: StringData. | [optional] [enum: StringData, Base64Bytes, HexBytes]
25-
**imageFormat** | [**BarcodeImageFormat**](.md)| Barcode output image format. Default value: png | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
26-
**textLocation** | [**CodeLocation**](.md)| Specify the displaying Text Location, set to CodeLocation.None to hide CodeText. Default value: Depends on BarcodeType. CodeLocation.Below for 1D Barcodes. CodeLocation.None for 2D Barcodes. | [optional] [enum: Below, Above, None]
27-
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
28-
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
24+
**dataType** | [**EncodeDataType**](.md)| Type of data to encode. Default value: StringData. | [optional] [enum: StringData, Base64Bytes, HexBytes]
25+
**imageFormat** | [**BarcodeImageFormat**](.md)| Barcode output image format. Default value: png | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
26+
**textLocation** | [**CodeLocation**](.md)| Specify the displaying Text Location, set to CodeLocation.None to hide CodeText. Default value: Depends on BarcodeType. CodeLocation.Below for 1D Barcodes. CodeLocation.None for 2D Barcodes. | [optional] [enum: Below, Above, None]
27+
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
28+
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
2929
**units** | [**GraphicsUnit**](.md)| Common Units for all measuring in query. Default units: pixel. | [optional] [enum: Pixel, Point, Inch, Millimeter]
30-
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
31-
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
32-
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
33-
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
30+
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
31+
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
32+
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
33+
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
3434

3535
### generate return type
3636

@@ -69,13 +69,13 @@ Name | Type | Description | Notes
6969
**dataType** | [**EncodeDataType**](EncodeDataType.md)| | [optional] [enum: StringData, Base64Bytes, HexBytes]
7070
**imageFormat** | [**BarcodeImageFormat**](BarcodeImageFormat.md)| | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
7171
**textLocation** | [**CodeLocation**](CodeLocation.md)| | [optional] [enum: Below, Above, None]
72-
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
73-
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
72+
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
73+
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
7474
**units** | [**GraphicsUnit**](GraphicsUnit.md)| | [optional] [enum: Pixel, Point, Inch, Millimeter]
75-
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
76-
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
77-
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
78-
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
75+
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
76+
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
77+
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
78+
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
7979

8080
### generateMultipart return type
8181

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-barcode-cloud</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-barcode-cloud</name>
9-
<version>25.4.0</version>
9+
<version>25.5.0</version>
1010
<url>https://www.aspose.cloud</url>
1111
<description>Aspose.BarCode Cloud SDK for Java</description>
1212
<scm>

snippets/dependency.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.aspose</groupId>
1313
<artifactId>aspose-barcode-cloud</artifactId>
14-
<version>25.4.0</version>
14+
<version>25.5.0</version>
1515
</dependency>
1616
<!-- Add other dependencies here -->
1717
</dependencies>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/** ApiClient. */
4141
public class ApiClient {
4242
public final String apiVersion = "v4.0";
43-
public final String clientVersion = "25.4.0";
43+
public final String clientVersion = "25.5.0";
4444

4545
private String baseUrl = "https://api.aspose.cloud";
4646
private String tokenUrl = "https://id.aspose.cloud/connect/token";
@@ -88,7 +88,7 @@ protected ApiClient(long readTimeoutMillis) {
8888
json = new JSON();
8989

9090
// Set default User-Agent.
91-
setUserAgent("OpenApi-Generator/25.4.0/java");
91+
setUserAgent("OpenApi-Generator/25.5.0/java");
9292

9393
addDefaultHeader("x-aspose-client", "java sdk");
9494
addDefaultHeader("x-aspose-client-version", clientVersion);

0 commit comments

Comments
 (0)