Show total attachment size in the send qml page
Show total attachment size in the send qml page. File model refactoring.
Issue #132 (closed)
Close #132 (closed)
Edited by Martin Straka
Merge request reports
Activity
Filter activity
42 42 property int msgType 43 43 property string action: "new" 44 44 45 /* 46 * These properties are constants and specifies some attachment size limits. 47 * Do not change these! See ISDS documentation about more message limit info. 48 */ 49 property int max_ATTACHMENT_FILES: 900 50 property int max_ATTACHMENT_SIZE_BYTES: 20000000 // 20MB changed this line in version 3 of the diff
assigned to @kslany
added 6 commits
- 61c09742 - Modify _dmFileSize column in files db to hold real file sizes.
- c5e61663 - File model now holds binary data and their respective sizes.
- b3c24925 - Using SQLiteDb::vacuum() in file db.
- 2b4e7f55 - Added FileListModel::dataSizeSum().
- f3d4aa54 - Removed redundant code.
- 4c41aee8 - Merge branch 'real-file-size-in-db' into 'attachment-size'
Toggle commit listadded 1 commit
- b5241ed2 - Removed total attachment size computing from send message method
added 1 commit
- 4ae34b4d - Removed forgotten parameters when calling ttachmentModel.setFromDb() from QML.