summary refs log tree commit diff
path: root/src/dialogs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add context menu option to show the raw messageKonstantinos Sideris2018-09-122-3/+58
| | | | fixes #437
* Small refactoring on the EditModalKonstantinos Sideris2018-09-082-67/+80
|
* Use proxy objects on lambdas instead of raw pointersKonstantinos Sideris2018-09-072-30/+32
| | | | | | | When the object is destroyed the connections will be removed automatically by Qt. fixes #433
* Make lambda that updates avatar a class methodKonstantinos Sideris2018-08-292-91/+91
|
* Add the ability to change the room avatarKonstantinos Sideris2018-08-292-8/+180
| | | | fixes #418
* Show the room id in the room settings modalKonstantinos Sideris2018-08-261-0/+19
| | | | fixes #416
* Fix crash on logoutKonstantinos Sideris2018-08-131-0/+2
|
* Install the bundled spdlogKonstantinos Sideris2018-08-121-1/+1
|
* Increase the minimum modal sizeKonstantinos Sideris2018-08-113-7/+24
|
* Simplify dialog creationKonstantinos Sideris2018-08-114-12/+16
|
* Allow user to configure join rules for a roomKonstantinos Sideris2018-08-092-41/+188
|
* Consider the scale ratio when scaling down imagesKonstantinos Sideris2018-08-012-2/+2
| | | | fixes #393
* Minor modal adjustmentsKonstantinos Sideris2018-07-222-8/+3
|
* Remove pixel values from modals, use pointSize insteadKonstantinos Sideris2018-07-2210-81/+118
|
* Add option to ignore key requests altogetherKonstantinos Sideris2018-07-222-2/+28
|
* Refactor the room settings menu to look like the user profileKonstantinos Sideris2018-07-222-191/+87
|
* Reuse the profile modal & adjust its spacing relative to the font sizeKonstantinos Sideris2018-07-212-18/+51
|
* Show device list in user profile & add option to create 1-1 chatKonstantinos Sideris2018-07-202-18/+148
|
* Create user profile modalKonstantinos Sideris2018-07-202-0/+206
|
* Move all files under src/Konstantinos Sideris2018-07-1722-55/+622
|
* 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
* Remove the v2 namespace from the http clientKonstantinos Sideris2018-07-152-5/+5
|
* Update CI instructionsKonstantinos Sideris2018-06-171-3/+3
|
* Rename the log namespace to avoid symbol clash with the math functionKonstantinos Sideris2018-06-142-11/+13
| | | | - Patch the olm repo with a CMakeLists.txt file
* Add menu option to enable encryption in a private roomKonstantinos Sideris2018-06-121-5/+95
|
* Migrate to mtxclient for the http callsKonstantinos Sideris2018-06-092-48/+47
|
* Retrieve the current room state from cache when the edit modal opensKonstantinos Sideris2018-05-181-8/+14
|
* Fix crash on unfinished animation & center the edit modalKonstantinos Sideris2018-05-181-0/+8
|
* Hide the edit menu when the user doesn't have enough powerKonstantinos Sideris2018-05-161-19/+41
|
* Add menu to modify the name & topic of the roomKonstantinos Sideris2018-05-161-40/+199
| | | | fixes #235
* Add read support for room access options (#324)twahm2018-05-131-3/+56
| | | | - Join rules - Guest access
* Use the correct avatar size for HiDPI displaysKonstantinos Sideris2018-05-111-0/+16
|
* Don't use shared pointers for cacheKonstantinos Sideris2018-05-082-8/+6
|
* Fetch user avatars while browsing the member listKonstantinos Sideris2018-05-041-0/+7
|
* Add member listKonstantinos Sideris2018-05-012-8/+155
|
* Add prototype room settings menuKonstantinos Sideris2018-04-301-0/+147
|
* Cache refactoringKonstantinos Sideris2018-04-211-7/+15
|
* Show avatars in the completion popupKonstantinos Sideris2018-03-251-1/+2
|
* Fix CI buildsKonstantinos Sideris2018-03-131-1/+1
|
* Implement user registration with reCAPTCHAKonstantinos Sideris2018-03-121-0/+75
| | | | fixes #264
* Add some missing referencesKonstantinos Sideris2018-02-281-1/+1
|
* Be explicit about the captured parameters in lambdasKonstantinos Sideris2018-02-207-15/+15
|
* 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.
* Move scaleImage() in UtilsKonstantinos Sideris2018-02-191-28/+2
|
* Minor adjustmentsKonstantinos Sideris2018-02-191-1/+1
|
* Support audio, video, generic file for pasting (#220)christarazi2018-02-182-142/+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
* Automatically focus on input when opening a dialogKonstantinos Sideris2018-01-163-0/+24
|
* Fix emoji as avatars issue for the receiptsKonstantinos Sideris2018-01-161-1/+2
|
* Change cache format to not allow duplicate receiptsKonstantinos Sideris2018-01-141-1/+1
| | | | Convert list of receipts to map<userId, timestamp>
* Add support for pasting images into a room (#180)christarazi2018-01-101-0/+142
| | | fixes #132
* Remove an extra colon from the receipt timeKonstantinos Sideris2018-01-041-1/+1
| | | | [ci skip]
* Initial support for read receiptsKonstantinos Sideris2018-01-031-0/+124
|
* Fix font size inconsistenciesKonstantinos Sideris2017-12-211-6/+8
|
* Add dialog to create roomsKonstantinos Sideris2017-12-111-0/+152
| | | | fixes #25
* Add menu to invite usersKonstantinos Sideris2017-12-101-0/+149
|
* Add gui option for joining rooms (#25)Konstantinos Sideris2017-12-101-8/+18
|
* Group emoji and dialogs with namespacesKonstantinos Sideris2017-11-304-13/+21
|
* Create directories for related filesKonstantinos Sideris2017-11-304-0/+304