Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-26 | Fix (not working for quite a long time) CI on OSX | Kitsune Ral | |
2018-02-26 | Travis CI: an attempt to introduce automatic testing | Kitsune Ral | |
Adding valgrind to the mix. | |||
2018-02-26 | qmc-example: Single-shot sync instead of continuous; room tags; code cleanup | Kitsune Ral | |
Single-shot sync is now used because with that qmc-example can be used as a crude auto-testing tool. | |||
2018-02-26 | Merge branch 'kitsune-account-data' | Kitsune Ral | |
2018-02-26 | Room and Connection: support room tags | Kitsune Ral | |
Closes #134. | |||
2018-02-26 | TagEvent: m.tag events parsing | Kitsune Ral | |
Using them in rooms and connection comes in the next commit. | |||
2018-02-26 | SyncJob: parse events from global account data too | Kitsune Ral | |
Closes #123 (room account data were parsed even before). No specific event classes for account data yet, though. | |||
2018-02-26 | Room: show 1-on-1 invitations in a better way | Kitsune Ral | |
Previously it was just an "Empty room" name, now it's "Invitation from %1". | |||
2018-02-25 | ReceiptEvent: code cleanup | Kitsune Ral | |
2018-02-24 | Merge branch 'kitsune-room-specific-userinfo' | Kitsune Ral | |
2018-02-24 | User: store avatars on the heap; use two containers to store ↵ | Kitsune Ral | |
avatars-to-rooms mapping Because they are uncopiable, unlike pointers to them; and a combination of QHash of avatars and a QMultiHash of rooms is much more convenient than a std::vector<std::pair<...>>. | |||
2018-02-24 | User/Room: signal that a user/member is about to change the name | Kitsune Ral | |
Enables to address QMatrixClient/Quaternion#284. Also fixes a gibberish condition in Room::Private::renameMember() that led to improper warnings and a too early return. | |||
2018-02-24 | Support per-room user traits | Kitsune Ral | |
User::Private stores two new maps (for display names and avatars respectively) and is able to retrieve and store names/avatars on a per-room basis. The "most used" trait is stored separately and room lists are not kept for it (because most people have a single name and a single avatar across all or most rooms). TODO: The avatar container should be replaced with something less clumsy; the current code doesn't even compile with MSVC. A "handle" copyable structure that would hold the Avatar is one of options. Closes #141. | |||
2018-02-24 | Don't copy event content in accessors | Kitsune Ral | |
2018-02-23 | Room: user() and memberJoinState(); code cleanup | Kitsune Ral | |
Room::user() came instead of Room::Private::member() and memberJoinState() came instead of Private::hasMember. | |||
2018-02-23 | Avatar: provide common logic for uploading; don't store Connection | Kitsune Ral | |
Although the setting part of the work is class(User or Room)-specific, the uploading part is common, so Avatar provides it now. Also: there's no need to store Connection, as it's only used in get() and upload() - just pass it as the parameter to the methods. | |||
2018-02-23 | RoomMemberEvent: make it sendable | Kitsune Ral | |
To do that, both RoomMemberEvent and MemberEventContent got respective constructors. Also: the fallback value for unknown _received_ membership types is now Undefined; it's not allowed in member events for sending (will fail on assertion now) because the server requires membership to be explicitly set. | |||
2018-02-23 | BaseJob: In case of 4xx errors, fill the status with the message from the ↵ | Kitsune Ral | |
response | |||
2018-02-20 | BaseJob: added Abandoned status | Kitsune Ral | |
For a very brief period between calling BaseJob::abandon() and deletion of the job object. | |||
2018-02-19 | Fix a typo in the previous commit | Kitsune Ral | |
A symptom that you suffered from it is you don't see any usernames whatsoever, and after restarting room names are also gone (to fix that, delete cache files). | |||
2018-02-07 | RoomEvent/RoomMemberEvent: do not store what can be calculated on the fly | Kitsune Ral | |
Basically, segments of originalJsonObject() are used as-you-go instead of parsing them upon event creation. | |||
2018-02-07 | MediaThumbnailJob::parseReply: Do not ignore underlying errors | Kitsune Ral | |
2018-02-05 | Merge pull request #170 from QMatrixClient/kitsune-expose-download-urls | Kitsune Ral | |
Expose download URLs | |||
2018-02-03 | Room: urlToDownload() and urlToThumbnail() | Kitsune Ral | |
Closes #168. | |||
2018-02-03 | thumbnailInfo() for event content classes and RoomMessageEvent: hasThumbnail | Kitsune Ral | |
2018-02-03 | DownloadFileJob, MediaThumbnailJob: augment generated makeRequestUrl() methods | Kitsune Ral | |
2018-02-03 | jobs/generated: Generate job-specific makeRequestUrl() methods | Kitsune Ral | |
2018-02-03 | BaseJob::makeRequestUrl | Kitsune Ral | |
A static method that constructs a request URL for this job and the passed set of parameters. | |||
2018-02-02 | Add CII Best Practices badge to the flair section | Kitsune Ral | |
2018-02-01 | On Windows, make sure the downloaded file has a proper extension | Kitsune Ral | |
Closes #287. | |||
2018-02-01 | Log transferred bytes in PROFILER category | Kitsune Ral | |
2018-02-01 | Room::fileNameToDownload: get a sensible initial name for the file picker | Kitsune Ral | |
Works (at least, should work) with both Qt Widgets and QML. | |||
2018-02-01 | Merge pull request #167 from Quiark/master | Kitsune Ral | |
Move forgetRoom over to slots #166 | |||
2018-02-01 | Move forgetRoom over to slots #166 | Roman Plášil | |
2018-02-01 | Merge pull request #164 from Quiark/master | Kitsune Ral | |
Make qmake warning spec compatible with msvc | |||
2018-02-01 | Make qmake warning spec compatible with msvc | Roman Plášil | |
2018-02-01 | Add GCC 4.9.2 to the workaround path for FileTransferInfo code | Kitsune Ral | |
Closes #161. Doesn't make GCC 4.9.2 officially supported but libqmatrixclient can be compiled with it as of now. | |||
2018-02-01 | AppVeyor CI configuration | Kitsune Ral | |
Compared to the (very similar) Quaternion project configuration, this one adds qmake-based building with MSVC 2017 (MSVC 2015 can be added if anybody needs it). | |||
2018-01-31 | Connection::createdRoom() signal | Kitsune Ral | |
2018-01-30 | Merge branch 'kitsune-create-room' | Kitsune Ral | |
Closes #34. | |||
2018-01-30 | User: Fixes in newly introduced methods | Kitsune Ral | |
2018-01-30 | User: Fixes in newly introduced methods | Kitsune Ral | |
2018-01-30 | Fix compilation with Clang | Kitsune Ral | |
Did two QChar::isDigit() overloads, one static and one member, confuse it? | |||
2018-01-30 | Fix compilation with Clang | Kitsune Ral | |
Did two QChar::isDigit() overloads, one static and one member, confuse it? | |||
2018-01-30 | Room: setName(), setCanonicalAlias() | Kitsune Ral | |
2018-01-30 | Fix compatibility with Qt before 5.10 | Kitsune Ral | |
2018-01-30 | Fix compatibility with Qt before 5.10 | Kitsune Ral | |
2018-01-30 | Connection: expose the list of users; use an ordered map | Kitsune Ral | |
It's still an open question whether it's better to store a separate sorted index of users, next to an unsorted one; but a sorted list of users is of much more use in GUI than an unsorted one. | |||
2018-01-30 | Connection: more Q_PROPERTYs, newUser signal | Kitsune Ral | |
2018-01-30 | Connection::createRoom and Connection::createDirectChat | Kitsune Ral | |