Skip to content

Commit 2e19581

Browse files
authored
Merge pull request #59 from aspose-pdf-cloud/develop
update to 23.7
2 parents 9644da3 + c504f43 commit 2e19581

File tree

6 files changed

+36
-12
lines changed

6 files changed

+36
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

33-
## Enhancements in Version 23.6
34-
- Support to convert password protected PDF documents to PPTX.
33+
## Enhancements in Version 23.7
34+
- Form Field MappingName property support.
3535
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3636

37-
## Bugs fixed in Version 23.6
38-
- Text Replacement API constantly hitting 504 Gateway Timeout.
37+
## Bugs fixed in Version 23.7
38+
- Adding Radio Button throws Internal Error.
3939

4040
## Installation
4141
To install the API client library to your local Maven repository, simply execute:
@@ -59,7 +59,7 @@ Add this dependency to your project's POM:
5959
<dependency>
6060
<groupId>com.aspose</groupId>
6161
<artifactId>aspose-cloud-pdf</artifactId>
62-
<version>23.6.0</version>
62+
<version>23.7.0</version>
6363
<scope>compile</scope>
6464
</dependency>
6565
```
@@ -68,7 +68,7 @@ Add this dependency to your project's POM:
6868
Add this dependency to your project's build file:
6969

7070
```groovy
71-
compile "com.aspose:aspose-cloud-pdf:23.6.0"
71+
compile "com.aspose:aspose-cloud-pdf:23.7.0"
7272
```
7373

7474
### Others
@@ -78,7 +78,7 @@ At first generate the JAR by executing:
7878

7979
Then manually install the following JARs:
8080

81-
* target/aspose-cloud-pdf-23.6.0.jar
81+
* target/aspose-cloud-pdf-23.7.0.jar
8282
* target/lib/*.jar
8383

8484
## Getting Started

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '23.6.0'
23+
version = '23.7.0'
2424

2525
buildscript {
2626
repositories {
@@ -84,7 +84,7 @@ dependencies {
8484
publish {
8585
groupId = 'com.aspose'
8686
artifactId = 'aspose-pdf-cloud'
87-
publishVersion = '23.6.0'
87+
publishVersion = '23.7.0'
8888
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
8989
licences = ['MIT']
9090
website = 'https://products.aspose.cloud/pdf/cloud'

docs/Field.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Represents form field.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**name** | **String** | Field name. | [optional]
9+
**mappingName** | **String** | Mapping name. | [optional]
910
**selectedItems** | **List&lt;Integer&gt;** | Selected items. | [optional]
1011
**type** | [**FieldType**](FieldType.md) | Field type. | [optional]
1112
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-pdf-cloud</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-pdf-cloud</name>
9-
<version>23.6.0</version>
9+
<version>23.7.0</version>
1010
<url>https://www.aspose.cloud/</url>
1111
<description>Aspose.PDF Cloud is a REST API for creating and editing PDF files.
1212
Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF.

src/main/java/com/aspose/asposecloudpdf/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public ApiClient() {
9292

9393
// Add custom headers
9494
addDefaultHeader("x-aspose-client", "java sdk");
95-
addDefaultHeader("x-aspose-client-version", "23.6.0");
95+
addDefaultHeader("x-aspose-client-version", "23.7.0");
9696

9797
// PDFCLOUD-418 Set default Connect Timeout
9898
setConnectTimeout(5 * 60 * 1000);

src/main/java/com/aspose/asposecloudpdf/model/Field.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ public class Field extends LinkElement {
4747
@SerializedName("Name")
4848
private String name = null;
4949

50+
@SerializedName("MappingName")
51+
private String mappingName = null;
52+
5053
@SerializedName("SelectedItems")
5154
private List<Integer> selectedItems = null;
5255

@@ -77,6 +80,24 @@ public void setName(String name) {
7780
this.name = name;
7881
}
7982

83+
public Field mappingName(String mappingName) {
84+
this.mappingName = mappingName;
85+
return this;
86+
}
87+
88+
/**
89+
* Mapping name.
90+
* @return mappingName
91+
**/
92+
@ApiModelProperty(value = "Mapping name.")
93+
public String getMappingName() {
94+
return mappingName;
95+
}
96+
97+
public void setMappingName(String mappingName) {
98+
this.mappingName = mappingName;
99+
}
100+
80101
public Field selectedItems(List<Integer> selectedItems) {
81102
this.selectedItems = selectedItems;
82103
return this;
@@ -173,6 +194,7 @@ public boolean equals(java.lang.Object o) {
173194
}
174195
Field field = (Field) o;
175196
return Objects.equals(this.name, field.name) &&
197+
Objects.equals(this.mappingName, field.mappingName) &&
176198
Objects.equals(this.selectedItems, field.selectedItems) &&
177199
Objects.equals(this.type, field.type) &&
178200
Objects.equals(this.rect, field.rect) &&
@@ -182,7 +204,7 @@ public boolean equals(java.lang.Object o) {
182204

183205
@Override
184206
public int hashCode() {
185-
return Objects.hash(name, selectedItems, type, rect, values, super.hashCode());
207+
return Objects.hash(name, mappingName, selectedItems, type, rect, values, super.hashCode());
186208
}
187209

188210

@@ -192,6 +214,7 @@ public String toString() {
192214
sb.append("class Field {\n");
193215
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
194216
sb.append(" name: ").append(toIndentedString(name)).append("\n");
217+
sb.append(" mappingName: ").append(toIndentedString(mappingName)).append("\n");
195218
sb.append(" selectedItems: ").append(toIndentedString(selectedItems)).append("\n");
196219
sb.append(" type: ").append(toIndentedString(type)).append("\n");
197220
sb.append(" rect: ").append(toIndentedString(rect)).append("\n");

0 commit comments

Comments
 (0)