Skip to content

Commit bae9693

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 8f6acf9 + 9345bc1 commit bae9693

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
## [24.5.0] - Aspose Words Cloud for Dart 24.5 Release Notes
2+
3+
- Added the support of multistorage operations. Saving a file as a result of an operation can be performed in a specific storage, when, used file path in the next format '@storage:path/to/file.doc'.
4+
5+
16
## [24.4.0] - Aspose Words Cloud for Dart 24.4 Release Notes
27

38
- Added the 'MergeWithNext' method to merge a section with the next one.
9+
- Added the 'LockAspectRatio' propperty for DrawingObjectInsert and DrawingObjectUpdate methods.
410

511

612
## [24.3.0] - Aspose Words Cloud for Dart 24.3 Release Notes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add this dependency to your *pubspec.yaml*:
2727

2828
```yaml
2929
dependencies:
30-
aspose_words_cloud: 24.4.0
30+
aspose_words_cloud: 24.5.0
3131
```
3232
3333
## Getting Started

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class ApiClient {
503503

504504
var httpRequest = http.Request(requestData.method, Uri.parse(requestData.url));
505505
httpRequest.headers['x-aspose-client'] = 'dart sdk';
506-
httpRequest.headers['x-aspose-client-version'] = '24.4';
506+
httpRequest.headers['x-aspose-client-version'] = '24.5';
507507
httpRequest.headers['Authorization'] = await _getAuthToken();
508508
httpRequest.headers.addAll(requestData.headers);
509509

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: aspose_words_cloud
22
description: This package allows you to work with Aspose.Words Cloud REST APIs in your Dart applications quickly and easily, with zero initial cost.
3-
version: 24.4.0
3+
version: 24.5.0
44
homepage: https://github.com/aspose-words-cloud/aspose-words-cloud-dart
55

66
environment:

test/mail_merge/execute_mail_merge_tests.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ class ExecuteMailMergeTests
5353

5454
final request = ExecuteMailMergeOnlineRequest(
5555
requestTemplate,
56-
requestData
56+
requestData,
57+
withRegions: true
5758
);
5859

5960
await context.getApi().executeMailMergeOnline(request);
@@ -71,7 +72,7 @@ class ExecuteMailMergeTests
7172
remoteFileName,
7273
data: localDataFile,
7374
folder: remoteDataFolder,
74-
withRegions: false,
75+
withRegions: true,
7576
destFileName: context.baseTestOutPath + '/' + remoteFileName
7677
);
7778

0 commit comments

Comments
 (0)