Update emoji to unicode 17.
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 127 KiB |
|
Before Width: | Height: | Size: 209 KiB After Width: | Height: | Size: 179 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 97 KiB |
BIN
app/src/main/assets/emoji/People_10.webp
Normal file
|
After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 221 KiB After Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 202 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 298 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 199 KiB After Width: | Height: | Size: 156 KiB |
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 208 KiB After Width: | Height: | Size: 200 KiB |
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 94 KiB |
@@ -195,9 +195,10 @@ public class ApplicationMigrations {
|
||||
static final int STICKER_PACK_ADDITION_2 = 151;
|
||||
static final int DELETED_BY_DB_MIGRATION = 152;
|
||||
static final int RELEASE_CHANNEL_RECIPIENT_FIX = 153;
|
||||
static final int EMOJI_VERSION_13 = 154;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 153;
|
||||
public static final int CURRENT_VERSION = 154;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -904,6 +905,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.RELEASE_CHANNEL_RECIPIENT_FIX, new ReleaseChannelRecipientFixMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.EMOJI_VERSION_13) {
|
||||
jobs.put(Version.EMOJI_VERSION_13, new EmojiDownloadMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||