Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-11 | .travis.yml: factor out common parts | Kitsune Ral | |
2019-10-02 | Fix Room::localAliases() | Black Hat | |
When homeserver's csapi is in a subdomain, e.g. matrix.example.org, the authority of api endpoint url differs from server name, example.org. This causes Room::localAliases() to fail. | |||
2019-10-02 | BaseJob::Private: experiment with [[nodiscard]] | Kitsune Ral | |
2019-10-02 | More fixes for Apple not having deduction guides in stdlib | Kitsune Ral | |
2019-10-02 | wrap_in_function() | Kitsune Ral | |
Because Apple stdlib doesn't have std::function deduction guides. | |||
2019-10-01 | Merge pull request #356 from m-rey/patch-1 | Black Hat | |
Fix openSUSE misspelling | |||
2019-10-01 | Fix openSUSE misspelling | Martin Rey | |
Fix #355 The correct spelling of openSUSE can be checked on https://en.opensuse.org/Portal:Distribution | |||
2019-09-30 | Merge pull request #342 from quotient-im/bhat-libqtolm-update | Black Hat | |
Update libQtOlm | |||
2019-09-30 | Update libQtOlm | Black Hat | |
2019-09-30 | Merge branch 'master' of https://github.com/quotient-im/libQuotient into ↵ | Black Hat | |
bhat-libqtolm-update | |||
2019-10-01 | Room::getCurrentState() | Kitsune Ral | |
2019-09-30 | Move C++ standard requirement to target_compile_features | Kitsune Ral | |
...so that users of the library wouldn't need to redefine that they need C++17. | |||
2019-09-29 | Connection: allRooms(), rooms(), roomsCount(); deprecate roomMap() | Kitsune Ral | |
Closes #354. | |||
2019-09-29 | BaseJob, urlForLog() -> dumpRequest(): include HTTP verb into log lines | Kitsune Ral | |
2019-09-29 | Rename pieces with qmc/qmatrixclient | Kitsune Ral | |
2019-09-29 | function_traits: drop unused pieces | Kitsune Ral | |
is_callable won't ever be needed because std::is_invokable is here; arg_number and returns() didn't find its users; and function_type has been just broken all along for member functions. | |||
2019-09-29 | Simplify visit() signature | Kitsune Ral | |
Checking that BaseEventT descends from Event is really extraneous. | |||
2019-09-29 | Make connectSingleShot work wherever QObject::connect works | Kitsune Ral | |
Also: doc-comment connectUntil and unify implementation of both functions. | |||
2019-09-29 | .clang-format: don't add a whitespace before a colon in range-for | Kitsune Ral | |
2019-09-29 | Settings: childGroups() should merge legacy and current groups; QMC->QTNT in ↵ | Kitsune Ral | |
macros Because otherwise migrating one group to the current location leads to all other groups suddenly disappearing from Settings view. | |||
2019-09-29 | Fix formatting weirdness | Kitsune Ral | |
Alas, clang-format is not terrifically good around [[attributes]] | |||
2019-09-28 | Set CXX_STANDARD by target property | Black Hat | |
2019-09-28 | Enable QMake for AppVeyor | Black Hat | |
2019-09-27 | Fix QMake travis ci | Black Hat | |
2019-09-27 | Fix Travis CI QMake | Black Hat | |
2019-09-27 | Fix travis ci | Black Hat | |
2019-09-27 | Fix Travis CI. | Black Hat | |
2019-09-27 | Olm relwithdebuginfo build | Black Hat | |
2019-09-27 | Force C++17 | Black Hat | |
2019-09-27 | try to fix AppVeyor | Black Hat | |
2019-09-26 | update libQtOlm | Black Hat | |
2019-09-26 | Fix AppVeyor #2. | Black Hat | |
2019-09-26 | Fix appveyor build #1. | Black Hat | |
2019-09-26 | Merge branch 'master' of https://github.com/quotient-im/libQuotient into | Black Hat | |
bhat-libqtolm-update | |||
2019-09-24 | Room: cleanup | Kitsune Ral | |
2019-09-12 | Introduce HashQ<> and UnorderedMap<> | Kitsune Ral | |
Invading into std:: is frowned upon, even though legitimate from the C++ standard perspective. Given that it's possible to pass a hash object to unordered_map, it only takes an alias for std::unordered_map to avoid having to specialize std::hash. And besides, a generic compatibility bridge between qHash and std::hash has been long needed. std::hash<QString> in converters.h remains for now; it will be dropped separately when the API files get regenerated to use UnorderedMap. | |||
2019-09-11 | CMakeLists.txt: use set_target_properties(); specify C++ std per-target | Kitsune Ral | |
2019-08-29 | Merge pull request #348 from quotient-im/kitsune-better-basejob | Kitsune Ral | |
Better BaseJob | |||
2019-08-27 | libquotient.pri: use c++1z to help older qmake | Kitsune Ral | |
CONFIG *= c++17 is available from Qt 5.12 only. | |||
2019-08-27 | More compliant 'using' for chrono_literals | Kitsune Ral | |
Compilers warn on using 'using ...::operator""s' because they think we're redefining the reserved suffix. | |||
2019-08-27 | Don't use enumerator attributes | Kitsune Ral | |
Anything after enumerators is a problem for moc before Qt 5.12; so we can't use enumerator attributes before then. | |||
2019-08-27 | Tighten the code; add a missing #include | Kitsune Ral | |
MSVC warns on class/struct mismatch and errors on std::array because `<array>` is not indirectly included on that platform. | |||
2019-08-26 | Room::calculateDisplayname: use local aliases for room naming | Kitsune Ral | |
The Spec now allows it, even if with a disclaimer that it's subject for further removal. | |||
2019-08-26 | setAvatarForRoom: try recover from otherAvatars inconsistency | Kitsune Ral | |
Hopefully manages cases like #347 in a better way. | |||
2019-08-25 | RoomMessageEvent::content(): constify event content | Kitsune Ral | |
2019-08-20 | BaseJob/ConnectionData: connection-wide rate-limiting | Kitsune Ral | |
As before, completely transparent for clients, driven by 529 errors from the server (but cases of rate limiting are signalled by BaseJob::rateLimited). That brings changes to BaseJob API: timeouts now use int64_t and also can be handled in std::chrono terms; aboutToStart() -> aboutToSendRequest(); started() -> sentRequest(). Closes #292. | |||
2019-08-20 | BaseJob: Status/StatusCode tweaks, cleanup, mo' comments | Kitsune Ral | |
Notably, recovered Status::fromHttpCode() that was introduced in 5722ceaf4bd10c29f1091e3dc5a87f5650ea8c71 but fell victim of a careless merge (so much for introducing non-topical changes in feature branches). | |||
2019-08-20 | Connection::run() | Kitsune Ral | |
Finally, clients can pre-create job objects and then separately submit them for execution on a given connection - previously such separation was a privilege of Connection (others had to use Connection::callApi<>, which invoked jobs right away). | |||
2019-08-20 | Store userId in ConnectionData instead of Connection | Kitsune Ral | |
To collect all connection-identifying information in a single place. | |||
2019-08-19 | Room::Private::doSendEvent: fix too early change in BaseJob signals | Kitsune Ral | |
That's a matter of another upcoming commit. |