Files
mobile-android/app/src/main/java/com/rosetta/messenger/data/ReleaseNotes.kt

40 lines
1.9 KiB
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.rosetta.messenger.data
/**
* Release notes for "Rosetta Updates" system messages.
*
* When releasing a new version, update [RELEASE_NOTICE] below.
* The text will be sent once to each user after they update the app.
*/
object ReleaseNotes {
/**
* Current release notice shown to users after update.
* [VERSION_PLACEHOLDER] will be replaced with the actual version from BuildConfig.
*/
const val VERSION_PLACEHOLDER = "{version}"
val RELEASE_NOTICE = """
Update v$VERSION_PLACEHOLDER
Что обновлено после версии 1.2.4
Статусы отправки и прочтения
- Исправлены ложные двойные галочки у фото и медиа-сообщений до фактической доставки
- Исходящие сообщения теперь остаются в ожидании до реального PacketDelivery с сервера
- PacketRead больше не переводит недоставленные сообщения в «прочитано»
- Синхронизация статусов между БД, кэшем и UI стала стабильнее в личных чатах и группах
Надёжность отображения
- Убраны ложные переходы статусов при быстрых событиях синхронизации
- Логика read receipts приведена к более корректному серверному подтверждению
""".trimIndent()
fun getNotice(version: String): String =
RELEASE_NOTICE.replace(VERSION_PLACEHOLDER, version)
/** Hash of current notice text — used to re-send if text changed within the same version */
val noticeHash: String
get() = RELEASE_NOTICE.hashCode().toString(16)
}