Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-13 | one log_debug -> log_error, also some trivial indent | louiz’ | |
2018-04-13 | Refactor that fixes a compilation issue in Release mode | louiz’ | |
Some template specialization were not found, because they were not declared at the point they were used. We moved things around, things are less inter-dependant, and also now it works. | |||
2018-04-11 | Use a different Date data type | louiz’ | |
PLEASE backup your database before testing this commit, and report any migration issue. In postgresql, we use timestamp with timezone. In sqlite3 we use REAL (the date is expressed as julianday) This requires a migration of the muclogline_ table: In postgresql it’s pretty simple, we convert all the integer into timestamps With sqlite3, we actually rename the table, create the new one with the correct type, then copy everything to the new table, with a conversion function for the Date_ column, and then we delete the old table. fix #3343 | |||
2018-03-26 | Channel disco-info: use shorter string | Georg Lukas | |
2018-03-23 | Change the nick of the joining user AFTER sending all the join stuff | louiz’ | |
fix #3305 | |||
2018-03-23 | Properly handle force-join presences by sending everything in return | louiz’ | |
fix #3305 | |||
2018-03-19 | Add a missing pointer check | louiz’ | |
2018-03-19 | Add a nick field in the IRC server configuration form | louiz’ | |
fix #3317 | |||
2018-03-18 | Advertise the muc#stable_id feature on disco#info results | louiz’ | |
From XEP 0045: “Note: the requirement to reflect the 'id' attribute was added in version 1.31 of this XEP. Servers following the new specification SHOULD advertise that with a disco info feature of 'http://jabber.org/protocol/muc#stable_id' on both the service domain and on individual MUCs, so that clients can check for support.” | |||
2018-03-18 | Reflect message IDs in channel MUCs | louiz’ | |
fix #3283 | |||
2018-03-18 | Allow the execution of multiple commands after the IRC connection | louiz’ | |
fix #3275 | |||
2018-03-17 | Revert "Use std::optional<bool> instead of OptionalBool" | louiz’ | |
This reverts commit ba879a882e031d7b8503f78fe41d1210000c96ca. | |||
2018-03-16 | Use std::optional<bool> instead of OptionalBool | louiz’ | |
2018-03-12 | And this one (hostname -> address) | louiz’ | |
ref #3273 | |||
2018-03-12 | Rename a few “hostname” into “address”, regarding last commit | louiz’ | |
ref #3273 | |||
2018-03-12 | Allow to override the addresses used to connect to an IRC network | louiz’ | |
fix #3273 | |||
2018-03-12 | Add a <item/> node in the presence of a leaving participant | louiz’ | |
fix #3339 | |||
2018-03-12 | Remove the virtual channel feature altogether | louiz’ | |
2018-02-13 | Support the <before/> element in MAM requests | louiz’ | |
2018-02-13 | Do not forget an early return, to return the correct item-not-found error | louiz’ | |
2018-02-11 | Send a item-not-found error when the “after” value is not in the archive | louiz’ | |
2018-02-10 | Handle the “after” RSM value to page through results | louiz’ | |
2018-02-10 | Always return the oldest matching messages from MAM, even if no date is set | louiz’ | |
2018-02-04 | Fix argument types in declaration of send_history_message | louiz’ | |
2018-01-30 | Remove the debug logs from previous commit | louiz’ | |
2018-01-30 | Add a ifndef USE_DATABASE guard around send_history_message | louiz’ | |
2018-01-30 | Add the complete='true' attribute only when appropriate | louiz’ | |
2018-01-29 | Do not forget the complete='true' attribute in MAM’s result iq | louiz’ | |
2018-01-28 | Correctly include the database header | louiz’ | |
2018-01-28 | And an other conversion warning | louiz’ | |
2018-01-22 | Merge tag '7.1' | louiz’ | |
2018-01-22 | Fix a crash happening when a user cancels a non-existing ad-hoc session | louiz’ | |
2018-01-18 | xep-0106 escape the JIDs listed in a disco#items server query | louiz’ | |
fix #3325 | |||
2017-12-27 | Fix a subtle iid parsing error in the adhoc code | louiz’ | |
2017-12-27 | Don’t answer to some requests towards MUC participants | louiz’ | |
These requests are only meant to be received by the room itself. The participant must answer with not-implemented instead. fix #3323 | |||
2017-12-26 | Include the <fin><set><first/><last/></></> nodes in the MAM iq result | louiz’ | |
fix #3322 | |||
2017-12-26 | Add a <x muc#user> node on outgoing private MUC messages | louiz’ | |
See https://xmpp.org/extensions/xep-0045.html#privatemessage fix #3321 | |||
2017-12-03 | Run some of the ci tests against a postgresql docker container | louiz’ | |
2017-10-04 | Remove a redundant Body definition | louiz’ | |
2017-09-09 | Add the persistent_by_default configuration option | louiz’ | |
fix #3293 | |||
2017-08-27 | Remove a forgotten and useless comment | louiz’ | |
[skip-ci] | |||
2017-08-27 | Add support for the "history" node on MUC join | louiz’ | |
Supports the "seconds", "maxstanzas", "since" and "maxchars" (but only =0) attributes. fix #3270 | |||
2017-08-27 | In fixed mode, server messages come from biboumi’s hostname directly | louiz’ | |
Instead of irc.example.com@biboumi, because that’s actually user named “irc.example.com”, in that case. And that fixes the raw messages in fixed mode. fix #3286 | |||
2017-08-26 | Cache the encoding_in database value, to avoid doing a query for each message | louiz’ | |
2017-08-02 | Re-add a removed (by mistake) pointer null check | louiz’ | |
2017-07-21 | Do not ignore empty values when receiving a data form | louiz’ | |
Otherwise, these fields cannot be emptied by the user fix #3281 | |||
2017-07-20 | Add the possibility to invite any external JID to a room | louiz’ | |
fix #3285 | |||
2017-07-20 | Do not reply with an error when receiving a presence for a user JID | louiz’ | |
fix #3224 | |||
2017-07-16 | Send an unsubscribed presence on a probe if we don’t have a roster entry | louiz’ | |
2017-07-16 | Answer to presences of type='probe' | louiz’ | |