summary refs log tree commit diff
path: root/resources/qml/device-verification (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix emoji verification dialogue being cut offBrayd2024-04-191-1/+1
|
* Fix verification with multiple devices in parallelNicolas Werner2024-01-151-0/+2
| | | | Fixes #1125
* Enable even more qml linter warningsNicolas Werner2023-10-263-3/+0
|
* More qml cleanupsNicolas Werner2023-10-261-4/+4
|
* Fix palette access and QMediaPlayer errorsNicolas Werner2023-06-087-16/+15
|
* Add width to device verification window0xDEADCADE2023-03-211-0/+1
| | | Fixes the device verification window being 0 or 1 pixels wide on some tiling window managers.
* Get rid of year in license headersNicolas Werner2023-02-218-24/+8
| | | | | | See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
* A whole new year full of excitement and possibilities!Nicolas Werner2023-01-028-0/+8
|
* Various grammar fixes (mostly removing commas)Loren Burkholder2022-09-301-2/+2
|
* Warn about emojis looking different in different clientsNicolas Werner2022-07-031-0/+11
| | | | fixes #919
* Fix emoji verification clipped on swayNicolas Werner2022-07-037-593/+560
| | | | fixes #917
* Fix focus and qml parenting with qml rootNicolas Werner2022-01-261-1/+0
|
* Fix device verification colorsNicolas Werner2022-01-128-67/+46
|
* Update year in copyright notice to shut up lint jobNicolas Werner2022-01-019-0/+9
|
* Prompt user when there are unverified devicesNicolas Werner2021-11-011-1/+4
|
* move device verification management to its own fileNicolas Werner2021-10-171-1/+1
|
* Add missing qsTrNicolas Werner2021-09-201-1/+1
|
* Fix a few verification typosNicolas Werner2021-09-201-1/+1
|
* Add Qt.WindowTitleHint to qml dialogsJoseph Donofry2021-08-191-1/+1
|
* Fix window placement on wayland and add close buttonsNicolas Werner2021-08-041-4/+3
| | | | | | We explicitly set a parent. We can't assign to ApplicationWindow.transientParent though, only to Window.transientParent, so we just call setTransientParent in C++.
* Merge remote-tracking branch 'origin/master' into nheko_loading_spinnerJoseph Donofry2021-07-081-0/+1
|\
| * Render community itemsNicolas Werner2021-06-111-0/+1
| |
* | Add nheko logo spinner to relevant places in UIJoseph Donofry2021-06-092-3/+6
|/
* Fix device list not showing up and UserProfile blocking the windowNicolas Werner2021-05-221-1/+1
|
* Make palette global in QmlNicolas Werner2021-05-138-14/+14
|
* Set Dialog flag on DialogsNicolas Werner2021-04-151-0/+3
| | | | Relates to #538
* Fix conflict between qmlformat and license checkNicolas Werner2021-03-079-0/+9
|
* Show mxid on hovering usernameNicolas Werner2021-03-079-9/+0
| | | | fixes #507
* Update license headersNicolas Werner2021-03-059-0/+36
|
* Fix typotrilene2021-01-181-1/+1
|
* Update translationsNicolas Werner2021-01-151-1/+1
|
* Use minimum required versions for qml importsNicolas Werner2021-01-129-9/+9
|
* Revert "Update QtQuick versions to match Qt 5.10"Nicolas Werner2021-01-129-17/+17
| | | | This reverts commit 74e32dd96b8ed04d46802226551e72b68ab17e48.
* Make it easier to understand, what button to click for verification from profileNicolas Werner2021-01-121-3/+3
|
* Make device verification request dialogs easier to understand.Nicolas Werner2021-01-121-2/+18
|
* Update QtQuick versions to match Qt 5.10Joseph Donofry2021-01-119-17/+17
|
* Wording: Verification request isn't a request anymore once acceptedMayeul Cantan2020-10-311-2/+2
| | | | Replace it with "verification process".
* Lint qml with qml-formatNicolas Werner2020-10-089-465/+841
|
* Calculate verification status from cross-signing sigs and update dynamicallyNicolas Werner2020-10-081-2/+2
|
* Fix in room verificationNicolas Werner2020-10-061-0/+2
|
* Show different verification errorsNicolas Werner2020-10-053-16/+17
|
* Make steps in verification flow explicitNicolas Werner2020-10-0510-168/+91
|
* Clean up verification pages a bitNicolas Werner2020-10-029-122/+17
|
* Fix verification start to start with requestNicolas Werner2020-10-022-2/+1
|
* Split qml part of Device VerificationCH Chethan Reddy2020-09-1411-588/+635
|
* Making sure Verification Objects are deleted properlyChethan2k12020-09-101-14/+14
|
* Fix wrong tran_id issueChethan2k12020-09-101-9/+10
|
* Small FixesCH Chethan Reddy2020-08-291-1/+0
|
* [WIP] Room-Verification MessagesCH Chethan Reddy2020-08-091-1/+3
|
* Add Room Verification MessagesCH Chethan Reddy2020-07-301-1/+6
|
* Adding icons to UserProfileCH Chethan Reddy2020-07-301-0/+4
|
* Error Handling and some fixesCH Chethan Reddy2020-07-301-42/+10
|
* Add some Userprofile buttonsCH Chethan Reddy2020-07-301-3/+12
|
* Fix presence indicatorNicolas Werner2020-07-301-8/+1
|
* Some more changesCH Chethan Reddy2020-07-301-46/+163
| | | | | | | | | | | - remove unnecessary field sender in userprofile.qml - cover user facing string with qsTr to get picked by translations - add spacing and fix theming issue - increase and add color to username - change back to QVector from QLinkedList cause I have mistaken better time complexity to give better benchmark red
* Some ImprovementsCH Chethan Reddy2020-07-301-11/+15
| | | | | | | - DeviceVerificationList change to LinkedList to improve time complexity while deleting - Downgrade the flow to not use key.verification.done and key.verification.ready
* Add some more slots and macCH Chethan Reddy2020-07-301-2/+2
|
* Shared secret with decimal and emoji works!CH Chethan Reddy2020-07-301-13/+13
|
* Add DeviceVerificationList to keep track of all flows and Popup onCH Chethan Reddy2020-07-301-9/+51
| | | | recieving start or request
* Handle Device Verification related to_device messagesChethan2k12020-07-301-1/+1
|
* Add SAS Method choice and Add send_to_device API callChethan2k12020-07-301-0/+16
|
* Tweak UI for device verification and Add more slotsChethan2k12020-07-301-2/+39
|
* Adding DeviceList for userprofileChethan2k12020-07-301-8/+0
|
* Add DeviceVerificationFlow dummy and verification test buttonNicolas Werner2020-07-301-0/+8
|
* Use label in device verification dialogs (for proper theming)Nicolas Werner2020-07-302-16/+16
|
* Make emojis a bit smallerNicolas Werner2020-07-302-3/+28
|
* Set proper emoji font for device verificationNicolas Werner2020-07-301-0/+8
|
* Add DeviceVerificationFlow dummy and verification test buttonNicolas Werner2020-07-302-33/+57
|
* First design iteration of device verification dialogsNicolas Werner2020-07-303-0/+471