Lazily load better quality jumbomoji

This commit is contained in:
Fedor Indutny 2024-06-21 18:35:56 -04:00 committed by GitHub
parent ac04d02d4f
commit 5e41701516
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 4566 additions and 137 deletions

15
protos/JumboPack.proto Normal file
View file

@ -0,0 +1,15 @@
syntax = "proto3";
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
package signalservice;
message JumbomojiPack {
repeated JumbomojiItem items = 1;
}
message JumbomojiItem {
string name = 1;
bytes image = 2;
}