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

41 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
Профили и аватарки
- Добавлен полноэкранный просмотр аватарок в чужом профиле (включая системные аккаунты)
- Исправлено отображение даты аватарки: устранён некорректный год (например, 58154)
Сессии и вход
- Добавлен кэш сессии в памяти процесса: повторный пароль не запрашивается, пока процесс жив
- Кэш сессии корректно очищается при выходе, переключении и удалении аккаунта
Интерфейс
- Исправлено центрирование blur-фона у системных аватарок
- Унифицировано определение темы для verified-галочек
- В списке чатов verified-галочки сделаны синими в светлой теме (включая system light)
""".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)
}