Skip to content

Commit 718f4d8

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 237019b + 17bf61f commit 718f4d8

File tree

748 files changed

+1705
-1025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

748 files changed

+1705
-1025
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1+
## [24.1.0] - Aspose Words Cloud for Dart 24.1 Release Notes
2+
3+
- Added support for InsertAfterNode in the insert API without NodePath.
4+
- Added support for inserting nodes (runs/rows/cells/bookmarks) without NodePath.
5+
- Added support for transparency in the Watermark API.
6+
- Added support for password and encryptedPassword fields in FileReference.
7+
- Fixed missing href value in document responses.
8+
9+
110
## [23.12.0] - Aspose Words Cloud for Dart 23.12 Release Notes
211

312
- Properties Name, Text, StartRange, EndRange marked as required for InsertBookmark operation.
413
- Implemented DeleteOfficeMathObjects operation to delete all office math objects from document.
514
- Parameter ProtectionRequest was removed from the UnprotectDocument operation. Now removing protection from a document does not require a password.
615
- Model ProtectionRequest marked as deprecated, please use ProtectionRequestV2 instead for perform ProtectDocument operation. To change the password or protection type of protected document, the old password is no required.
16+
- Added fields Password and EncryptedPassword to FileReference for documents encrypted by password.
17+
- Removed parameter encryptedPassword2 from CompareDocument method. Please use FileReference password instead.
718

819

920
## [23.11.0] - Aspose Words Cloud for Dart 23.11 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: 23.12.0
30+
aspose_words_cloud: 24.1.0
3131
```
3232
3333
## Getting Started

lib/aspose_words_cloud.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="aspose_words_cloud.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -174,7 +174,6 @@ export 'src/models/metafile_rendering_options_data.dart';
174174
export 'src/models/mhtml_save_options_data.dart';
175175
export 'src/models/model_base.dart';
176176
export 'src/models/modification_operation_result.dart';
177-
export 'src/models/new_document_position.dart';
178177
export 'src/models/node_link.dart';
179178
export 'src/models/odt_save_options_data.dart';
180179
export 'src/models/office_math_link.dart';
@@ -207,6 +206,10 @@ export 'src/models/pdf_encryption_details_data.dart';
207206
export 'src/models/pdf_permissions.dart';
208207
export 'src/models/pdf_save_options_data.dart';
209208
export 'src/models/png_save_options_data.dart';
209+
export 'src/models/position_after_node.dart';
210+
export 'src/models/position_before_node.dart';
211+
export 'src/models/position_inside_node.dart';
212+
export 'src/models/position.dart';
210213
export 'src/models/preferred_width.dart';
211214
export 'src/models/protection_data_response.dart';
212215
export 'src/models/protection_data.dart';

lib/src/api_client.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api_client.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -72,8 +72,8 @@ class ApiClient {
7272
if (rsaPublicKey == null || rsaPublicKey.modulus == null || rsaPublicKey.exponent == null) {
7373
throw ApiException(400, 'Invalid public key response.');
7474
}
75-
exponentString = rsaPublicKey.modulus as String;
76-
modulusString = rsaPublicKey.exponent as String;
75+
exponentString = rsaPublicKey.exponent as String;
76+
modulusString = rsaPublicKey.modulus as String;
7777
}
7878

7979
final modulus = BigInt.parse(hex.encode(base64Decode(modulusString)), radix: 16);
@@ -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'] = '23.12';
506+
httpRequest.headers['x-aspose-client-version'] = '24.1';
507507
httpRequest.headers['Authorization'] = await _getAuthToken();
508508
httpRequest.headers.addAll(requestData.headers);
509509

lib/src/api_exception.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api_exception.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

lib/src/api_request_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api_request_data.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

lib/src/api_request_part.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api_request_part.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

lib/src/api_response_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api_response_data.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

lib/src/body_part_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="body_part_data.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

lib/src/byte_data_extensions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="byte_data_extensions.dart">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)