Skip to content

Commit 4f44d2a

Browse files
author
kirill.novinskiy@aspose.com
committed
update to 24.10
1 parent 4d4474a commit 4f44d2a

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,15 @@ 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 24.9
34-
- Develop DeleteDocumentLayer Method.
35-
- Develop GetDocumentLayers Method.
36-
- How to extract PDF layer elements and create a new PDF
33+
## Enhancements in Version 24.10
34+
- Develop a method to add XMP metadata.
35+
- Develop a method to obtain XMP metadata in the XML form.
36+
- Develop a method to obtain XMP metadata in the JSON form.
3737
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3838

39+
## Bugs fixed in Version 24.10
40+
- PDF XFA form to Acro from conversion API results corrupt PDF.
41+
3942
## Installation
4043
To install the API client library to your local Maven repository, simply execute:
4144

@@ -58,7 +61,7 @@ Add this dependency to your project's POM:
5861
<dependency>
5962
<groupId>com.aspose</groupId>
6063
<artifactId>aspose-cloud-pdf</artifactId>
61-
<version>24.9.0</version>
64+
<version>24.10.0</version>
6265
<scope>compile</scope>
6366
</dependency>
6467
```
@@ -67,7 +70,7 @@ Add this dependency to your project's POM:
6770
Add this dependency to your project's build file:
6871

6972
```groovy
70-
compile "com.aspose:aspose-cloud-pdf:24.9.0"
73+
compile "com.aspose:aspose-cloud-pdf:24.10.0"
7174
```
7275

7376
### Others
@@ -77,7 +80,7 @@ At first generate the JAR by executing:
7780

7881
Then manually install the following JARs:
7982

80-
* target/aspose-cloud-pdf-24.9.0.jar
83+
* target/aspose-cloud-pdf-24.10.0.jar
8184
* target/lib/*.jar
8285

8386
## 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 = '24.9.0'
23+
version = '24.10.0'
2424

2525
buildscript {
2626
repositories {
@@ -84,7 +84,7 @@ dependencies {
8484
publish {
8585
groupId = 'com.aspose'
8686
artifactId = 'aspose-pdf-cloud'
87-
publishVersion = '24.9.0'
87+
publishVersion = '24.10.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/PdfApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PdfApi
1+
# PdfApi
22

33
All URIs are relative to *https://api.aspose.cloud/v3.0*
44

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>24.9.0</version>
9+
<version>24.10.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
@@ -94,7 +94,7 @@ public ApiClient() {
9494

9595
// Add custom headers
9696
addDefaultHeader("x-aspose-client", "java sdk");
97-
addDefaultHeader("x-aspose-client-version", "24.9.0");
97+
addDefaultHeader("x-aspose-client-version", "24.10.0");
9898

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

0 commit comments

Comments
 (0)