Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix crash after sending image caused by the recent refactor | Nicolas Werner | 2021-12-30 | 1 | -4/+4 |
| | |||||
* | Reserve size of some containers we are filling | Nicolas Werner | 2021-12-29 | 1 | -4/+8 |
| | |||||
* | Reduce allocations using QStringLiteral | Nicolas Werner | 2021-12-29 | 1 | -57/+57 |
| | |||||
* | Fix more warnings and remove dead code | Nicolas Werner | 2021-12-28 | 1 | -1/+2 |
| | |||||
* | Some qt6 prep | Nicolas Werner | 2021-12-28 | 1 | -4/+4 |
| | |||||
* | Add recently used reactions | Nicolas Werner | 2021-12-13 | 1 | -0/+8 |
| | | | | fixes #435 | ||||
* | InputBar: run clang-format | Marcus Hoffmann | 2021-12-03 | 1 | -20/+22 |
| | |||||
* | 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 | 1 | -10/+10 |
| | | | | | | | 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 |
| | |||||
* | Mark rooms as direct chats | Nicolas Werner | 2021-11-21 | 1 | -0/+5 |
| | | | | | Either by accepting an invite or manually using /converttodm and revert with /converttoroom. | ||||
* | Clear @room warning after sending message | Nicolas Werner | 2021-11-02 | 1 | -0/+1 |
| | | | | fixes #751 | ||||
* | Move voip and encryption stuff into their own directories | Nicolas Werner | 2021-10-17 | 1 | -1/+0 |
| | |||||
* | Use the same leave room dialog everywhere | Loren Burkholder | 2021-10-11 | 1 | -1/+1 |
| | | | | This ports the leave room dialog to QML, everywhere. There are now no differences between the various leave dialogs. | ||||
* | 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 | 1 | -619/+605 |
| | |||||
* | Improvements for linking to events | Thulinma | 2021-09-16 | 1 | -0/+17 |
| | | | | | | - 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. | ||||
* | Warn the user before they ping the whole room | Nicolas Werner | 2021-09-02 | 1 | -0/+33 |
| | |||||
* | 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 | ||||
* | Rename image pack model | Nicolas Werner | 2021-07-22 | 1 | -2/+2 |
| | |||||
* | Fix replying and editing stickers | Nicolas Werner | 2021-07-19 | 1 | -0/+9 |
| | |||||
* | Basic sticker support | Nicolas Werner | 2021-07-19 | 1 | -0/+17 |
| | |||||
* | Fix too many newlines in reply fallback | Nicolas Werner | 2021-06-30 | 1 | -1/+1 |
| | |||||
* | Delete old room list | Nicolas Werner | 2021-05-28 | 1 | -0/+1 |
| | |||||
* | Move currentRoom/timeline handling to roomlist | Nicolas Werner | 2021-05-28 | 1 | -2/+33 |
| | |||||
* | add notice and rainbownotice commands | LordMZTE | 2021-04-11 | 1 | -0/+33 |
| | |||||
* | Fix rainbow replies and add rainbowme | Nicolas Werner | 2021-04-01 | 1 | -6/+8 |
| | |||||
* | Merge pull request #535 from LordMZTE/feature/rainbow | DeepBlueV7.X | 2021-03-28 | 1 | -3/+6 |
|\ | | | | | 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 | 1 | -2/+4 |
| | | |||||
* | | Add part/leave command | Loren Burkholder | 2021-03-25 | 1 | -0/+2 |
|/ | |||||
* | 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. | ||||
* | 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 | 1 | -0/+6 |
| | | | | fixes #422 | ||||
* | Merge branch 'quickswitcher_qml' of git://github.com/Jedi18/nheko into ↵ | Nicolas Werner | 2021-03-13 | 1 | -22/+0 |
|\ | | | | | | | Jedi18-quickswitcher_qml | ||||
| * | change allowed mistakes, fix minor style issues, remove old completer ↵ | Jedi18 | 2021-03-07 | 1 | -22/+0 |
| | | | | | | | | function from inputbar | ||||
* | | Update license headers | Nicolas Werner | 2021-03-05 | 1 | -0/+4 |
| | | |||||
* | | Fix text input restoring after edits | Nicolas Werner | 2021-02-25 | 1 | -19/+22 |
|/ | |||||
* | 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 |
| | |||||
* | Implement message editing | Nicolas Werner | 2021-02-09 | 1 | -1/+39 |
| | | | | | | The UI still looks ugly, but I have no good idea atm. fixes #134 | ||||
* | Switch to new relations format | Nicolas Werner | 2021-02-09 | 1 | -6/+12 |
| | |||||
* | Remove useless parentheses | DeepBlueV7.X | 2021-01-23 | 1 | -2/+2 |
| | |||||
* | Clarify how markdown is determined | Loren Burkholder | 2021-01-20 | 1 | -1/+1 |
| | |||||
* | Make lint | Loren Burkholder | 2021-01-20 | 1 | -3/+5 |
| | |||||
* | Add commands to override Markdown setting | Loren Burkholder | 2021-01-20 | 1 | -2/+6 |
| | |||||
* | Port PlaceCall dialog to Qml | trilene | 2021-01-07 | 1 | -46/+0 |
| | |||||
* | Make call invites less intrusive | trilene | 2021-01-07 | 1 | -1/+3 |
| | |||||
* | Move call-related properties to CallManager | trilene | 2021-01-07 | 1 | -1/+1 |
| | |||||
* | React with arbitrary strings via /react | Nicolas Werner | 2020-12-13 | 1 | -0/+6 |
| | |||||
* | Fix variable shadowing | Nicolas Werner | 2020-11-26 | 1 | -5/+5 |
| | |||||
* | Implement Qml drag and drop | Nicolas Werner | 2020-11-25 | 1 | -0/+8 |
| | |||||
* | Fix mimetype of media messages | Nicolas Werner | 2020-11-25 | 1 | -0/+1 |
| | |||||
* | Qml emoji completer | Nicolas Werner | 2020-11-25 | 1 | -0/+6 |
| | |||||
* | Working User completer | Nicolas Werner | 2020-11-25 | 1 | -0/+8 |
| | |||||
* | WIP Qml completer | Nicolas Werner | 2020-11-25 | 1 | -0/+6 |
| | |||||
* | Reimplement message history | Nicolas Werner | 2020-11-25 | 1 | -14/+52 |
| | |||||
* | Send typing updates from QML | Nicolas Werner | 2020-11-25 | 1 | -0/+41 |
| | |||||
* | Move calls to new input bar | Nicolas Werner | 2020-11-25 | 1 | -0/+45 |
| | |||||
* | Add file uploading | Nicolas Werner | 2020-11-25 | 1 | -1/+316 |
| | |||||
* | Basic text input in qml | Nicolas Werner | 2020-11-25 | 1 | -4/+156 |
| | |||||
* | Pasteable textinput | Nicolas Werner | 2020-11-25 | 1 | -0/+46 |