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: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
- Implemented DeleteOfficeMathObjects operation to delete all office math objects from document.
5
5
- Parameter ProtectionRequest was removed from the UnprotectDocument operation. Now removing protection from a document does not require a password.
6
6
- 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.
7
+
- Added fields Password and EncryptedPassword to FileReference for documents encrypted by password.
8
+
- Removed parameter encryptedPassword2 from CompareDocument method. Please use FileReference password instead.
7
9
8
10
9
11
## [23.11.0] - Aspose Words Cloud for Dart 23.11 Release Notes
Copy file name to clipboardExpand all lines: lib/src/models/document_entry.dart
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,9 @@ class DocumentEntry extends BaseEntry {
34
34
/// Gets or sets document password encrypted on API public key. The default value is null (the document has no password).
35
35
String? _encryptedPassword;
36
36
37
+
@Deprecated("This field is deprecated and used only for backward compatibility. Please use 'Password' or 'EncryptedPassword' from 'FileReference' instead.")
@Deprecated("This field is deprecated and used only for backward compatibility. Please use 'Password' or 'EncryptedPassword' from 'FileReference' instead.")
0 commit comments