Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move all files under src/ | Konstantinos Sideris | 2018-07-17 | 1 | -177/+0 |
| | |||||
* | Properly reset the autocomplete anchor when the popup closes | Konstantinos Sideris | 2018-07-15 | 1 | -1/+1 |
| | | | | fixes #305 | ||||
* | Use MainWindow instead of QApplication::activeWindow to reference the main ↵ | Konstantinos Sideris | 2018-07-15 | 1 | -3/+11 |
| | | | | | | | | window The latter will not always return a valid pointer. fixes #363 | ||||
* | Update CI instructions | Konstantinos Sideris | 2018-06-17 | 1 | -3/+3 |
| | |||||
* | Rename the log namespace to avoid symbol clash with the math function | Konstantinos Sideris | 2018-06-14 | 1 | -4/+5 |
| | | | | - Patch the olm repo with a CMakeLists.txt file | ||||
* | Be explicit about the captured parameters in lambdas | Konstantinos Sideris | 2018-02-20 | 1 | -1/+1 |
| | |||||
* | Scale down the preview image to fit in the application window | Konstantinos Sideris | 2018-02-19 | 1 | -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 adjustments | Konstantinos Sideris | 2018-02-19 | 1 | -1/+1 |
| | |||||
* | Support audio, video, generic file for pasting (#220) | christarazi | 2018-02-18 | 1 | -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 |