Skip to content

Commit 295e092

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 4ac6c02 + 30054b9 commit 295e092

File tree

5 files changed

+1934
-2
lines changed

5 files changed

+1934
-2
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,15 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1616
- Add & remove watermarks and protection.
1717
- Read & write access to Document Object Model.
1818

19+
## Enhancements in Version 24.8
20+
21+
- Added the support of OpenType standard. It is usefull for languages required advanced typography.
22+
23+
1924
## Enhancements in Version 24.7
2025

2126
- Added support for azw3 (Amazon Kindle Format) documents.
27+
- Added 'MaxImageResolution' property for SvgSaveOptionsData class.
2228

2329

2430
## Enhancements in Version 24.6

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposewordscloud",
3-
"version": "24.7.0",
3+
"version": "24.8.0",
44
"description": "Aspose.Words Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/words/cloud",
66
"author": {

src/internal/requestHelper.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ async function invokeApiMethodInternal(requestOptions: request.OptionsWithUri, c
131131
requestOptions.timeout = 1000 * confguration.timeout;
132132

133133
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
134-
requestOptions.headers["x-aspose-client-version"] = "24.7";
134+
requestOptions.headers["x-aspose-client-version"] = "24.8";
135135
requestOptions.encoding = null;
136136

137137
requestOptions.uri = encodeURI(requestOptions.uri.toString());

0 commit comments

Comments
 (0)