summary refs log tree commit diff
path: root/src/TrayIcon.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-16Translated using Weblate (French)Weblate1-90/+90
Currently translated at 100.0% (627 of 627 strings) Co-authored-by: Eldred HABERT <stuff@eldred.fr> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-12-16Translated using Weblate (German)Weblate1-6/+6
Currently translated at 100.0% (627 of 627 strings) Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/de/ Translation: Nheko/nheko
2021-12-16Translated using Weblate (Dutch)Weblate1-19/+19
Currently translated at 100.0% (627 of 627 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-12-16Update translationsNicolas Werner23-1281/+3122
2021-12-16Fix a small alignment issue of text in notification bubblesNicolas Werner1-4/+4
2021-12-15Fix a few thingsLoren Burkholder2-16/+4
2021-12-15Make notification count bubbles expand some moreLoren Burkholder1-11/+30
2021-12-15Strip space chars from recovery passphraseNicolas Werner1-1/+7
2021-12-15Update to SingleApplication 3.3.2 properNicolas Werner31-62/+112
2021-12-14Use icns on macOSJoseph Donofry1-1/+2
2021-12-13make lintLoren Burkholder1-1/+4
2021-12-13Don't get too large of cornersLoren Burkholder1-1/+1
2021-12-13Use better translation methodLoren Burkholder1-1/+1
2021-12-13Make opening room members from rooms settings dialog workLoren Burkholder2-1/+2
2021-12-13Make it obvious that this is a notification and not the actual messageLoren Burkholder1-27/+53
2021-12-13Only show room pack button, when you can actually create oneNicolas Werner4-3/+7
2021-12-13Multiply source size by scale factorNicolas Werner7-16/+20
Might be unnecessary, but docs are unclear on that.
2021-12-13Fix turnserver check not being started when restoring from cacheNicolas Werner1-0/+1
2021-12-13Misc pack editor improvementsNicolas Werner3-5/+8
2021-12-13Show some avatar for image packsNicolas Werner3-1/+68
2021-12-13Add recently used reactionsNicolas Werner6-1/+95
fixes #435
2021-12-12Vertically align message inputNicolas Werner1-1/+2
fixes #351
2021-12-11Allow clicking links in repliesNicolas Werner1-1/+8
fixes #529
2021-12-11Properly set position of resize handler after letting it goNicolas Werner2-4/+7
fixes #817 fixes sidebar not staying small after restart
2021-12-11Fix broken top bar clicks without pinsNicolas Werner1-7/+7
2021-12-11Change width of pinned message boxNicolas Werner1-1/+1
2021-12-11Bump mtxclient dependencyNicolas Werner2-2/+2
2021-12-11Fix a few shadowing warningsNicolas Werner3-11/+11
fixes #824
2021-12-11Support pinned messagesNicolas Werner11-14/+298
fixes #519
2021-12-08Fix escaped html showing up in playable media message labelsNicolas Werner1-1/+1
fixes #840
2021-12-08Fix blurry thumbnails AGAINNicolas Werner1-1/+5
2021-12-07Translated using Weblate (Indonesian)Weblate1-15/+16
Currently translated at 100.0% (612 of 612 strings) Co-authored-by: Linerly <linerly@protonmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/id/ Translation: Nheko/nheko
2021-12-08Fix lintNicolas Werner1-6/+3
2021-12-08Limit max memory usage of imagesNicolas Werner1-1/+4
2021-12-08Fix display of images, that can't be thumbnailedNicolas Werner1-3/+3
2021-12-08Get rid of threadpool for imagesNicolas Werner3-21/+48
2021-12-06Allow swiping between views in single page modeNicolas Werner2-7/+37
Allows access to spaces on mobile for example
2021-12-06Fix a few clang tidy warningsNicolas Werner3-12/+6
2021-12-05Added window role to image overlayThulinma1-0/+1
2021-12-05Translated using Weblate (Dutch)Weblate1-10/+11
Currently translated at 100.0% (612 of 612 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-12-04Fix sanitizer warning about signed shiftsNicolas Werner1-1/+2
2021-12-02Translated using Weblate (Esperanto)Weblate1-9/+10
Currently translated at 99.8% (611 of 612 strings) Co-authored-by: Tirifto <tirifto@posteo.cz> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/eo/ Translation: Nheko/nheko
2021-12-02Translated using Weblate (French)Weblate1-82/+83
Currently translated at 100.0% (612 of 612 strings) Co-authored-by: Eldred HABERT <stuff@eldred.fr> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-12-03InputBar: run clang-formatMarcus Hoffmann2-27/+29
2021-12-03InputBar: Mark some functions as [[nodiscard]]Marcus Hoffmann1-3/+3
This warns when you the return value of those functions isn't used. Suggested-by: Clang-Tidy: Function X should be marked [[nodiscard]]
2021-12-03InputBar: mark constrictor as explicitMarcus Hoffmann1-1/+1
Suggested-By: Clang-Tidy: Single-argument constructors must be marked explicit to avoid unintentional implicit conversions More info: https://clang.llvm.org/extra/clang-tidy/checks/google-explicit-constructor.html
2021-12-03InputBar: use X.empty() instead of !X.size()Marcus Hoffmann1-2/+2
Suggested-by: Clang-Tidy: The 'empty' method should be used to check for emptiness instead of 'size'
2021-12-03InputBar: use auto typeMarcus Hoffmann1-1/+1
Suggested-by: Clang-Tidy: Use auto when initializing with new to avoid duplicating the type name
2021-12-03InputBar: use multi-arg string replacementMarcus Hoffmann1-2/+2
This could actually change the behaviour here (could, because I don't know if we can hit this special case) but this should hopefully the correct way of doing this. There's some detailed explanation of the difference here: https://doc.qt.io/qt-5/qstring.html#arg-14 > This is the same as str.arg(a1).arg(a2), except that the strings > a1 and a2 are replaced in one pass. This can make a difference if > a1 contains e.g. %1: ``` QString str; str = "%1 %2"; str.arg("%1f", "Hello"); // returns "%1f Hello" str.arg("%1f").arg("Hello"); // returns "Hellof %2" ``` Suggested-by: Clazy: Use multi-arg instead
2021-12-03InputBar: use character argument instead of stringMarcus Hoffmann1-1/+1
Suggested-by: Clang-Tidy: 'find' called with a string literal consisting of a single character; consider using the more effective overload accepting a character
2021-12-03InputBar: apply clang-tidy const reference suggestionsMarcus Hoffmann2-17/+17
All suggested by: Clang-Tidy: The parameter 'X' is copied for each invocation but only used as a const reference; consider making it a const reference
2021-12-03InputBar: use QFileInfo::exists()Marcus Hoffmann1-1/+1
Suggested by: Clazy: Use the static QFileInfo::exists() instead. It's documented to be faster.
2021-12-03InputBar: remove unused importsMarcus Hoffmann1-4/+0
2021-12-03add clion/idea dir to gitignoreMarcus Hoffmann1-0/+3
2021-12-02Navigate to subspaces by clicking on themNicolas Werner1-0/+4
2021-12-01Translated using Weblate (Finnish)Weblate1-8/+8
Currently translated at 92.9% (569 of 612 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fi/ Translation: Nheko/nheko
2021-12-01Translated using Weblate (Estonian)Weblate1-11/+12
Currently translated at 100.0% (612 of 612 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/et/ Translation: Nheko/nheko
2021-12-01Remember all the collapsed treesNicolas Werner4-2/+76
2021-12-01Don't waste space for non existing subspacesNicolas Werner3-1/+12
2021-12-01Don't pad, just fillNicolas Werner1-1/+2
2021-12-01Leaves can't collapseNicolas Werner3-4/+3
2021-12-01Hide me underneath the space treeNicolas Werner8-31/+344
2021-11-29Fix crash on redactions without becauseNicolas Werner1-3/+5
2021-11-29Translated using Weblate (English)Weblate1-10/+10
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Joseph Donofry <rubberduckie3554@gmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/en/ Translation: Nheko/nheko
2021-11-29Cleanup error logging a bitNicolas Werner1-30/+11
2021-11-29Delete rooms even if we fail to leaveNicolas Werner1-0/+10
2021-11-29Remove double padding on redactionsNicolas Werner1-3/+6
2021-11-29Fix source translationNicolas Werner1-6/+7
2021-11-29Change QML UI for redactionsJoe Donofry29-868/+1644
2021-11-27If the locale is set to C, force english localeNicolas Werner1-1/+2
This fixes date formatting as well as count based translations.
2021-11-27Use old flatpak runtime to prevent crashes on armNicolas Werner2-5/+7
2021-11-25Translated using Weblate (Italian)Weblate1-1/+1
Currently translated at 43.0% (261 of 606 strings) Co-authored-by: Elia Tomasi <elia.tomasi@pm.me> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/it/ Translation: Nheko/nheko
2021-11-24Properly fix #825Nicolas Werner1-1/+3
We should read the message before sending the ack!
2021-11-24fix lintNicolas Werner1-1/+0
2021-11-24Fix crash in SingleApplication when other end exits immediatelyNicolas Werner1-2/+2
In those cases the emit might cause the server to remove the connection and we are working with a dangling pointer. We can't call putChar on that, so acknowledge the message immediately and then emit the message.
2021-11-24Initialize client lazilyNicolas Werner1-4/+2
This prevents a use after free in the coeurl logging, if we exit immediately.
2021-11-24Fix loading on Gnome when in flatpakNicolas Werner2-5/+7
See https://gitlab.gnome.org/GNOME/libsecret/-/issues/49 fixes #816
2021-11-24Fix colors of sidebar in repliesNicolas Werner1-1/+1
2021-11-24Use a more random hash to generate user colorsNicolas Werner1-7/+7
Fixes an issue where most uses just had their color determined by their username length and distributes the colors a bit more evenly.
2021-11-22Fix one more wrong background colorNicolas Werner1-1/+1
2021-11-22Make clang-format <13 and clang-format >=13 behave the sameNicolas Werner22-114/+116
I think old clang-format is just buggy in those cases, so we should reenable those blocks, once everyone has 13 or up.
2021-11-21Try to tame Windows headersNicolas Werner1-1/+1
See also: https://stackoverflow.com/questions/1394910/how-to-tame-the-windows-headers-useful-defines
2021-11-21Return nullopt for state events in rooms we are not inNicolas Werner1-27/+27
2021-11-21Only mark as direct, if invite was directNicolas Werner3-5/+20
2021-11-21Mark rooms as direct chatsNicolas Werner5-2/+79
Either by accepting an invite or manually using /converttodm and revert with /converttoroom.
2021-11-21Pretty error printingNicolas Werner4-13/+121
2021-11-20Add a filter for direct chatsNicolas Werner10-40/+192
fixes #317
2021-11-20Translated using Weblate (French)Weblate1-73/+73
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Mayeul Cantan <mayeul.cantan@gmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-11-20Pass correct background color to username separatorNicolas Werner1-1/+1
2021-11-19Make user colors a bit more vibrantNicolas Werner1-5/+3
2021-11-19Update macOS icon package to macOS-y style. Thanks quinnJoseph Donofry2-0/+2
2021-11-19Preliminary gstreamer 1.20 compatibilityNicolas Werner1-1/+2
The transceiver was made private in https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2241 The direction property was added here: https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/commit/28b0be4036ac59d6e6068586ab7bc55e8ac51166
2021-11-19Fix jdenticon plugin not loadingNicolas Werner1-2/+2
2021-11-19Release 0.9.0Nicolas Werner4-13/+14
2021-11-19Small changelog fixesNicolas Werner1-2/+2
2021-11-19Add some build notes and update the E2EE noteNicolas Werner1-5/+3
2021-11-19Fix mouse cursor on top barNicolas Werner1-0/+5
2021-11-18Jdenticon updateJoseph Donofry2-3/+3
2021-11-18Make VOIP and screenshare explicit optionsNicolas Werner4-43/+18
2021-11-18Fix colors and alignment in dialogsNicolas Werner5-27/+15
2021-11-18Fix video call filename and qtjdenticon for windowsJoseph Donofry2-2/+2
2021-11-18Try to fix lmdbxx downloadNicolas Werner1-2/+3
2021-11-18Try to fix lmdbxx downloadNicolas Werner2-4/+4
2021-11-18Fix hunter messing with pkg-configNicolas Werner1-8/+56
2021-11-18Update bundled depsNicolas Werner3-37/+44
2021-11-18Fix qml warnings and missing iconsNicolas Werner2-4/+4
2021-11-18Translated using Weblate (Dutch)Weblate1-3/+3
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-11-18Fix linebreaks in READMENicolas Werner1-2/+2
2021-11-18Fix resolution of failed imageNicolas Werner1-1/+1
2021-11-18Mention fluent icons in readmeNicolas Werner1-0/+1
2021-11-18Fix video call filename and qtjdenticon for windowsJoseph Donofry2-2/+2
2021-11-18Try to fix lmdbxx downloadNicolas Werner1-2/+3
2021-11-18Try to fix lmdbxx downloadNicolas Werner2-4/+4
2021-11-18Fix hunter messing with pkg-configNicolas Werner1-8/+56
2021-11-18Update bundled depsNicolas Werner3-37/+44
2021-11-17Fix qml warnings and missing iconsNicolas Werner2-4/+4
2021-11-16Translated using Weblate (Dutch)Weblate1-3/+3
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-11-16Quality-of-life improvements to InputDialogLoren Burkholder1-0/+9
2021-11-16Don't add arbitrary paddingLoren Burkholder1-2/+1
This breaks the vertical-centeredness on the close button.
2021-11-16Simplify code for padding delegatesLoren Burkholder2-4/+8
2021-11-17Fix linebreaks in READMENicolas Werner1-2/+2
2021-11-17Fix resolution of failed imageNicolas Werner1-1/+1
2021-11-16Remove duplicate propertyLoren Burkholder1-4/+0
2021-11-16Don't add a user twiceLoren Burkholder1-0/+4
2021-11-16Allow removing users from the invite dialogLoren Burkholder3-3/+29
2021-11-16Nicer paddingLoren Burkholder3-6/+9
2021-11-16Add pointing hand cursor shapeLoren Burkholder1-0/+5
2021-11-16Port invite dialog to use ItemDelegateLoren Burkholder1-23/+39
2021-11-16Add highlight on hoverLoren Burkholder2-2/+8
2021-11-16Switch member dialog to using ItemDelegateLoren Burkholder1-46/+63
2021-11-17Mention fluent icons in readmeNicolas Werner1-0/+1
2021-11-17Use filled shields everywhere and distinguish different states moreNicolas Werner11-26/+38
2021-11-17Switch icon theme to Fluent iconsLoren Burkholder167-209/+364
2021-11-16Translated using Weblate (Polish)Weblate1-5/+5
Currently translated at 83.4% (506 of 606 strings) Translated using Weblate (Polish) Currently translated at 83.4% (506 of 606 strings) Co-authored-by: AXD <dexkingcrazy@gmail.com> Co-authored-by: luff eman <userx@disroot.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/pl/ Translation: Nheko/nheko
2021-11-16Translated using Weblate (Portuguese (Portugal))Weblate1-103/+105
Currently translated at 95.8% (581 of 606 strings) Co-authored-by: Tnpod <tmpod@pm.me> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/pt_PT/ Translation: Nheko/nheko
2021-11-16Translated using Weblate (Esperanto)Weblate1-3/+3
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Tirifto <tirifto@posteo.cz> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/eo/ Translation: Nheko/nheko
2021-11-16Fix rpath not being set while uninstalledNicolas Werner1-1/+1
2021-11-15Try to fix notarization issuesJoseph Donofry1-4/+15
2021-11-15Try to add jdenticon plugin to Windows buildNicolas Werner1-0/+7
2021-11-15Support exif rotation on received videosNicolas Werner3-16/+40
fixes #674
2021-11-15Try to add jdenticon plugin to macos buildNicolas Werner1-0/+1
2021-11-15Add qt-jdention to flatpakNicolas Werner1-0/+10
2021-11-15Cleanup qt-jdenticon loadingNicolas Werner1-13/+9
2021-11-14Translated using Weblate (Indonesian)Weblate1-3/+3
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Linerly <linerly@protonmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/id/ Translation: Nheko/nheko
2021-11-14Translated using Weblate (Portuguese (Portugal))Weblate1-74/+79
Currently translated at 79.2% (480 of 606 strings) Co-authored-by: Tnpod <tmpod@pm.me> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/pt_PT/ Translation: Nheko/nheko
2021-11-14Update changelogNicolas Werner1-0/+4
2021-11-14Fix being dropped into an empty room after a joinNicolas Werner1-8/+0
2021-11-14Reenable still image viewer for WebP until we qmlify the image viewerNicolas Werner1-9/+10
2021-11-14Disallow displaynames with only spaces or control charactersNicolas Werner1-5/+12
2021-11-13Prevent edits from removing quotes at the beginning of a messageNicolas Werner1-5/+8
2021-11-13Fix some colors switched to yellow by accidentNicolas Werner2-2/+4
2021-11-12Translated using Weblate (Esperanto)Weblate1-14/+14
Currently translated at 99.5% (603 of 606 strings) Co-authored-by: Tirifto <tirifto@posteo.cz> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/eo/ Translation: Nheko/nheko
2021-11-11Fix secrets status not shown after startupNicolas Werner1-0/+4
2021-11-11Format qmlNicolas Werner5-100/+103
2021-11-11Make yellow darkerNicolas Werner2-4/+4
Fixes readability issues in the userprofile. fixes #440
2021-11-11Make pill text color match the separator colorNicolas Werner1-1/+1
2021-11-11Fix SSO login showing password promptNicolas Werner1-0/+2
2021-11-11Make it possible to unhide the controls on mobileNicolas Werner2-19/+21
2021-11-11Cleanup positioning of player elementsNicolas Werner5-261/+174
2021-11-11More refactoring and layout updatesJoseph Donofry6-75/+191
2021-11-11Swap encryption and edit indicatorNicolas Werner1-9/+9
2021-11-11Improve the layout and behaviour of topbar slightlyNicolas Werner3-16/+39
2021-11-11Fix no replies being rendered for edits sent from Element in encrypted roomsNicolas Werner1-5/+4
2021-11-10Translated using Weblate (Estonian)Weblate1-3/+3
Currently translated at 100.0% (606 of 606 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/et/ Translation: Nheko/nheko
2021-11-10Translated using Weblate (Esperanto)Weblate1-31/+33
Currently translated at 97.1% (589 of 606 strings) Co-authored-by: Tirifto <tirifto@posteo.cz> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/eo/ Translation: Nheko/nheko
2021-11-10Translated using Weblate (Finnish)Weblate1-17/+17
Currently translated at 93.7% (568 of 606 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fi/ Translation: Nheko/nheko
2021-11-09More player fixesJoseph Donofry2-123/+25
2021-11-09Fix audio player and use same controls for video and audioJoseph Donofry1-80/+77
2021-11-09Move rest of controls to separate fileJoseph Donofry5-237/+311
2021-11-09Initial Refactoring into separate controlsJoseph Donofry4-88/+115
2021-11-09Fix parsing some exotic image packsNicolas Werner3-4/+9
2021-11-08Incorporate nico's suggestions, fix volume sliderJoseph Donofry1-272/+272
2021-11-08Fix clicking on avatarLoren Burkholder1-0/+1
2021-11-09Explicitly namespace platform moduleNicolas Werner1-3/+3
2021-11-09Add preliminary changelogNicolas Werner1-0/+178
2021-11-08Minor fixes for undefined qml behaviorJoseph Donofry1-7/+4
2021-11-08Remove appimageNicolas Werner3-222/+0
2021-11-08Update translationsNicolas Werner23-507/+760
2021-11-08Fix redaction of edited messagesNicolas Werner4-5/+38
2021-11-08Fix bootstrap after registrationNicolas Werner2-2/+2
2021-11-08Improve fetching of device keys after loginNicolas Werner4-6/+23
2021-11-08Translated using Weblate (French)Weblate1-104/+106
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Mayeul Cantan <mayeul.cantan@gmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-11-08Translated using Weblate (Dutch)Weblate1-2/+2
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-11-08Translated using Weblate (Esperanto)Weblate1-9/+9
Currently translated at 93.0% (562 of 604 strings) Co-authored-by: Tirifto <tirifto@posteo.cz> Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/eo/ Translation: Nheko/nheko
2021-11-07Fix self verification status never updatingNicolas Werner2-1/+3
2021-11-07Don't try to load verification status before db is readyNicolas Werner1-1/+0
2021-11-07Move away from using an event loop to access secretsNicolas Werner11-208/+267
Fixes messages in room flickering and being stuck fixes #760 relates to #770 relates to #789
2021-11-06Use ItemDelegate for read receiptsLoren Burkholder1-42/+39
2021-11-06Translated using Weblate (Estonian)Weblate1-1/+1
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/et/ Translation: Nheko/nheko
2021-11-06Fix crash when clearing empty timelineNicolas Werner1-3/+5
2021-11-05Fix leave room dialogNicolas Werner1-3/+3
2021-11-05Translated using Weblate (Indonesian)Weblate1-51/+53
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Linerly <linerly@protonmail.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/id/ Translation: Nheko/nheko
2021-11-04Fix crash in debug code for matrix uri handlerNicolas Werner1-3/+4
fixes #776 fixes #590
2021-11-04Update translation filesWeblate1-5/+0
Updated by "Cleanup translation files" hook in Weblate. Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/ Translation: Nheko/nheko
2021-11-04Update translationsNicolas Werner1-2/+2
2021-11-04Update German translationNicolas Werner23-209/+216
2021-11-04Translated using Weblate (Estonian)Weblate1-51/+53
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Priit Jõerüüt <nhkwlate@joeruut.com> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/et/ Translation: Nheko/nheko
2021-11-03Fix syntax issueJoseph Donofry1-1/+1
2021-11-03PlayableMediaMessage fixes on macOSJoseph Donofry1-2/+31
2021-11-04Translate some german textsNicolas Werner1-22/+22
2021-11-04Fix translation nitsNicolas Werner2-2/+2
2021-11-03Translated using Weblate (Dutch)Weblate1-52/+54
Currently translated at 100.0% (604 of 604 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-11-03Update translationsNicolas Werner24-5595/+10059
2021-11-03Use ItemDelegate for CommunitiesListNicolas Werner1-23/+22
2021-11-03Use ItemDelegate in RoomList instead of a Rectangle with handlersNicolas Werner9-482/+1879
fixes #683 relates to #571
2021-11-03Fix unjoinable invites on mobile as well as unclickable previewsNicolas Werner4-6/+27
2021-11-03Fix copyright orderNicolas Werner1-1/+1
2021-11-03Fix registration on matrix.orgNicolas Werner9-124/+587
This was a bit of a journey: https://github.com/matrix-org/matrix-doc/pull/3471 But it should work now and we now use the UIAHandler everywhere. fixes #670
2021-11-03Fix macOS m.image notif crashJoe Donofry1-7/+34
2021-11-01Update macOS notifications to use UserNotifications frameworkJoseph Donofry4-23/+60
2021-11-02Clear @room warning after sending messageNicolas Werner1-0/+1
fixes #751
2021-11-02Fix loading spinner when switching to a fully loaded roomNicolas Werner1-1/+3
fixes #754
2021-11-02Fix hidden spaces hiding themselvesNicolas Werner1-1/+1
fixes #745
2021-11-01Fix crash on logoutNicolas Werner1-23/+25
2021-11-01Prompt user when there are unverified devicesNicolas Werner9-10/+120
2021-10-30Some people consider Nheko not an AAAAA titleNicolas Werner1-1/+0
2021-10-30Add self verification after loginNicolas Werner9-75/+288
2021-10-28Auto-focus search bar in room directoryLoren Burkholder1-0/+1
2021-10-26Translated using Weblate (Indonesian)Weblate1-5/+5
Currently translated at 100.0% (569 of 569 strings) Co-authored-by: Linerly <linerly@protonmail.com> Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/id/ Translation: Nheko/nheko
2021-10-26Update translation filesWeblate1-5/+0
Updated by "Cleanup translation files" hook in Weblate. Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/ Translation: Nheko/nheko
2021-10-20Allow changing device names, display last seen time and IPThulinma3-19/+105
2021-10-20speed up blurhash decode a bitNicolas Werner2-18/+17
2021-10-20Fix calculating hidden space childrenNicolas Werner1-1/+14
2021-10-20Translated using Weblate (Portuguese (Portugal))Weblate1-9/+15
Currently translated at 74.8% (426 of 569 strings) Co-authored-by: Tnpod <tmpod@pm.me> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/pt_PT/ Translation: Nheko/nheko
2021-10-19Translated using Weblate (Dutch)Weblate1-0/+5
Currently translated at 100.0% (569 of 569 strings) Co-authored-by: Jaron Viëtor <jaron@v8or.nl> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/nl/ Translation: Nheko/nheko
2021-10-19Translated using Weblate (Portuguese (Portugal))Weblate1-2/+3
Currently translated at 73.2% (417 of 569 strings) Co-authored-by: Tnpod <tmpod@pm.me> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/pt_PT/ Translation: Nheko/nheko
2021-10-19Translated using Weblate (French)Weblate1-10/+10
Currently translated at 100.0% (569 of 569 strings) Co-authored-by: Eldred HABERT <stuff@eldred.fr> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-10-19Fix incorrect pluralization of "rooms"Eldred Habert1-1/+1
2021-10-19Translated using Weblate (French)Weblate1-57/+57
Currently translated at 98.2% (559 of 569 strings) Co-authored-by: Eldred HABERT <stuff@eldred.fr> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/fr/ Translation: Nheko/nheko
2021-10-17lint using clang11Nicolas Werner3-16/+6
2021-10-17lintNicolas Werner5-9/+18
2021-10-17Use allow list for URI schemesNicolas Werner1-1/+11
2021-10-17WIPNicolas Werner3-19/+63
2021-10-17move device verification management to its own fileNicolas Werner9-150/+221
2021-10-17Move voip and encryption stuff into their own directoriesNicolas Werner25-30/+31
2021-10-17Add support for listing devices that do not support encryption, add support ↵Thulinma5-3/+92
for logging out devices. Ticks off another box in #23!
2021-10-15Use correct Monopoly quoteEldred Habert1-1/+1
Hi if you're reading this commit message wondering "what the fuck?"
2021-10-15Update translation filesWeblate1-5/+0
Updated by "Cleanup translation files" hook in Weblate. Co-authored-by: Weblate <noreply@weblate.org> Translate-URL: https://weblate.nheko.im/projects/nheko/nheko-master/ Translation: Nheko/nheko
2021-10-15Allow JPEG in image picker for stickers and emotes.tastytea24-35/+35
The file ending list is translated, so all the translations are updated too.
2021-10-11Use the same leave room dialog everywhereLoren Burkholder12-116/+47
This ports the leave room dialog to QML, everywhere. There are now no differences between the various leave dialogs.
2021-10-11Remove unimplemented function declarationLoren Burkholder1-1/+0
2021-10-09Use better close-on-Enter logicLoren Burkholder1-8/+4
2021-10-09Auto-focus the inputLoren Burkholder1-0/+1
2021-10-09Add handy keyboard shortcutsLoren Burkholder1-0/+15
2021-10-09QML the join room dialogLoren Burkholder10-144/+92
2021-10-09make lintLoren Burkholder1-1/+1
2021-10-09Support bootstrapping crosssigningNicolas Werner20-68/+834
Showing the bootstrap state and showing there are unverified devices is still missing.
2021-10-07Simplify device list refresh logicDeepBlueV7.X2-4/+2
2021-10-07Remove duplicated verification status calculationNicolas Werner2-48/+50
2021-10-06Added support for refreshing the device list, marking current device with a ↵Thulinma8-8/+72
checkmark instead of a lock