Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of some useless code | Nicolas Werner | 2021-12-31 | 1 | -4/+0 |
| | |||||
* | Add missing license headers | Nicolas Werner | 2021-12-30 | 2 | -0/+8 |
| | |||||
* | Update presence dynamically and reduce allocations | Nicolas Werner | 2021-12-30 | 4 | -26/+104 |
| | |||||
* | Fix crash after sending image caused by the recent refactor | Nicolas Werner | 2021-12-30 | 1 | -4/+4 |
| | |||||
* | Reduce allocations and time spent creating delegates by half | Nicolas Werner | 2021-12-29 | 2 | -7/+9 |
| | |||||
* | Reduce allocations for presence states a bit | Nicolas Werner | 2021-12-29 | 1 | -3/+10 |
| | |||||
* | Pretty up code with fewer allocations | Nicolas Werner | 2021-12-29 | 1 | -2/+2 |
| | |||||
* | Reduce allocations for accessing event members | Nicolas Werner | 2021-12-29 | 3 | -20/+23 |
| | |||||
* | Remove a few casts | Nicolas Werner | 2021-12-29 | 2 | -4/+4 |
| | |||||
* | Reserve size of some containers we are filling | Nicolas Werner | 2021-12-29 | 8 | -71/+119 |
| | |||||
* | Reduce allocations using QStringLiteral | Nicolas Werner | 2021-12-29 | 10 | -185/+185 |
| | |||||
* | Fix more warnings and remove dead code | Nicolas Werner | 2021-12-28 | 6 | -24/+26 |
| | |||||
* | Some qt6 prep | Nicolas Werner | 2021-12-28 | 3 | -11/+11 |
| | |||||
* | Misc clang-tidy fixes | Nicolas Werner | 2021-12-28 | 1 | -1/+0 |
| | |||||
* | Fixup clang-tidy suggestion | Nicolas Werner | 2021-12-28 | 3 | -8/+9 |
| | |||||
* | Merge pull request #853 from MTRNord/MTRNord/clang-tidy | DeepBlueV7.X | 2021-12-28 | 2 | -84/+89 |
|\ | | | | | Apply selective clang-tidy suggestions | ||||
| * | Run linter | MTRNord | 2021-12-27 | 2 | -17/+22 |
| | | |||||
| * | Apply (selective) Clang-tidy const function and new const pointer ↵ | MTRNord | 2021-12-23 | 2 | -9/+9 |
| | | | | | | | | suggestions on TimelineModel | ||||
| * | Apply (selective) Clang-tidy move and some new detected const pointer ↵ | MTRNord | 2021-12-23 | 2 | -11/+12 |
| | | | | | | | | suggestions on TimelineModel | ||||
| * | Apply (selective) Clang-tidy and clazy suggestions on TimelineModel | MTRNord | 2021-12-23 | 2 | -55/+54 |
| | | |||||
* | | Make custom emoticons twice as high as the font. | tastytea | 2021-12-27 | 1 | -7/+10 |
| | | |||||
* | | Request inline images in the right size and anti-alias them | tastytea | 2021-12-27 | 1 | -5/+27 |
| | | | | | | | | | | | | | | | | - If an inline image has specified a height, add parameters to the image:// URI. - Add scaled to the parameters, the images would be cropped otherwise. - Extract the height from image:// URI and use it for requestSize. - Use scaledToHeight instead of scaled. | ||||
* | | Add an ugly custom emote completer using ~ | Nicolas Werner | 2021-12-27 | 1 | -0/+5 |
|/ | |||||
* | make lint | Loren Burkholder | 2021-12-13 | 1 | -1/+4 |
| | |||||
* | Make opening room members from rooms settings dialog work | Loren Burkholder | 2021-12-13 | 1 | -0/+1 |
| | |||||
* | Only show room pack button, when you can actually create one | Nicolas Werner | 2021-12-13 | 2 | -2/+3 |
| | |||||
* | Add recently used reactions | Nicolas Werner | 2021-12-13 | 1 | -0/+8 |
| | | | | fixes #435 | ||||
* | Support pinned messages | Nicolas Werner | 2021-12-11 | 2 | -1/+95 |
| | | | | fixes #519 | ||||
* | InputBar: run clang-format | Marcus Hoffmann | 2021-12-03 | 2 | -27/+29 |
| | |||||
* | InputBar: Mark some functions as [[nodiscard]] | Marcus Hoffmann | 2021-12-03 | 1 | -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]] | ||||
* | InputBar: mark constrictor as explicit | Marcus Hoffmann | 2021-12-03 | 1 | -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 | ||||
* | InputBar: use X.empty() instead of !X.size() | Marcus Hoffmann | 2021-12-03 | 1 | -2/+2 |
| | | | | | | Suggested-by: Clang-Tidy: The 'empty' method should be used to check for emptiness instead of 'size' | ||||
* | InputBar: use auto type | Marcus Hoffmann | 2021-12-03 | 1 | -1/+1 |
| | | | | | | Suggested-by: Clang-Tidy: Use auto when initializing with new to avoid duplicating the type name | ||||
* | InputBar: use multi-arg string replacement | Marcus Hoffmann | 2021-12-03 | 1 | -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 | ||||
* | InputBar: use character argument instead of string | Marcus Hoffmann | 2021-12-03 | 1 | -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 | ||||
* | InputBar: apply clang-tidy const reference suggestions | Marcus Hoffmann | 2021-12-03 | 2 | -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 | ||||
* | InputBar: use QFileInfo::exists() | Marcus Hoffmann | 2021-12-03 | 1 | -1/+1 |
| | | | | | | Suggested by: Clazy: Use the static QFileInfo::exists() instead. It's documented to be faster. | ||||
* | InputBar: remove unused imports | Marcus Hoffmann | 2021-12-03 | 1 | -4/+0 |
| | |||||
* | Remember all the collapsed trees | Nicolas Werner | 2021-12-01 | 2 | -0/+54 |
| | |||||
* | Don't waste space for non existing subspaces | Nicolas Werner | 2021-12-01 | 2 | -0/+11 |
| | |||||
* | Leaves can't collapse | Nicolas Werner | 2021-12-01 | 2 | -2/+1 |
| | |||||
* | Hide me underneath the space tree | Nicolas Werner | 2021-12-01 | 3 | -15/+295 |
| | |||||
* | Fix crash on redactions without because | Nicolas Werner | 2021-11-29 | 1 | -3/+5 |
| | |||||
* | Change QML UI for redactions | Joe Donofry | 2021-11-29 | 2 | -0/+39 |
| | |||||
* | Make clang-format <13 and clang-format >=13 behave the same | Nicolas Werner | 2021-11-22 | 2 | -23/+23 |
| | | | | | I think old clang-format is just buggy in those cases, so we should reenable those blocks, once everyone has 13 or up. | ||||
* | Only mark as direct, if invite was direct | Nicolas Werner | 2021-11-21 | 1 | -3/+12 |
| | |||||
* | Mark rooms as direct chats | Nicolas Werner | 2021-11-21 | 2 | -0/+7 |
| | | | | | Either by accepting an invite or manually using /converttodm and revert with /converttoroom. | ||||
* | Add a filter for direct chats | Nicolas Werner | 2021-11-20 | 6 | -32/+182 |
| | | | | fixes #317 | ||||
* | Fix colors and alignment in dialogs | Nicolas Werner | 2021-11-18 | 2 | -4/+5 |
| | |||||
* | Switch icon theme to Fluent icons | Loren Burkholder | 2021-11-17 | 1 | -5/+5 |
| | |||||
* | Fix being dropped into an empty room after a join | Nicolas Werner | 2021-11-14 | 1 | -8/+0 |
| | |||||
* | Fix redaction of edited messages | Nicolas Werner | 2021-11-08 | 4 | -5/+38 |
| | |||||
* | Move away from using an event loop to access secrets | Nicolas Werner | 2021-11-07 | 1 | -1/+6 |
| | | | | | | | | Fixes messages in room flickering and being stuck fixes #760 relates to #770 relates to #789 | ||||
* | Fix unjoinable invites on mobile as well as unclickable previews | Nicolas Werner | 2021-11-03 | 1 | -1/+21 |
| | |||||
* | Clear @room warning after sending message | Nicolas Werner | 2021-11-02 | 1 | -0/+1 |
| | | | | fixes #751 | ||||
* | Fix loading spinner when switching to a fully loaded room | Nicolas Werner | 2021-11-02 | 1 | -1/+3 |
| | | | | fixes #754 | ||||
* | Fix hidden spaces hiding themselves | Nicolas Werner | 2021-11-02 | 1 | -1/+1 |
| | | | | fixes #745 | ||||
* | move device verification management to its own file | Nicolas Werner | 2021-10-17 | 2 | -117/+15 |
| | |||||
* | Move voip and encryption stuff into their own directories | Nicolas Werner | 2021-10-17 | 6 | -8/+6 |
| | |||||
* | Use the same leave room dialog everywhere | Loren Burkholder | 2021-10-11 | 3 | -8/+2 |
| | | | | This ports the leave room dialog to QML, everywhere. There are now no differences between the various leave dialogs. | ||||
* | Support bootstrapping crosssigning | Nicolas Werner | 2021-10-09 | 1 | -30/+14 |
| | | | | | Showing the bootstrap state and showing there are unverified devices is still missing. | ||||
* | Support pasting image/svg+xml format straight from supporting applications | Thulinma | 2021-09-28 | 1 | -2/+13 |
| | |||||
* | Fixes for pasting images, especially under windows where the image mime type ↵ | Thulinma | 2021-09-28 | 1 | -8/+12 |
| | | | | detection doesn't work as expected | ||||
* | Change indentation to 4 spaces | Nicolas Werner | 2021-09-18 | 17 | -5424/+5267 |
| | |||||
* | Improvements for linking to events | Thulinma | 2021-09-16 | 2 | -1/+32 |
| | | | | | | - Fixes scrolling to an event not being reliable - Adds new /goto command that can open URLs, go to events, or go to message indexes. - Refactored ChatPage::handleMatrixUri() to contain the handling originally in Nheko::openLink(), and makes it return a boolean based on whether the URL was handled internally or not. | ||||
* | Workaround for broken fetchMore() with reuseItems | Nicolas Werner | 2021-09-15 | 1 | -0/+4 |
| | |||||
* | Merge pull request #721 from symphorien/hotlist | DeepBlueV7.X | 2021-09-14 | 2 | -0/+47 |
|\ | | | | | Implement a binding to go to a room with unread messages | ||||
| * | add Alt+A keybinding to switch to next room with unread messages | Guillaume Girol | 2021-09-14 | 2 | -0/+47 |
| | | |||||
* | | Streamline getting other user id from invited direct chat | Loren Burkholder | 2021-09-11 | 1 | -1/+5 |
| | | |||||
* | | Don't try to check whether a preview is direct | Loren Burkholder | 2021-09-11 | 1 | -3/+2 |
| | | |||||
* | | Fix invites crashing the whole app | Loren Burkholder | 2021-09-11 | 1 | -4/+1 |
| | | |||||
* | | Add direct chat handling for previews and invites | Loren Burkholder | 2021-09-11 | 2 | -1/+13 |
| | | |||||
* | | make lint | Loren Burkholder | 2021-09-11 | 1 | -2/+2 |
| | | |||||
* | | Use more descriptive property name | Loren Burkholder | 2021-09-11 | 4 | -9/+9 |
| | | |||||
* | | make lint | Loren Burkholder | 2021-09-11 | 1 | -4/+3 |
| | | |||||
* | | Use better id loading methodology | Loren Burkholder | 2021-09-11 | 4 | -4/+13 |
| | | |||||
* | | Get direct chat jdenticons to line up | Loren Burkholder | 2021-09-11 | 4 | -0/+25 |
| | | |||||
* | | Add jdenticon support | Loren Burkholder | 2021-09-11 | 2 | -0/+5 |
| | | |||||
* | | Fix a few more HTML injections | Thulinma | 2021-09-12 | 1 | -2/+2 |
|/ | |||||
* | Don't allow images in username change messages and user completer | Nicolas Werner | 2021-09-09 | 1 | -1/+2 |
| | | | | Sorry, no fun for you! | ||||
* | Fix day separator when loading older messages | Nicolas Werner | 2021-09-08 | 2 | -12/+10 |
| | | | | fixes #632 | ||||
* | Warn the user before they ping the whole room | Nicolas Werner | 2021-09-02 | 4 | -1/+51 |
| | |||||
* | Support animated images | Nicolas Werner | 2021-08-29 | 1 | -0/+2 |
| | | | | fixes #461 | ||||
* | Use in memory media player instead of storing unencrypted files on disk | Nicolas Werner | 2021-08-29 | 2 | -0/+11 |
| | |||||
* | Add workaround for stickers not showing on iOS | Nicolas Werner | 2021-08-18 | 1 | -0/+7 |
| | | | | see: https://github.com/vector-im/element-ios/issues/2353 | ||||
* | Allow accepting knocks in the timeline | Nicolas Werner | 2021-08-17 | 2 | -1/+67 |
| | | | | As well as selecting more join rules. | ||||
* | Update join button in room directory after join | Nicolas Werner | 2021-08-17 | 1 | -0/+2 |
| | |||||
* | Merge pull request #659 from kamathmanu/nhekoRoomDirectory | DeepBlueV7.X | 2021-08-17 | 1 | -0/+6 |
|\ | | | | | Nheko room directory | ||||
| * | Ran qmlformat and make license | kamathmanu | 2021-08-12 | 1 | -2/+1 |
| | | |||||
| * | Fix nits from code review | kamathmanu | 2021-08-09 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' into nhekoRoomDirectory | kamathmanu | 2021-08-07 | 6 | -163/+173 |
| |\ | |||||
| * | | Linted code | kamathmanu | 2021-08-07 | 1 | -2/+2 |
| | | | |||||
| * | | Implemented Room Directory model to store and provide QML view with public ↵ | kamathmanu | 2021-08-07 | 1 | -0/+8 |
| | | | | | | | | | | | | room data from mtxclient | ||||
* | | | Allow downloading keys from key backup | Nicolas Werner | 2021-08-17 | 2 | -10/+7 |
| | | | |||||
* | | | Show verification status in memberlist | Nicolas Werner | 2021-08-13 | 2 | -5/+7 |
| | | | |||||
* | | | Show if there are unverified devices in a room | Nicolas Werner | 2021-08-13 | 2 | -0/+20 |
| | | | | | | | | | | | | | | | Also fixes some issues where nested transactions will poison the verification cache. | ||||
* | | | fix sticker packs being uneditable in some rooms | Nicolas Werner | 2021-08-11 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Show encryption errors in qml and add request keys button | Nicolas Werner | 2021-08-07 | 5 | -150/+136 |
| | | |||||
* | | Basic sticker pack editor | Nicolas Werner | 2021-08-06 | 2 | -1/+16 |
| | | |||||
* | | QML the raw message dialog | Loren Burkholder | 2021-07-31 | 2 | -9/+7 |
| | | |||||
* | | Merge pull request #655 from LorenDB/qml-all-the-things | DeepBlueV7.X | 2021-07-30 | 3 | -3/+13 |
|\ \ | | | | | | | QML all the things, part 2: Read receipts dialog | ||||
| * | | Use a QSortFilterProxyModel instead of resetting the model | Loren Burkholder | 2021-07-29 | 3 | -5/+5 |
| | | | |||||
| * | | QML the read receipts list | Loren Burkholder | 2021-07-29 | 3 | -3/+13 |
| |/ | | | | | | | There are probably a few things wrong with this, but I'm going to call it good enough for an initial commit | ||||
* / | Log how many rooms we loaded | Nicolas Werner | 2021-07-30 | 1 | -0/+2 |
|/ | |||||
* | Merge pull request #651 from LorenDB/qml-all-the-things | DeepBlueV7.X | 2021-07-23 | 2 | -0/+8 |
|\ | | | | | Fix a few UI things | ||||
| * | make lint | Loren Burkholder | 2021-07-22 | 1 | -1/+2 |
| | | |||||
| * | Add functionality for loading global user profile where needed | Loren Burkholder | 2021-07-21 | 2 | -0/+7 |
| | | | | | | | | This is so viewing profiles from the invite dialog will work as expected. | ||||
* | | Add menu to enable or disable stickers globally | Nicolas Werner | 2021-07-23 | 2 | -0/+23 |
| | | |||||
* | | Rename image pack model | Nicolas Werner | 2021-07-22 | 3 | -7/+7 |
|/ | |||||
* | Move various room auxiliary functions to TimelineManager | Loren Burkholder | 2021-07-21 | 4 | -32/+35 |
| | |||||
* | Open room members when member info label clicked | Loren Burkholder | 2021-07-21 | 2 | -3/+3 |
| | |||||
* | make lint | Loren Burkholder | 2021-07-20 | 1 | -1/+2 |
| | |||||
* | Add property for plain room name | Loren Burkholder | 2021-07-20 | 2 | -0/+5 |
| | |||||
* | Clean up code | Loren Burkholder | 2021-07-20 | 2 | -11/+3 |
| | |||||
* | make lint | Loren Burkholder | 2021-07-20 | 1 | -3/+3 |
| | |||||
* | Permissions only needs a roomid to function | Loren Burkholder | 2021-07-20 | 4 | -6/+7 |
| | |||||
* | Make sure to use the default room id if none is specified | Loren Burkholder | 2021-07-20 | 2 | -4/+4 |
| | |||||
* | make lint | Loren Burkholder | 2021-07-20 | 3 | -56/+27 |
| | |||||
* | QML the invite dialog | Loren Burkholder | 2021-07-20 | 3 | -2/+55 |
| | | | | This also adds a property `roomId` to TimelineModel. | ||||
* | QML the room member list | Loren Burkholder | 2021-07-20 | 4 | -9/+16 |
| | |||||
* | Explicitly reload data in delegates, if related events got loaded | Nicolas Werner | 2021-07-20 | 2 | -0/+7 |
| | |||||
* | Fix replying and editing stickers | Nicolas Werner | 2021-07-19 | 1 | -0/+9 |
| | |||||
* | Fix only first 7 stickers showing up | Nicolas Werner | 2021-07-19 | 1 | -1/+1 |
| | |||||
* | Basic sticker support | Nicolas Werner | 2021-07-19 | 5 | -4/+46 |
| | |||||
* | Fix replies not reloading after fetching them | Nicolas Werner | 2021-07-16 | 2 | -4/+9 |
| | |||||
* | Add workaround for TextEdit not rerendering after image loaded | Nicolas Werner | 2021-07-15 | 2 | -0/+14 |
| | | | | fixes #541 | ||||
* | Switch to room after joining invite | Nicolas Werner | 2021-07-13 | 1 | -9/+10 |
| | |||||
* | Don't allow switching to current room | Nicolas Werner | 2021-07-13 | 1 | -0/+4 |
| | | | | fixes #634 | ||||
* | Fix verification requests showing up on startup | Nicolas Werner | 2021-07-12 | 1 | -0/+9 |
| | |||||
* | Don't use full dump for replies | Nicolas Werner | 2021-07-12 | 2 | -0/+7 |
| | |||||
* | Fix off-by-1 in insertRows when loading room list from initial sync | Nicolas Werner | 2021-07-12 | 1 | -2/+3 |
| | |||||
* | Prepare for reuseItems in timeline | Nicolas Werner | 2021-07-12 | 2 | -13/+18 |
| | | | | The actual reuseItems is still blocked on a few upstream bugs. | ||||
* | Remove db bottleneck by caching ro txn for 100 requests | Nicolas Werner | 2021-07-10 | 2 | -6/+11 |
| | |||||
* | Redesign invites and room preview joins | Nicolas Werner | 2021-07-09 | 2 | -8/+94 |
| | |||||
* | Show previews for space rooms | Nicolas Werner | 2021-07-04 | 2 | -25/+213 |
| | |||||
* | Update translations | Nicolas Werner | 2021-07-02 | 1 | -1/+2 |
| | |||||
* | Remove dead code to calculate last message | Nicolas Werner | 2021-07-01 | 1 | -3/+3 |
| | |||||
* | Fix too many newlines in reply fallback | Nicolas Werner | 2021-06-30 | 1 | -1/+1 |
| | |||||
* | Fix tags going missing if you join communities | Nicolas Werner | 2021-06-26 | 1 | -1/+1 |
| | |||||
* | Apply suggestions from code review | Stuart Mumford | 2021-06-25 | 1 | -1/+1 |
| | |||||
* | Update src/timeline/TimelineModel.cpp | Stuart Mumford | 2021-06-25 | 1 | -1/+1 |
| | |||||
* | Add another regex to match inline img tags using single quotes | Stuart Mumford | 2021-06-25 | 1 | -0/+4 |
| | | | | Signed-off-by: Stuart Mumford <stuart@cadair.com> | ||||
* | Fix spaces showing up with world filter | Nicolas Werner | 2021-06-25 | 1 | -25/+44 |
| | |||||
* | Don't spam key requests directly after startup | Nicolas Werner | 2021-06-25 | 3 | -0/+23 |
| | |||||
* | Add a basic 'Space page' | Nicolas Werner | 2021-06-25 | 2 | -0/+11 |
| | |||||
* | Fix off by 1 in previousRoom condition | Nicolas Werner | 2021-06-25 | 1 | -1/+1 |
| | |||||
* | Hide spaces by default, unless they are in the current space filter | Nicolas Werner | 2021-06-25 | 4 | -7/+59 |
| | |||||
* | Fix hiding rooms from a space | Nicolas Werner | 2021-06-25 | 3 | -13/+50 |
| | |||||
* | Allow filtering by space | Nicolas Werner | 2021-06-25 | 3 | -0/+36 |
| | |||||
* | Show some spaces in the community sidebar | Nicolas Werner | 2021-06-25 | 2 | -9/+37 |
| | |||||
* | fixup! Allow editing unsent messages | Alexander Bantyev | 2021-06-19 | 2 | -1/+7 |
| | |||||
* | fixup! Allow editing unsent messages | Alexander Bantyev | 2021-06-19 | 1 | -0/+1 |
| | |||||
* | fixup! Allow editing unsent messages | Alexander Bantyev | 2021-06-18 | 2 | -7/+21 |
| | |||||
* | Allow editing unsent messages | Alexander Bantyev | 2021-06-18 | 2 | -7/+43 |
| | | | | | | | | | | As of 0db4d71ec2483c7ac5a7b536737fee8fc53a76d7 (Prevent edits of unsent messages), messages that are edits of (or replies to) unsent messages were not allowed. This change was made because otherwise the edits were discarded due to use of txnid rather than mxid in the "m.relates_to" object. Remove this restriction and fix the issue by replacing txnid with mxid in all related events when the message is sent (and we obtain mxid from the server). | ||||
* | Fix wrong tags in context menu | Nicolas Werner | 2021-06-14 | 1 | -0/+10 |
| | |||||
* | Fix copy and paste fail for low prio avatar | Nicolas Werner | 2021-06-14 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' into qml-roomlist | Nicolas Werner | 2021-06-12 | 1 | -2/+1 |
|\ | |||||
| * | Avoid unnecessary QColor -> QString conversions | Joseph Donofry | 2021-06-08 | 1 | -2/+1 |
| | | |||||
* | | Remove useless capture | Nicolas Werner | 2021-06-11 | 1 | -12/+11 |
| | | |||||
* | | Reenable tag hiding | Nicolas Werner | 2021-06-11 | 5 | -17/+89 |
| | | |||||
* | | Enable toggling tags | Nicolas Werner | 2021-06-11 | 5 | -5/+52 |
| | | |||||
* | | Render community items | Nicolas Werner | 2021-06-11 | 1 | -3/+4 |
| | | |||||
* | | Basic community list model | Nicolas Werner | 2021-06-09 | 6 | -25/+230 |
| | | |||||
* | | Implement switching in narrow mode | Nicolas Werner | 2021-06-08 | 3 | -28/+10 |
| | | |||||
* | | Try to get rid of an allocation | Nicolas Werner | 2021-05-30 | 3 | -11/+9 |
| | | |||||
* | | Fix use after free from Qml widget | Nicolas Werner | 2021-05-30 | 2 | -3/+5 |
| | | |||||
* | | Fix warning | Nicolas Werner | 2021-05-28 | 1 | -1/+1 |
| | | |||||
* | | Delete old room list | Nicolas Werner | 2021-05-28 | 3 | -0/+34 |
| | | |||||
* | | Move currentRoom/timeline handling to roomlist | Nicolas Werner | 2021-05-28 | 6 | -111/+110 |
| | | |||||
* | | Reimplement room context menus | Nicolas Werner | 2021-05-28 | 2 | -0/+78 |
| | | |||||
* | | Reenable invites | Nicolas Werner | 2021-05-24 | 4 | -36/+147 |
| | | |||||
* | | Fix leaving rooms | Nicolas Werner | 2021-05-22 | 1 | -0/+11 |
| | | |||||
* | | Fix emoji in new RoomList | Nicolas Werner | 2021-05-22 | 4 | -1/+14 |
| | | |||||
* | | Sort the room list | Nicolas Werner | 2021-05-22 | 5 | -8/+119 |
| | | |||||
* | | Make roomlist look nice | Nicolas Werner | 2021-05-21 | 4 | -11/+160 |
| | | |||||
* | | Some basic room list | Nicolas Werner | 2021-05-19 | 4 | -129/+272 |
| | | |||||
* | | Reorganize TimelineView to prepare porting the room list | Nicolas Werner | 2021-05-14 | 1 | -1/+1 |
| | | |||||
* | | Move openLink to Nheko globals | Nicolas Werner | 2021-05-13 | 2 | -53/+0 |
| | | |||||
* | | Make palette global in Qml | Nicolas Werner | 2021-05-13 | 1 | -0/+5 |
|/ | |||||
* | Mark unsent events as uneditable | Nicolas Werner | 2021-05-09 | 1 | -2/+4 |
| | | | | fixes #574 | ||||
* | Show verification status next to messages | Nicolas Werner | 2021-05-07 | 3 | -0/+19 |
| | |||||
* | Only show actions, when you have permissions to do them | Nicolas Werner | 2021-05-02 | 4 | -2/+220 |
| | |||||
* | Fix crash when you have no rooms and open the profile as well as not ↵ | Nicolas Werner | 2021-04-30 | 3 | -5/+5 |
| | | | | rendering rooms without groups | ||||
* | Copy link to message | Nicolas Werner | 2021-04-29 | 3 | -0/+50 |
| | | | | fixes #499 | ||||
* | Highlight navigated to message | Nicolas Werner | 2021-04-29 | 4 | -0/+69 |
| | |||||
* | Fix some encoding issues when translating matrix.to to matrix: | Nicolas Werner | 2021-04-29 | 1 | -6/+4 |
| | |||||
* | Make pagination logic slightly more robust | Nicolas Werner | 2021-04-29 | 1 | -1/+1 |
| | |||||
* | Rewrite matrix.to links to matrix uris and handle them the same way | Nicolas Werner | 2021-04-28 | 1 | -1/+47 |
| | |||||
* | Make forward messages a bit more readable | Nicolas Werner | 2021-04-27 | 2 | -49/+50 |
| | |||||
* | Merge branch 'forward_message_feature' of https://github.com/Jedi18/nheko ↵ | Nicolas Werner | 2021-04-24 | 4 | -2/+142 |
|\ | | | | | | | into Jedi18-forward_message_feature | ||||
| * | fix macos build error | targetakhil | 2021-04-22 | 2 | -13/+6 |
| | | |||||
| * | strip reply fallbacks from forwarded message | targetakhil | 2021-04-18 | 2 | -11/+46 |
| | | |||||
| * | move detection code to nheko namespace and fix a few other bugs | targetakhil | 2021-04-17 | 4 | -92/+56 |
| | | |||||
| * | directly upload old file object and reuse old message | targetakhil | 2021-04-17 | 3 | -79/+109 |
| | | |||||
| * | remove unused function and set position to center of timeline view | targetakhil | 2021-04-15 | 2 | -12/+0 |
| | | |||||
| * | show forward menu item only for relevant events, changes to ui | targetakhil | 2021-04-15 | 2 | -0/+12 |
| | | |||||
| * | added basic forwarding | targetakhil | 2021-04-15 | 5 | -9/+127 |
| | | |||||
* | | Escape html in topics and show line breaks in the settings | Nicolas Werner | 2021-04-19 | 1 | -4/+9 |
| | | |||||
* | | Use one CompletionProxy for everything including EmojiPicker | Nicolas Werner | 2021-04-18 | 1 | -3/+5 |
| | | |||||
* | | Fix display name referenced for incorrect event types | Joseph Donofry | 2021-04-18 | 1 | -3/+4 |
| | | |||||
* | | change display name wording | targetakhil | 2021-04-18 | 1 | -5/+8 |
|/ | |||||
* | add notice and rainbownotice commands | LordMZTE | 2021-04-11 | 2 | -0/+34 |
| | |||||
* | Fix crash on exit | Nicolas Werner | 2021-04-09 | 1 | -4/+12 |
| | |||||
* | Don't use direct image response objects anymore | Nicolas Werner | 2021-04-05 | 2 | -28/+40 |
| | |||||
* | Fix rainbow replies and add rainbowme | Nicolas Werner | 2021-04-01 | 2 | -7/+9 |
| | |||||
* | Merge pull request #535 from LordMZTE/feature/rainbow | DeepBlueV7.X | 2021-03-28 | 2 | -4/+9 |
|\ | | | | | add /rainbow command | ||||
| * | run formatter | LordMZTE | 2021-03-28 | 1 | -1/+1 |
| | | |||||
| * | Update src/timeline/InputBar.cpp | DeepBlueV7.X | 2021-03-28 | 1 | -1/+1 |
| | | |||||
| * | Use QRegularExpression | DeepBlueV7.X | 2021-03-28 | 1 | -1/+1 |
| | | |||||
| * | fix command parsing | LordMZTE | 2021-03-28 | 1 | -3/+2 |
| | | |||||
| * | commands now also work with newline after them | LordMZTE | 2021-03-28 | 1 | -0/+2 |
| | | |||||
| * | implement requested changes | LordMZTE | 2021-03-28 | 1 | -1/+1 |
| | | |||||
| * | add /rainbow command | LordMZTE | 2021-03-26 | 2 | -3/+7 |
| | | |||||
* | | Add part/leave command | Loren Burkholder | 2021-03-25 | 1 | -0/+2 |
|/ | |||||
* | Clean up notification code a bit | Nicolas Werner | 2021-03-17 | 1 | -24/+1 |
| | |||||
* | Switch readImage to take a reference instead of a pointer | Loren Burkholder | 2021-03-17 | 1 | -1/+1 |
| | | | | There was nowhere that an actual pointer was passed, and I wanted to do references for something else. | ||||
* | Create function for processing whether a message is a reply | Loren Burkholder | 2021-03-17 | 1 | -1/+1 |
| | |||||
* | make lint | Loren Burkholder | 2021-03-17 | 1 | -2/+2 |
| | |||||
* | Parse markdown overrides during replies | Loren Burkholder | 2021-03-17 | 1 | -1/+3 |
| | | | | I apparently missed this when I originally added the overrides. | ||||
* | Don't send markdown links in body | Nicolas Werner | 2021-03-15 | 2 | -4/+32 |
| | | | | fixes #422 | ||||
* | Merge pull request #523 from Jedi18/master | DeepBlueV7.X | 2021-03-15 | 1 | -0/+8 |
|\ | | | | | Fix windows video bug | ||||
| * | prepend file:// for linux and macos | targetakhil | 2021-03-15 | 1 | -0/+8 |
| | | |||||
* | | Remove some more allocations | Nicolas Werner | 2021-03-14 | 1 | -7/+9 |
|/ | |||||
* | Merge branch 'quickswitcher_qml' of git://github.com/Jedi18/nheko into ↵ | Nicolas Werner | 2021-03-13 | 4 | -24/+45 |
|\ | | | | | | | Jedi18-quickswitcher_qml | ||||
| * | change allowed mistakes, fix minor style issues, remove old completer ↵ | Jedi18 | 2021-03-07 | 3 | -25/+1 |
| | | | | | | | | function from inputbar | ||||
| * | fix timeline focus | Jedi18 | 2021-02-23 | 2 | -0/+7 |
| | | |||||
| * | enter key now works, fix room highlighting and add overlay | Jedi18 | 2021-02-23 | 2 | -0/+7 |
| | | |||||
| * | add room alias delegate, fix some quickswitcher ui problems | Jedi18 | 2021-02-22 | 1 | -0/+5 |
| | | |||||
| * | add quick switcher qml file and moved completerFor from inputbar to timeline ↵ | Jedi18 | 2021-02-21 | 2 | -0/+26 |
| | | | | | | | | view class | ||||
* | | Disable room pings in replies | Nicolas Werner | 2021-03-12 | 1 | -0/+2 |
| | | |||||
* | | fix linting | Nicolas Werner | 2021-03-05 | 2 | -109/+113 |
| | | |||||
* | | Merge pull request #505 from Nheko-Reborn/license-headers | DeepBlueV7.X | 2021-03-05 | 12 | -0/+48 |
|\ \ | | | | | | | License headers | ||||
| * | | Update license headers | Nicolas Werner | 2021-03-05 | 12 | -0/+48 |
| | | | |||||
* | | | Fix linting | Joseph Donofry | 2021-03-04 | 2 | -113/+109 |
|/ / | |||||
* | | Fix reply relating to the wrong id of edited event | Nicolas Werner | 2021-03-03 | 1 | -1/+1 |
| | | |||||
* | | Fix text input restoring after edits | Nicolas Werner | 2021-02-25 | 3 | -20/+25 |
| | | |||||
* | | Allow editing via up and down arrows | Nicolas Werner | 2021-02-24 | 2 | -2/+22 |
|/ | |||||
* | Merge pull request #479 from Jedi18/add_rooms_model_completer | DeepBlueV7.X | 2021-02-19 | 1 | -0/+6 |
|\ | | | | | Add rooms completion model | ||||
| * | added bool to choose between showing only rooms with aliases and all of the ↵ | Jedi18 | 2021-02-17 | 1 | -2/+2 |
| | | | | | | | | rooms | ||||
| * | add rooms model, add room delegate for completer | Jedi18 | 2021-02-16 | 1 | -0/+6 |
| | | |||||
* | | Merge pull request #474 from Jedi18/room_settings_qml | DeepBlueV7.X | 2021-02-19 | 4 | -6/+17 |
|\ \ | | | | | | | Shifted Room Settings Dialog to QML | ||||
| * | | Merge branch 'master' into room_settings_qml | Akhil Nair | 2021-02-14 | 9 | -55/+253 |
| |\| | |||||
| * | | replaced with togglebutton using qtquickcontrols2 | Jedi18 | 2021-02-13 | 1 | -1/+1 |
| | | | |||||
| * | | added changing of name through edit modal, removed old roomsettings | Jedi18 | 2021-02-12 | 4 | -11/+3 |
| | | | |||||
| * | | fix avatar update on timeline sync | Jedi18 | 2021-02-11 | 4 | -5/+12 |
| | | | |||||
| * | | added notifications and encryption for the new roomsettings | Jedi18 | 2021-02-11 | 2 | -3/+9 |
| | | | |||||
| * | | ui almost looks the same, midway between transition from old room settings ↵ | Jedi18 | 2021-02-10 | 2 | -3/+6 |
| | | | | | | | | | | | | to new room settings | ||||
| * | | added room settings qml | Jedi18 | 2021-02-09 | 2 | -2/+5 |
| | | | |||||
* | | | Make inline images work a bit better | Nicolas Werner | 2021-02-17 | 1 | -2/+10 |
| | | | |||||
* | | | Fix crash from logging unset indices (leftover after debugging) | Nicolas Werner | 2021-02-17 | 1 | -5/+0 |
| |/ |/| |