Skip to content

Commit 43b265e

Browse files
author
osubachevataspose
authored
Merge pull request #68 from aspose-pdf-cloud/develop
update to 23.12
2 parents 5596ae6 + 0259e0a commit 43b265e

File tree

4 files changed

+120
-63
lines changed

4 files changed

+120
-63
lines changed

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,19 @@ 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.11
33-
- Support to Convert Password Protected PDF Documents.
32+
## Enhancements in Version 23.12
33+
- Support to update bookmark in password protected PDF document.
34+
- Support to delete bookmarks from password protected PDF document.
35+
- Support to add bookmarks to password protected PDF document.
36+
- Support to delete properties of password protected PDF document.
37+
- Support to add properties of password protected PDF document.
38+
- Support to read properties of password protected PDF document.
3439
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3540

41+
## Bugs fixed in Version 23.12
42+
- PDF to XLSX Conversion clubs data in one cell.
43+
- GetDocumentBookmarks does not get bookmarks from protected PDF.
44+
3645
## Installation
3746

3847
### Build a gem
@@ -46,15 +55,15 @@ gem build aspose_pdf_cloud.gemspec
4655
Then either install the gem locally:
4756

4857
```shell
49-
gem install ./aspose_pdf_cloud-23.11.0.gem
58+
gem install ./aspose_pdf_cloud-23.12.0.gem
5059
```
51-
(for development, run `gem install --dev ./aspose_pdf_cloud-23.11.0.gem` to install the development dependencies)
60+
(for development, run `gem install --dev ./aspose_pdf_cloud-23.12.0.gem` to install the development dependencies)
5261

5362
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
5463

5564
Finally add this to the Gemfile:
5665

57-
gem 'aspose_pdf_cloud', '~> 23.11.0'
66+
gem 'aspose_pdf_cloud', '~> 23.12.0'
5867

5968
### Install from Git
6069

docs/PdfApi.md

Lines changed: 31 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,7 @@ Name | Type | Description | Notes
480480
**bookmark_path** | **String**| The bookmark path. |
481481
**folder** | **String**| The document folder. | [optional]
482482
**storage** | **String**| The document storage. | [optional]
483+
**password** | **String**| The password (Base64). | [optional]
483484

484485
### Return type
485486

@@ -528,6 +529,7 @@ Name | Type | Description | Notes
528529
**name** | **String**| The document name. |
529530
**folder** | **String**| The document folder. | [optional]
530531
**storage** | **String**| The document storage. | [optional]
532+
**password** | **String**| The password (Base64). | [optional]
531533

532534
### Return type
533535

@@ -871,9 +873,10 @@ Delete custom document properties.
871873

872874
Name | Type | Description | Notes
873875
------------- | ------------- | ------------- | -------------
874-
**name** | **String**| |
875-
**storage** | **String**| | [optional]
876-
**folder** | **String**| | [optional]
876+
**name** | **String**| The document name. |
877+
**storage** | **String**| The document storage. | [optional]
878+
**folder** | **String**| The document folder. | [optional]
879+
**password** | **String**| The password (Base64). | [optional]
877880

878881
### Return type
879882

@@ -895,10 +898,11 @@ Delete document property.
895898

896899
Name | Type | Description | Notes
897900
------------- | ------------- | ------------- | -------------
898-
**name** | **String**| |
899-
**property_name** | **String**| |
900-
**storage** | **String**| | [optional]
901-
**folder** | **String**| | [optional]
901+
**name** | **String**| The document name. |
902+
**property_name** | **String**| Property name. |
903+
**storage** | **String**| The document storage. | [optional]
904+
**folder** | **String**| The document folder. | [optional]
905+
**password** | **String**| The password (Base64). | [optional]
902906

903907
### Return type
904908

@@ -999,6 +1003,7 @@ Name | Type | Description | Notes
9991003
**bookmark_path** | **String**| The bookmark path. |
10001004
**folder** | **String**| The document folder. | [optional]
10011005
**storage** | **String**| The document storage. | [optional]
1006+
**password** | **String**| The password (Base64). | [optional]
10021007

10031008
### Return type
10041009

@@ -1024,6 +1029,7 @@ Name | Type | Description | Notes
10241029
**bookmark_path** | **String**| The bookmark path. |
10251030
**folder** | **String**| The document folder. | [optional]
10261031
**storage** | **String**| The document storage. | [optional]
1032+
**password** | **String**| The password (Base64). | [optional]
10271033

10281034
### Return type
10291035

@@ -1268,6 +1274,7 @@ Name | Type | Description | Notes
12681274
**name** | **String**| The document name. |
12691275
**folder** | **String**| The document folder. | [optional]
12701276
**storage** | **String**| The document storage. | [optional]
1277+
**password** | **String**| The password (Base64). | [optional]
12711278

12721279
### Return type
12731280

@@ -1674,9 +1681,10 @@ Read document properties.
16741681

16751682
Name | Type | Description | Notes
16761683
------------- | ------------- | ------------- | -------------
1677-
**name** | **String**| |
1678-
**storage** | **String**| | [optional]
1679-
**folder** | **String**| | [optional]
1684+
**name** | **String**| The document name. |
1685+
**storage** | **String**| The document storage. | [optional]
1686+
**folder** | **String**| The document folder. | [optional]
1687+
**password** | **String**| The password (Base64). | [optional]
16801688

16811689
### Return type
16821690

@@ -1698,10 +1706,11 @@ Read document property by name.
16981706

16991707
Name | Type | Description | Notes
17001708
------------- | ------------- | ------------- | -------------
1701-
**name** | **String**| |
1702-
**property_name** | **String**| |
1703-
**storage** | **String**| | [optional]
1704-
**folder** | **String**| | [optional]
1709+
**name** | **String**| The document name. |
1710+
**property_name** | **String**| Property name. |
1711+
**storage** | **String**| The document storage. | [optional]
1712+
**folder** | **String**| The document folder. | [optional]
1713+
**password** | **String**| The password (Base64). | [optional]
17051714

17061715
### Return type
17071716

@@ -5152,6 +5161,7 @@ Name | Type | Description | Notes
51525161
**bookmarks** | [**Array<Bookmark>**](Bookmark.md)| The array of bookmark. |
51535162
**folder** | **String**| The document folder. | [optional]
51545163
**storage** | **String**| The document storage. | [optional]
5164+
**password** | **String**| The password (Base64). | [optional]
51555165

51565166
### Return type
51575167

@@ -6744,6 +6754,7 @@ Name | Type | Description | Notes
67446754
**bookmark** | [**Bookmark**](Bookmark.md)| The bookmark. |
67456755
**folder** | **String**| The document folder. | [optional]
67466756
**storage** | **String**| The document storage. | [optional]
6757+
**password** | **String**| The password (Base64). | [optional]
67476758

67486759
### Return type
67496760

@@ -9129,11 +9140,12 @@ Add/update document property.
91299140

91309141
Name | Type | Description | Notes
91319142
------------- | ------------- | ------------- | -------------
9132-
**name** | **String**| |
9133-
**property_name** | **String**| |
9134-
**value** | **String**| |
9135-
**storage** | **String**| | [optional]
9136-
**folder** | **String**| | [optional]
9143+
**name** | **String**| The document name. |
9144+
**property_name** | **String**| Property name. |
9145+
**value** | **String**| Property value. |
9146+
**storage** | **String**| The document storage. | [optional]
9147+
**folder** | **String**| The document folder. | [optional]
9148+
**password** | **String**| The password (Base64). | [optional]
91379149

91389150
### Return type
91399151

0 commit comments

Comments
 (0)