Skip to content

Commit 6594d84

Browse files
authored
Merge pull request #61 from aspose-pdf-cloud/develop
update to 23.6
2 parents 6390c3d + 8c58198 commit 6594d84

File tree

6 files changed

+113
-44
lines changed

6 files changed

+113
-44
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 23.5
32+
## Enhancements in Version 23.6
33+
- Support to convert password protected PDF documents to PPTX.
3334
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3435

36+
## Bugs fixed in Version 23.6
37+
- Text Replacement API constantly hitting 504 Gateway Timeout.
38+
3539
## Requirements
3640
Building the API client library requires [Maven](https://maven.apache.org/) to be installed.
3741

sdk/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.5.0'
23+
version = '23.6.0'
2424

2525
buildscript {
2626
repositories {
@@ -100,7 +100,7 @@ dependencies {
100100
publish {
101101
groupId = 'com.aspose'
102102
artifactId = 'aspose-cloud-pdf-android'
103-
publishVersion = '23.5.0'
103+
publishVersion = '23.6.0'
104104
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. 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.'
105105
licences = ['MIT']
106106
website = 'https://products.aspose.cloud/pdf/cloud'

sdk/docs/PdfApi.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3882,7 +3882,7 @@ Name | Type | Description | Notes
38823882

38833883
<a name="getPdfInStorageToPptx"></a>
38843884
# **getPdfInStorageToPptx**
3885-
> File getPdfInStorageToPptx(name, separateImages, slidesAsImages, folder, storage)
3885+
> File getPdfInStorageToPptx(name, separateImages, slidesAsImages, folder, storage, password)
38863886
38873887
Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
38883888

@@ -3895,6 +3895,7 @@ Name | Type | Description | Notes
38953895
**slidesAsImages** | **Boolean**| Slides as images. | [optional]
38963896
**folder** | **String**| The document folder. | [optional]
38973897
**storage** | **String**| The document storage. | [optional]
3898+
**password** | **String**| Base64 encoded password. | [optional]
38983899

38993900
### Return type
39003901

@@ -7849,7 +7850,7 @@ Name | Type | Description | Notes
78497850

78507851
<a name="putPdfInRequestToPptx"></a>
78517852
# **putPdfInRequestToPptx**
7852-
> AsposeResponse putPdfInRequestToPptx(outPath, separateImages, slidesAsImages, storage, file)
7853+
> AsposeResponse putPdfInRequestToPptx(outPath, separateImages, slidesAsImages, storage, password, file)
78537854
78547855
Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
78557856

@@ -7861,6 +7862,7 @@ Name | Type | Description | Notes
78617862
**separateImages** | **Boolean**| Separate images. | [optional]
78627863
**slidesAsImages** | **Boolean**| Slides as images. | [optional]
78637864
**storage** | **String**| The document storage. | [optional]
7865+
**password** | **String**| Base64 encoded password. | [optional]
78647866
**file** | **File**| A file to be converted. | [optional]
78657867

78667868
### Return type
@@ -8219,7 +8221,7 @@ Name | Type | Description | Notes
82198221

82208222
<a name="putPdfInStorageToPptx"></a>
82218223
# **putPdfInStorageToPptx**
8222-
> AsposeResponse putPdfInStorageToPptx(name, outPath, separateImages, slidesAsImages, folder, storage)
8224+
> AsposeResponse putPdfInStorageToPptx(name, outPath, separateImages, slidesAsImages, folder, storage, password)
82238225
82248226
Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
82258227

@@ -8233,6 +8235,7 @@ Name | Type | Description | Notes
82338235
**slidesAsImages** | **Boolean**| Slides as images. | [optional]
82348236
**folder** | **String**| The document folder. | [optional]
82358237
**storage** | **String**| The document storage. | [optional]
8238+
**password** | **String**| Base64 encoded password. | [optional]
82368239

82378240
### Return type
82388241

sdk/src/main/java/com/aspose/asposecloudpdfandroid/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", "android sdk");
95-
addDefaultHeader("x-aspose-client-version", "23.5.0");
95+
addDefaultHeader("x-aspose-client-version", "23.6.0");
9696

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

0 commit comments

Comments
 (0)