Skip to content

Commit 8b30d0f

Browse files
committed
Marked 1674 as stable release
1 parent 24ef4ad commit 8b30d0f

File tree

1 file changed

+5
-1
lines changed
  • app/src/main/java/org/thunderdog/challegram/telegram

1 file changed

+5
-1
lines changed

‎app/src/main/java/org/thunderdog/challegram/telegram/Tdlib.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,10 @@ public boolean checkChangeLogs (boolean alreadySent, boolean test) {
15341534
makeUpdateText(0, 25, 6, APP_RELEASE_VERSION_2023_APRIL, "https://telegra.ph/Telegram-X-04-02", functions, updates, false);
15351535
}
15361536
if (checkVersion(prevVersion, APP_RELEASE_VERSION_2023_AUGUST, test)) {
1537-
makeUpdateText(0, 25, 10, APP_RELEASE_VERSION_2023_AUGUST, "https://telegra.ph/Telegram-X-08-02", functions, updates, true);
1537+
makeUpdateText(0, 25, 10, APP_RELEASE_VERSION_2023_AUGUST, "https://telegra.ph/Telegram-X-08-02", functions, updates, false);
1538+
}
1539+
if (checkVersion(prevVersion, APP_RELEASE_VERSION_2023_DECEMBER, test)) {
1540+
makeUpdateText(0, 25, 10, APP_RELEASE_VERSION_2023_DECEMBER, "https://telegra.ph/Telegram-X-2023-12-31", functions, updates, true);
15381541
}
15391542
if (!updates.isEmpty()) {
15401543
incrementReferenceCount(REFERENCE_TYPE_JOB); // starting task
@@ -1594,6 +1597,7 @@ public boolean checkChangeLogs (boolean alreadySent, boolean test) {
15941597
private static final int APP_RELEASE_VERSION_2023_MARCH_2 = 1615; // Bugfixes to the previous release. 15 March, 2023: https://t.me/tgx_android/305
15951598
private static final int APP_RELEASE_VERSION_2023_APRIL = 1624; // Emoji 15.0, more recent stickers & more + critical TDLIb upgrade. 2 April, 2023: https://telegra.ph/Telegram-X-04-02
15961599
private static final int APP_RELEASE_VERSION_2023_AUGUST = 1646; // Translation, Advanced Text Formatting, Emoji Status, tgcalls, reproducible TDLib & more. 3 August, 2023: https://telegra.ph/Telegram-X-08-02
1600+
private static final int APP_RELEASE_VERSION_2023_DECEMBER = 1674; // Custom emoji, select link preview, archive settings, in-app avatar picker, group chat tools, & more. 31st December, 2023 (full roll-out in January 2024): https://telegra.ph/Telegram-X-2023-12-31
15971601

15981602
// Startup
15991603

0 commit comments

Comments
 (0)