Skip to content

Commit ed4d701

Browse files
update to 22.2
1 parent 2ff510b commit ed4d701

File tree

7 files changed

+41
-407
lines changed

7 files changed

+41
-407
lines changed

README.md

Lines changed: 5 additions & 3 deletions
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 22.1
32+
## Enhancements in Version 22.2
3333
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3434

35+
## Bugs fixed in Version 22.2
36+
- PDF to XLSX: Google sheet does not recognize output excel sheet.
37+
- Text Replace API method throws Internal Error.
38+
3539
## Enhancements in Version 20.9
3640
* Implemented custom fonts for Text API.
3741
* Added custom fonts for Table API.
@@ -208,7 +212,6 @@ Class | Method | HTTP request | Description
208212
*PdfApi* | [**getImportFieldsFromXfdfInStorage**](sdk/docs/PdfApi.md#getImportFieldsFromXfdfInStorage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
209213
*PdfApi* | [**getImportFieldsFromXmlInStorage**](sdk/docs/PdfApi.md#getImportFieldsFromXmlInStorage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
210214
*PdfApi* | [**getInkAnnotation**](sdk/docs/PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
211-
*PdfApi* | [**getLaTeXInStorageToPdf**](sdk/docs/PdfApi.md#getLaTeXInStorageToPdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
212215
*PdfApi* | [**getLineAnnotation**](sdk/docs/PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
213216
*PdfApi* | [**getLinkAnnotation**](sdk/docs/PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
214217
*PdfApi* | [**getListBoxField**](sdk/docs/PdfApi.md#getListBoxField) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -395,7 +398,6 @@ Class | Method | HTTP request | Description
395398
*PdfApi* | [**putImportFieldsFromXfdfInStorage**](sdk/docs/PdfApi.md#putImportFieldsFromXfdfInStorage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
396399
*PdfApi* | [**putImportFieldsFromXmlInStorage**](sdk/docs/PdfApi.md#putImportFieldsFromXmlInStorage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
397400
*PdfApi* | [**putInkAnnotation**](sdk/docs/PdfApi.md#putInkAnnotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
398-
*PdfApi* | [**putLaTeXInStorageToPdf**](sdk/docs/PdfApi.md#putLaTeXInStorageToPdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
399401
*PdfApi* | [**putLineAnnotation**](sdk/docs/PdfApi.md#putLineAnnotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
400402
*PdfApi* | [**putLinkAnnotation**](sdk/docs/PdfApi.md#putLinkAnnotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
401403
*PdfApi* | [**putListBoxField**](sdk/docs/PdfApi.md#putListBoxField) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field

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 = '22.1.0'
23+
version = '22.2.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 = '22.1.0'
103+
publishVersion = '22.2.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/DocumentProperty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pdf document property.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**name** | **String** | Pame of the property. | [optional]
8+
**name** | **String** | Name of the property. | [optional]
99
**value** | **String** | Property value. | [optional]
1010
**builtIn** | **Boolean** | Value indicating whether it is a built-in property. |
1111
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]

sdk/docs/PdfApi.md

Lines changed: 6 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ Method | HTTP request | Description
9797
[**getImportFieldsFromXfdfInStorage**](PdfApi.md#getImportFieldsFromXfdfInStorage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
9898
[**getImportFieldsFromXmlInStorage**](PdfApi.md#getImportFieldsFromXmlInStorage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
9999
[**getInkAnnotation**](PdfApi.md#getInkAnnotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
100-
[**getLaTeXInStorageToPdf**](PdfApi.md#getLaTeXInStorageToPdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
101100
[**getLineAnnotation**](PdfApi.md#getLineAnnotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
102101
[**getLinkAnnotation**](PdfApi.md#getLinkAnnotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
103102
[**getListBoxField**](PdfApi.md#getListBoxField) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -284,7 +283,6 @@ Method | HTTP request | Description
284283
[**putImportFieldsFromXfdfInStorage**](PdfApi.md#putImportFieldsFromXfdfInStorage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
285284
[**putImportFieldsFromXmlInStorage**](PdfApi.md#putImportFieldsFromXmlInStorage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
286285
[**putInkAnnotation**](PdfApi.md#putInkAnnotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
287-
[**putLaTeXInStorageToPdf**](PdfApi.md#putLaTeXInStorageToPdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
288286
[**putLineAnnotation**](PdfApi.md#putLineAnnotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
289287
[**putLinkAnnotation**](PdfApi.md#putLinkAnnotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
290288
[**putListBoxField**](PdfApi.md#putListBoxField) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
@@ -2554,28 +2552,6 @@ Name | Type | Description | Notes
25542552
- **Content-Type**: application/json
25552553
- **Accept**: application/json
25562554

2557-
<a name="getLaTeXInStorageToPdf"></a>
2558-
# **getLaTeXInStorageToPdf**
2559-
> File getLaTeXInStorageToPdf(srcPath, storage)
2560-
2561-
Convert TeX file (located on storage) to PDF format and return resulting file in response.
2562-
2563-
### Parameters
2564-
2565-
Name | Type | Description | Notes
2566-
------------- | ------------- | ------------- | -------------
2567-
**srcPath** | **String**| Full source filename (ex. /folder1/folder2/template.tex) |
2568-
**storage** | **String**| The document storage. | [optional]
2569-
2570-
### Return type
2571-
2572-
**File**
2573-
2574-
### HTTP request headers
2575-
2576-
- **Content-Type**: application/json
2577-
- **Accept**: multipart/form-data
2578-
25792555
<a name="getLineAnnotation"></a>
25802556
# **getLineAnnotation**
25812557
> LineAnnotationResponse getLineAnnotation(name, annotationId, storage, folder)
@@ -4017,7 +3993,7 @@ Name | Type | Description | Notes
40173993
**name** | **String**| The document name. |
40183994
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
40193995
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
4020-
**scaleFactor** | **Double**| Scale factor | [optional]
3996+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
40213997
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
40223998
**folder** | **String**| The document folder. | [optional]
40233999
**storage** | **String**| The document storage. | [optional]
@@ -4044,7 +4020,7 @@ Name | Type | Description | Notes
40444020
**name** | **String**| The document name. |
40454021
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
40464022
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
4047-
**scaleFactor** | **Double**| Scale factor | [optional]
4023+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
40484024
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
40494025
**folder** | **String**| The document folder. | [optional]
40504026
**storage** | **String**| The document storage. | [optional]
@@ -7214,30 +7190,6 @@ Name | Type | Description | Notes
72147190

72157191
[**InkAnnotationResponse**](InkAnnotationResponse.md)
72167192

7217-
### HTTP request headers
7218-
7219-
- **Content-Type**: application/json
7220-
- **Accept**: application/json
7221-
7222-
<a name="putLaTeXInStorageToPdf"></a>
7223-
# **putLaTeXInStorageToPdf**
7224-
> AsposeResponse putLaTeXInStorageToPdf(name, srcPath, dstFolder, storage)
7225-
7226-
Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
7227-
7228-
### Parameters
7229-
7230-
Name | Type | Description | Notes
7231-
------------- | ------------- | ------------- | -------------
7232-
**name** | **String**| The document name. |
7233-
**srcPath** | **String**| Full source filename (ex. /folder1/folder2/template.tex) |
7234-
**dstFolder** | **String**| The destination document folder. | [optional]
7235-
**storage** | **String**| The document storage. | [optional]
7236-
7237-
### Return type
7238-
7239-
[**AsposeResponse**](AsposeResponse.md)
7240-
72417193
### HTTP request headers
72427194

72437195
- **Content-Type**: application/json
@@ -7928,7 +7880,7 @@ Name | Type | Description | Notes
79287880
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.xls) |
79297881
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
79307882
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
7931-
**scaleFactor** | **Double**| Scale factor | [optional]
7883+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
79327884
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
79337885
**storage** | **String**| The document storage. | [optional]
79347886
**file** | **File**| A file to be converted. | [optional]
@@ -7955,7 +7907,7 @@ Name | Type | Description | Notes
79557907
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.xlsx) |
79567908
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
79577909
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
7958-
**scaleFactor** | **Double**| Scale factor | [optional]
7910+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
79597911
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
79607912
**storage** | **String**| The document storage. | [optional]
79617913
**file** | **File**| A file to be converted. | [optional]
@@ -8302,7 +8254,7 @@ Name | Type | Description | Notes
83028254
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.xls) |
83038255
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
83048256
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
8305-
**scaleFactor** | **Double**| Scale factor | [optional]
8257+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
83068258
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
83078259
**folder** | **String**| The document folder. | [optional]
83088260
**storage** | **String**| The document storage. | [optional]
@@ -8330,7 +8282,7 @@ Name | Type | Description | Notes
83308282
**outPath** | **String**| Full resulting filename (ex. /folder1/folder2/result.xlsx) |
83318283
**insertBlankColumnAtFirst** | **Boolean**| Insert blank column at first | [optional]
83328284
**minimizeTheNumberOfWorksheets** | **Boolean**| Minimize the number of worksheets | [optional]
8333-
**scaleFactor** | **Double**| Scale factor | [optional]
8285+
**scaleFactor** | **Double**| Scale factor (Obsolete) | [optional]
83348286
**uniformWorksheets** | **Boolean**| Uniform worksheets | [optional]
83358287
**folder** | **String**| The document folder. | [optional]
83368288
**storage** | **String**| The document storage. | [optional]

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", "22.1.0");
95+
addDefaultHeader("x-aspose-client-version", "22.2.0");
9696

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

0 commit comments

Comments
 (0)