Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2018-01-30 | Connection class cleanup | Kitsune Ral | |
createRoom and createUser renamed to roomFactory and userFactory (because createRoom will mean a different thing); unneeded #include moved to the cpp file. | |||
2018-01-30 | CreateRoomJob: Update to the latest Spec version | Kitsune Ral | |
2018-01-30 | User: fullName, isGuest, better doc comments | Kitsune Ral | |
User::fullName() is used in Room::roomMembername now. That string construction may be further cached now if it ever becomes a bottleneck. | |||
2018-01-30 | RequestData: use auto | Kitsune Ral | |
Should improve compatibility with compilers that don't like conversions between different std::unique_ptr<> types. | |||
2018-01-30 | Connection::onSyncSuccess: call processEvents upon each room parsing | Kitsune Ral | |
When there are too many rooms to process, this gives at least some bandwidth for the GUI in the meantime. | |||
2018-01-25 | Merge branch 'kitsune-avatar-url-properties' | Kitsune Ral | |
2018-01-25 | Room, User: expose avatarMediaId(); declare User for the metatype system | Kitsune Ral | |
To make it easy to use User objects and fetch room and user avatars from QML. Closes #155. | |||
2018-01-25 | Room, User: const-tighten up the code, set QObject names | Kitsune Ral | |
To make debugging (including QML debugging) more convenient. | |||
2018-01-25 | StateEvent<>: introduce Prev structure and prevSenderId() accessor | Kitsune Ral | |
Also switch prev_content() from accidental snake case to camel case (old name still provided for compatibility). | |||
2018-01-25 | Expose avatar URLs of Room and User as Q_PROPERTY | Kitsune Ral | |
This is needed for QML integration. Closes #155. | |||
2018-01-25 | Merge branch 'kitsune-better-forget' | Kitsune Ral | |
2018-01-25 | Merge branch 'kitsune-invite-state-caching' | Kitsune Ral | |
2018-01-25 | Connection: intercept late-coming /sync response on a just forgotten room | Kitsune Ral | |
Closes #160. | |||
2018-01-25 | Connection::provideRoom: assert no empty ids | Kitsune Ral | |
Bonus: slightly more accurate comment in Connection::forgetRoom | |||
2018-01-25 | Room::toJson: fix invite state caching | Kitsune Ral | |
Causes a cache version upgrade; the old cache stores the state in an incorrect place that won't be supported. Closes #159. | |||
2018-01-25 | Connection::forgetRoom: Support forgetting invites too | Kitsune Ral | |
Closes #157. |