summary refs log tree commit diff
path: root/src/dialogs/PreviewUploadOverlay.cc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move all files under src/Konstantinos Sideris2018-07-171-177/+0
|
* Properly reset the autocomplete anchor when the popup closesKonstantinos Sideris2018-07-151-1/+1
| | | | fixes #305
* Use MainWindow instead of QApplication::activeWindow to reference the main ↵Konstantinos Sideris2018-07-151-3/+11
| | | | | | | | window The latter will not always return a valid pointer. fixes #363
* Update CI instructionsKonstantinos Sideris2018-06-171-3/+3
|
* Rename the log namespace to avoid symbol clash with the math functionKonstantinos Sideris2018-06-141-4/+5
| | | | - Patch the olm repo with a CMakeLists.txt file
* Be explicit about the captured parameters in lambdasKonstantinos Sideris2018-02-201-1/+1
|
* Scale down the preview image to fit in the application windowKonstantinos Sideris2018-02-191-11/+9
| | | | | On macOS the modal has some extra space around the main content that might make it unusable with a big enough image.
* Minor adjustmentsKonstantinos Sideris2018-02-191-1/+1
|
* Support audio, video, generic file for pasting (#220)christarazi2018-02-181-0/+170
* Refactor widget items to use same interface * Support audio, video, generic file for pasting * Add utils function for human readable file sizes * Set correct MIME type for media messages This change also determines the size of the upload once from the ContentLengthHeader, rather than seeking the QIODevice and asking for its size. This prevents any future trouble in case the QIODevice is sequential (cannot be seeked). The MIME type is also determined at upload once, rather than using the QIODevice and the underlying data inside. * Allow for file urls to be used as fall-back This fixes an issue on macOS which uses `text/uri-list` for copying files to the clipboard. fixes #228