docs(release): note rollback to last good design

This commit is contained in:
Codex
2026-06-09 00:58:59 +07:00
parent 20a260d0cc
commit 8176df3ca2
3 changed files with 44 additions and 3 deletions

View File

@@ -21,6 +21,36 @@ export type ReleaseNoteItem = {
export type ReleaseNotes = Record<Language, ReleaseNoteItem[]>
export const RELEASE_NOTES: Record<string, ReleaseNotes> = {
'0.7.1': {
ru: [
{
title: 'Вернули последний удачный дизайн',
detail:
'Редизайн 0.7.0 откатан: интерфейс снова выглядит как сохраненная версия “последнее-удачное”.',
tag: 'fix'
},
{
title: 'Откат придет через автообновление',
detail:
'Версия 0.7.1 опубликована как обычный релиз, чтобы установленная 0.7.0 сама вернулась к старому виду.',
tag: 'fix'
}
],
en: [
{
title: 'Restored the last good design',
detail:
'The 0.7.0 redesign was rolled back: the UI is back to the saved last-good version.',
tag: 'fix'
},
{
title: 'Rollback ships through auto-update',
detail:
'Version 0.7.1 is a normal release so installed 0.7.0 copies can return to the old look automatically.',
tag: 'fix'
}
]
},
'0.6.6': {
ru: [
{