aspose_pdf_cloud 23.6.0 → 23.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f451e346f21121426558b0fa9c16453972b636ed838b6bfc9ad56fed8608ab54
4
- data.tar.gz: '086199fea6259a01307cc9f7c6ef4830c7b6272a6a90135defc3e275bc780226'
3
+ metadata.gz: 91150dc64100b10da3b4d35e883e7bf4935e1817b08a9e064a64156be0e2d13e
4
+ data.tar.gz: 0a90144580ee00ee9cfdbbd344481f24e5300e64023b92faf07ff83dcff7151c
5
5
  SHA512:
6
- metadata.gz: 3f8bdbfcaaf1409e2906c685946aeb14b951f4edf117637c1d31208695a3300566a9cd12070f933e59bf0bf44d4d602840e8070af792203d3a1119e45b61e2a4
7
- data.tar.gz: 8bbacb9c11e11d9ac3c957c360786a661fe0c990f6067a4d8541ed14f111b73529681b1681ac9e07d2f5831822b31759c276988e5b56eefe3c49c8c6ccb4a9bd
6
+ metadata.gz: 1dbcbd989bf1effcff0d77d08d2639ee39d4ca83880c8041f477c8cf83de43edffcc61854f84a73ddcf32b060a3ae2e57899faf2edab3942bd023b75fdd7750b
7
+ data.tar.gz: b72f61c39127e3d0f0a52a33b743a19ea21213985ebfdb5aa7a74045b84e8e3ae63c7d506708c93754ea6ccb54408a380394e3ac6aa36bfb8d32609f8fd8fc18
data/README.md CHANGED
@@ -29,12 +29,12 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
29
29
  ## Read PDF Formats
30
30
  MHT, PCL, PS, XSLFO, MD
31
31
 
32
- ## Enhancements in Version 23.6
33
- - Support to convert password protected PDF documents to PPTX.
32
+ ## Enhancements in Version 23.7
33
+ - Form Field MappingName property support.
34
34
  - A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
35
35
 
36
- ## Bugs fixed in Version 23.6
37
- - Text Replacement API constantly hitting 504 Gateway Timeout.
36
+ ## Bugs fixed in Version 23.7
37
+ - Adding Radio Button throws Internal Error.
38
38
 
39
39
  ## Installation
40
40
 
@@ -49,15 +49,15 @@ gem build aspose_pdf_cloud.gemspec
49
49
  Then either install the gem locally:
50
50
 
51
51
  ```shell
52
- gem install ./aspose_pdf_cloud-23.6.0.gem
52
+ gem install ./aspose_pdf_cloud-23.7.0.gem
53
53
  ```
54
- (for development, run `gem install --dev ./aspose_pdf_cloud-23.6.0.gem` to install the development dependencies)
54
+ (for development, run `gem install --dev ./aspose_pdf_cloud-23.7.0.gem` to install the development dependencies)
55
55
 
56
56
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
57
57
 
58
58
  Finally add this to the Gemfile:
59
59
 
60
- gem 'aspose_pdf_cloud', '~> 23.6.0'
60
+ gem 'aspose_pdf_cloud', '~> 23.7.0'
61
61
 
62
62
  ### Install from Git
63
63
 
data/docs/Field.md CHANGED
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **name** | **String** | Field name. | [optional]
9
+ **mapping_name** | **String** | Mapping name. | [optional]
9
10
  **selected_items** | **Array<Integer>** | Selected items. | [optional]
10
11
  **type** | [**FieldType**](FieldType.md) | Field type. | [optional]
11
12
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
@@ -31,6 +31,9 @@ module AsposePdfCloud
31
31
  # Field name.
32
32
  attr_accessor :name
33
33
 
34
+ # Mapping name.
35
+ attr_accessor :mapping_name
36
+
34
37
  # Selected items.
35
38
  attr_accessor :selected_items
36
39
 
@@ -49,6 +52,7 @@ module AsposePdfCloud
49
52
  {
50
53
  :'links' => :'Links',
51
54
  :'name' => :'Name',
55
+ :'mapping_name' => :'MappingName',
52
56
  :'selected_items' => :'SelectedItems',
53
57
  :'type' => :'Type',
54
58
  :'rect' => :'Rect',
@@ -61,6 +65,7 @@ module AsposePdfCloud
61
65
  {
62
66
  :'links' => :'Array<Link>',
63
67
  :'name' => :'String',
68
+ :'mapping_name' => :'String',
64
69
  :'selected_items' => :'Array<Integer>',
65
70
  :'type' => :'FieldType',
66
71
  :'rect' => :'Rectangle',
@@ -86,6 +91,10 @@ module AsposePdfCloud
86
91
  self.name = attributes[:'Name']
87
92
  end
88
93
 
94
+ if attributes.has_key?(:'MappingName')
95
+ self.mapping_name = attributes[:'MappingName']
96
+ end
97
+
89
98
  if attributes.has_key?(:'SelectedItems')
90
99
  if (value = attributes[:'SelectedItems']).is_a?(Array)
91
100
  self.selected_items = value
@@ -133,6 +142,7 @@ module AsposePdfCloud
133
142
  self.class == o.class &&
134
143
  links == o.links &&
135
144
  name == o.name &&
145
+ mapping_name == o.mapping_name &&
136
146
  selected_items == o.selected_items &&
137
147
  type == o.type &&
138
148
  rect == o.rect &&
@@ -148,7 +158,7 @@ module AsposePdfCloud
148
158
  # Calculates hash code according to all attributes.
149
159
  # @return [Fixnum] Hash code
150
160
  def hash
151
- [links, name, selected_items, type, rect, values].hash
161
+ [links, name, mapping_name, selected_items, type, rect, values].hash
152
162
  end
153
163
 
154
164
  # Builds the object from hash
@@ -20,5 +20,5 @@ SOFTWARE.
20
20
  =end
21
21
 
22
22
  module AsposePdfCloud
23
- VERSION = "23.6.0"
23
+ VERSION = "23.7.0"
24
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aspose_pdf_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 23.6.0
4
+ version: 23.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aspose PDF Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-30 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json