aspose_slides_cloud 22.9.0 → 22.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '096527bfe3f62445755c0568bfdebc96ab63d2ab72f889df6360d3e2d101e77a'
4
- data.tar.gz: 38dd1eec7b62033a282bd67d5a6df3c411714b7cc78f645240fb222ee5bf3a32
3
+ metadata.gz: 6caa872808eb42ba7bfe5c1e58a2a15a8047fa7dae62313e8b50b72035c6a3a5
4
+ data.tar.gz: 7a7375b458842b6ec039f527a2f3466a21c5bc6a5634af94d888ab304af67ed4
5
5
  SHA512:
6
- metadata.gz: 94fabb39f800a4caf730dfc9ff9fb4bef95601c9ef5382a66b35f335437a96638b6fe150608074a87ce0d35b2ec80625b63e983214f7c97ee7ab90ceaa3345f9
7
- data.tar.gz: 94099a45452b3789015eab90fbc5bda06deccb053783b00bdc05135cacb787f3c096f5677d2cb150fd4a5e09ffb913ce03de546767880630a3c033805f0192e0
6
+ metadata.gz: 52a0b5eb94aa5deee6fe136bce13a3f8750170344d9578d0661080666baf9c7eb1d17e19a832c9020b5ec3cee66dc5bf11b27643897cc7d07ebfb01d887887c8
7
+ data.tar.gz: 9cf428f4cf781036fbed5b71ab5749d8817fd7cb90d6a19a9503df069a7fdc3335837b24567ba776e7d0f407a66e53627e0ff1f7b827453871ba517b3e76990b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aspose_slides_cloud (22.9.0)
4
+ aspose_slides_cloud (22.10.0)
5
5
  faraday (~> 0.17, >= 0.17.3)
6
6
  json (~> 2.1, >= 2.1.0)
7
7
 
@@ -29,19 +29,19 @@ GEM
29
29
  public_suffix (5.0.0)
30
30
  rake (12.3.3)
31
31
  rexml (3.2.5)
32
- rspec (3.11.0)
33
- rspec-core (~> 3.11.0)
34
- rspec-expectations (~> 3.11.0)
35
- rspec-mocks (~> 3.11.0)
36
- rspec-core (3.11.0)
37
- rspec-support (~> 3.11.0)
38
- rspec-expectations (3.11.1)
32
+ rspec (3.12.0)
33
+ rspec-core (~> 3.12.0)
34
+ rspec-expectations (~> 3.12.0)
35
+ rspec-mocks (~> 3.12.0)
36
+ rspec-core (3.12.0)
37
+ rspec-support (~> 3.12.0)
38
+ rspec-expectations (3.12.0)
39
39
  diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.11.0)
41
- rspec-mocks (3.11.1)
40
+ rspec-support (~> 3.12.0)
41
+ rspec-mocks (3.12.0)
42
42
  diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-support (3.11.1)
43
+ rspec-support (~> 3.12.0)
44
+ rspec-support (3.12.0)
45
45
  rspec_junit_formatter (0.6.0)
46
46
  rspec-core (>= 2, < 4, != 2.12.0)
47
47
  rubyzip (2.3.2)
data/README.md CHANGED
@@ -97,6 +97,12 @@ You may want to check out Aspose free [Powerpoint to PDF](https://products.aspos
97
97
  * Added **None** to the list of allowed values for **TimeUnitType** enum type.
98
98
  * **Level** property of **Category** class is deprecated and will be removed after v22.4.
99
99
 
100
+ ## Enhancements in Version 22.10
101
+
102
+ * Added new **GetSlideShowProperties** and **SetSlideShowProperties** methods to get & set slideshow properties.
103
+ * Methods that work with shapes, paragraphs and portions now have an optional **subShape** parameter which can be used to access subshapes (SmartArt elements, grouped shapes). Separate methods for subshapes (**GetSubshapeParagraphs**, **CreateSubshape**, **AlignSubshapes** etc.) have been removed.
104
+ * Added boolean **RepeatUntilEndSlide** and **RepeatUntilNextClick** properties to **Effect** class.
105
+
100
106
  ## Enhancements in Version 22.1
101
107
  * New **MathParagraph** property of **Portion** class allows to get and set math formulas. A set of **MathElement** subclasses allows to specify complex mathematical expressions.
102
108
  * New **DownloadPortionAsMathMl** and **SavePortionAsMathMl** methods allow to export math formulas to MathML format.
data/docker-entrypoint.sh CHANGED
@@ -4,6 +4,5 @@ sed -i "s/@your_client_id@/${CLIENT_ID}/g" testConfig.json
4
4
  sed -i "s/@your_client_secret@/${CLIENT_SECRET}/g" testConfig.json
5
5
  if [ -n "$BASE_URL" ] ; then sed -i "s+https://api-qa.aspose.cloud+${BASE_URL}+g" testConfig.json ; fi
6
6
 
7
- rm -rf spec/api
8
7
  mkdir testResults
9
- #rspec spec --format RspecJunitFormatter --out testResults/rspec.xml
8
+ rspec spec --format RspecJunitFormatter --out testResults/rspec.xml