Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
## Read PDF Formats
MHT, PCL, PS, XSLFO, MD

## Enhancements in Version 25.11
## Enhancements in Version 25.10
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.

## Bugs fixed in Version 25.10
- Method PutBookmark does not change bookmark color.
- TextReplace shows hidden text in the output file.

## Installation
To install the API client library to your local Maven repository, simply execute:

Expand All @@ -54,7 +59,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-cloud-pdf</artifactId>
<version>25.11.0</version>
<version>25.10.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -63,7 +68,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.aspose:aspose-cloud-pdf:25.11.0"
compile "com.aspose:aspose-cloud-pdf:25.10.0"
```

### Others
Expand All @@ -73,7 +78,7 @@ At first generate the JAR by executing:

Then manually install the following JARs:

* target/aspose-cloud-pdf-25.11.0.jar
* target/aspose-cloud-pdf-25.10.0.jar
* target/lib/*.jar

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.aspose'
version = '25.11.0'
version = '25.10.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>aspose-pdf-cloud</artifactId>
<packaging>jar</packaging>
<name>aspose-pdf-cloud</name>
<version>25.11.0</version>
<version>25.10.0</version>
<url>https://www.aspose.cloud/</url>
<description>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.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aspose/asposecloudpdf/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public ApiClient() {

// Add custom headers
addDefaultHeader("x-aspose-client", "java sdk");
addDefaultHeader("x-aspose-client-version", "25.11.0");
addDefaultHeader("x-aspose-client-version", "25.10.0");

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