1
0
Fork 0
mirror of https://github.com/mautrix/signal.git synced 2026-05-15 13:46:55 -04:00
Commit graph

13 commits

Author SHA1 Message Date
Tulir Asokan
cb678dd2f0 handle*,chatinfo: implement new interface for message requests 2025-12-09 16:42:57 +02:00
Tulir Asokan
c71d417ccc signalmeow/storageservice: send contact list event on storage sync 2025-09-01 16:48:30 +03:00
Tulir Asokan
6900cc9d3d signalmeow/keys: dispatch logged out event on prekey 422 error 2025-08-19 12:32:38 +03:00
Tulir Asokan
c245fa474f handlesignal: add support for delete for me 2025-07-18 15:58:17 +03:00
Tulir Asokan
aca0ee20e8 client: add support for connect-once background resync interface 2025-01-16 16:29:51 +02:00
Scott Weber
3c31749fb2
handlesignal: add ServerTimestamp remote stream order on incoming messages (#550) 2024-11-13 16:20:28 -05:00
Tulir Asokan
798ebb689f handlesignal: bridge decryption errors 2024-09-09 19:25:10 +03:00
Scott Weber
e369a56c31
Minor incoming messages refactor and send m.notice on decryption errors (#496)
We were falling through without propagating errors anywhere. I caught
most decryption errors and send them along in the new Err field in
DecryptionResult, to be then passed along to the bridge as a new type of
chat event.

I'm going to do another pass to catch any last decryption errors, but
this should be a big improvement over what we currently do.
2024-04-11 14:31:27 -04:00
Tulir Asokan
2eb41b5e83 Refactor recipient storage 2024-03-22 22:32:29 +02:00
Tulir Asokan
5bb2db43c0 Add support for PNI portals 2024-03-22 15:37:21 +02:00
Tulir Asokan
e2d8a24c99 Refactor group and user info updating 2024-01-05 22:10:59 +02:00
Tulir Asokan
9efe31d789 Refactor Signal -> Matrix message handling
Also add support for edits
2024-01-02 19:04:45 +02:00
Tulir Asokan
35db0abe8b
Refactor database tables and query wrappers (#402)
* Change most columns to `NOT NULL`, including primary keys
  (because SQLite).
* Change columns only storing signal user IDs (portal receiver, message
  sender, user uuid) to use the `uuid` type instead of `TEXT`.
* Drop chat ID from message table primary key.
* Add part index to message table to replace timestamp hack for storing
  multiple parts of the same message.
* Change query wrappers to use new QureyHelper struct in dbutil, and 
  pass contexts and errors everywhere.

As a part of changing the portal receiver from phone number to uuid,
old portals whose receiver isn't logged in anymore may be discarded.
The discarded portals will be stored in the lost_portals table for
cleanup or recovery.
2023-12-31 16:12:58 +02:00