You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+72-1Lines changed: 72 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,20 +13,83 @@ This repository contains Aspose.Words Cloud SDK for Swift source code. This SDK
13
13
* Watermarks and protection
14
14
* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
15
15
16
+
## Enhancements in Version 20.8
17
+
18
+
- Added new api method (PUT '/words/{name}/compatibility/optimize') which is allows to optimize the document contents as well as default Aspose.Words behavior to a particular versions of MS Word
19
+
- Added 'ApplyBaseDocumentHeadersAndFootersToAppendingDocuments' option to 'DocumentEntryList' for AppendDocument API
20
+
- WithoutNodePath methods have been removed, pass null values instead
21
+
22
+
23
+
## Enhancements in Version 20.7
24
+
25
+
- Added 'Markdown' save format
26
+
- Added endpoint to update paragraph format without node path (PUT '/words/{name}/paragraphs/{index}/format')
27
+
- Fix url parameters encoding issue.
28
+
29
+
## Enhancements in Version 20.6
30
+
31
+
- Added new methods:
32
+
- DeleteAllParagraphTabStopsWithoutNodePath
33
+
- DeleteParagraphTabStopWithoutNodePath
34
+
- GetParagraphTabStopsWithoutNodePath
35
+
- InsertOrUpdateParagraphTabStopWithoutNodePath
36
+
- InsertParagraphWithoutNodePath
37
+
- UpdateParagraphFormatWithoutNodePath
38
+
- UpdateParagraphListFormatWithoutNodePath
39
+
- DeleteParagraphListFormatWithoutNodePath
40
+
- DrawingObject related methods have been changed body content. Special request classes are introduced instead of strings.
41
+
- InsertOrUpdateParagraphTabStop, DeleteParagraphTabStop methods have been changed parameter order
42
+
- OoxmlSaveOptionsData.CompressionLevel property has been added
43
+
44
+
45
+
## Enhancements in Version 20.5
46
+
47
+
- Added methods to work with Word document lists
48
+
- GetLists
49
+
- GetList
50
+
- InsertList
51
+
- UpdateList
52
+
- UpdateListLevel
53
+
- Added methods to work with styles
54
+
- GetStyles
55
+
- UpdateStyle
56
+
- InsertStyle
57
+
- CopyStyle
58
+
- GetStyleFromDocumentElement
59
+
- ApplyStyleToDocumentElement
60
+
- Added methods to work with paragraph list format
61
+
- GetParagraphListFormat
62
+
- GetParagraphListFormatWithoutNodePath
63
+
- UpdateParagraphListFormat
64
+
- DeleteParagraphListFormat
65
+
- Added methods to work with paragraph tab stops
66
+
- GetParagraphTabStops
67
+
- InsertOrUpdateParagraphTabStop
68
+
- DeleteAllParagraphTabStops
69
+
- DeleteParagraphTabStop
70
+
- Added methods to build reports
71
+
- BuildReport
72
+
- BuildReportOnline
73
+
- Added Shading property to ParagraphFormat
74
+
75
+
16
76
## How to use the SDK?
17
77
The complete source code is available in this repository folder. You can either directly use it in your project via source code or add this repository as dependency (recommended). For more details, please visit our [documentation website](https://docs.aspose.cloud/display/wordscloud/Available+SDKs).
18
78
19
79
### Prerequisites
20
80
To use Aspose Words Cloud SDK for Swift you need to register an account with [Aspose Cloud](https://www.aspose.cloud/) and lookup/create App Key and SID at [Cloud Dashboard](https://dashboard.aspose.cloud/#/apps). There is free quota available. For more details, see [Aspose Cloud Pricing](https://purchase.aspose.cloud/pricing).
21
81
22
82
## Installation & Usage
83
+
84
+
### Swift Package Manager
85
+
23
86
Add link to this repository as dependency to your Package.swift:
24
87
25
88
```swift
26
89
27
90
dependencies: [
28
91
// Dependencies declare other packages that this package depends on.
0 commit comments