~singpolyma/biboumi

a90f196a — louiz’ 5 years ago
Revert "Use the Date to find a next page in RSM, not the id"

This reverts commit 5ef7ba08028065b03d51d1dc70bb35aeb41ae19d.
b70136b9 — Emmanuel Gil Peyrot 5 years ago
Add a note about multiple admins in the ChangeLog
6f22658c — Emmanuel Gil Peyrot 5 years ago
Add a note about multiple admins in the manpage
0d487f40 — Emmanuel Gil Peyrot 5 years ago
Use Config::is_in_list() to allow for multiple admins
a429b2ea — Emmanuel Gil Peyrot 5 years ago
Add a Config::is_in_list() method
39a32d55 — Emmanuel Gil Peyrot 5 years ago
Use jid.bare() instead of manual concatenation
5ef7ba08 — louiz’ 5 years ago
Use the Date to find a next page in RSM, not the id

This way, it works, whatever the order of insertion in the database was.

fix #3343
d375a9ed — louiz’ 5 years ago
one log_debug -> log_error, also some trivial indent
e4f111ac — louiz’ 5 years ago
Remove two unused (julianday) functions
4bd7b698 — louiz’ 5 years ago
Refactor that fixes a compilation issue in Release mode

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.
de8267fa — louiz’ 5 years ago
Fix a build warning when compiling without postgres or sqlite
857c7d39 — louiz’ 5 years ago
Use a different Date data type

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
0cd848e5 — louiz’ 5 years ago
Send the stanza-id for messages received by other users

fix #3347
99c36489 — louiz’ 5 years ago
Fix the e2e test broken by previous commit
49bb3830 — Georg Lukas 5 years ago
Channel disco-info: use shorter string
2fe06ffa — louiz’ 5 years ago
build:archlinux is way too slow, run it only manually

(that is, from time to time, hope I won’t forget)
d81a9456 — louiz’ 5 years ago
Change the nick of the joining user AFTER sending all the join stuff

fix #3305
e2fc3cf6 — louiz’ 5 years ago
Properly handle force-join presences by sending everything in return

fix #3305
cdace807 — louiz’ 5 years ago
Check that db.prepare worked before using the returned statement
faa33c1a — louiz’ 5 years ago
Pass an IrcClient* to send_muc_leave instead of doing an other search
Next