mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-13 18:12:20 -06:00
@@ -0,0 +1 @@
|
|||||||
|
- Beheben eines Fehlers durch welchen Dokumente nicht mehr bearbeitet werden konnten
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
- Fixed a bug which caused documents not being editable anymore
|
||||||
@@ -63,6 +63,7 @@ class ChangelogDialog extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const _versionNumbers = {
|
const _versionNumbers = {
|
||||||
|
"4013": "3.1.6",
|
||||||
"4003": "3.1.5",
|
"4003": "3.1.5",
|
||||||
"58": "3.1.4",
|
"58": "3.1.4",
|
||||||
"57": "3.1.3",
|
"57": "3.1.3",
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ class DocumentModel extends Equatable {
|
|||||||
|
|
||||||
// Only present if full_perms=true
|
// Only present if full_perms=true
|
||||||
final Permissions? permissions;
|
final Permissions? permissions;
|
||||||
final Iterable<CustomFieldModel>? customFields;
|
final Iterable<CustomFieldModel> customFields;
|
||||||
|
|
||||||
const DocumentModel({
|
const DocumentModel({
|
||||||
required this.id,
|
required this.id,
|
||||||
@@ -71,7 +71,7 @@ class DocumentModel extends Equatable {
|
|||||||
this.owner,
|
this.owner,
|
||||||
this.userCanChange,
|
this.userCanChange,
|
||||||
this.permissions,
|
this.permissions,
|
||||||
this.customFields,
|
this.customFields = const [],
|
||||||
});
|
});
|
||||||
|
|
||||||
factory DocumentModel.fromJson(Map<String, dynamic> json) =>
|
factory DocumentModel.fromJson(Map<String, dynamic> json) =>
|
||||||
|
|||||||
@@ -14,5 +14,6 @@ class Permissions with _$Permissions {
|
|||||||
@HiveField(1) required UsersAndGroupsPermissions change,
|
@HiveField(1) required UsersAndGroupsPermissions change,
|
||||||
}) = _Permissions;
|
}) = _Permissions;
|
||||||
|
|
||||||
factory Permissions.fromJson(Map<String, dynamic> json) => _$PermissionsFromJson(json);
|
factory Permissions.fromJson(Map<String, dynamic> json) =>
|
||||||
|
_$PermissionsFromJson(json);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 3.1.5+400
|
version: 3.1.6+401
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.1.0 <4.0.0"
|
sdk: ">=3.1.0 <4.0.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user