feat(dashboard): make overview action-first
This commit is contained in:
@@ -21,6 +21,48 @@ export type ReleaseNoteItem = {
|
||||
export type ReleaseNotes = Record<Language, ReleaseNoteItem[]>
|
||||
|
||||
export const RELEASE_NOTES: Record<string, ReleaseNotes> = {
|
||||
'0.6.5': {
|
||||
ru: [
|
||||
{
|
||||
title: 'Главный экран стал обзором действий',
|
||||
detail:
|
||||
'Верхний заголовок теперь показывает состояние: что сделать сейчас, что ждёт, пауза или встреча.',
|
||||
tag: 'new'
|
||||
},
|
||||
{
|
||||
title: 'Исправлен запуск с Windows',
|
||||
detail:
|
||||
'Проверка автозапуска теперь использует тот же путь и аргументы, что и запись в Windows.',
|
||||
tag: 'fix'
|
||||
},
|
||||
{
|
||||
title: 'Discord больше не ставит перерывы на паузу',
|
||||
detail:
|
||||
'Авто-пауза встреч реагирует на Zoom, Teams, Webex и Slack-huddle, но не на обычный Discord.',
|
||||
tag: 'fix'
|
||||
}
|
||||
],
|
||||
en: [
|
||||
{
|
||||
title: 'The main screen is now an action overview',
|
||||
detail:
|
||||
'The header shows the current state: what to do now, what is due, pause or meeting.',
|
||||
tag: 'new'
|
||||
},
|
||||
{
|
||||
title: 'Fixed Start with Windows',
|
||||
detail:
|
||||
'Autostart now reads Windows login items with the same path and arguments it writes.',
|
||||
tag: 'fix'
|
||||
},
|
||||
{
|
||||
title: 'Discord no longer pauses breaks',
|
||||
detail:
|
||||
'Meeting auto-pause still handles Zoom, Teams, Webex and Slack-huddle, but ignores Discord.',
|
||||
tag: 'fix'
|
||||
}
|
||||
]
|
||||
},
|
||||
'0.6.4': {
|
||||
ru: [
|
||||
{
|
||||
@@ -193,7 +235,7 @@ export const RELEASE_NOTES: Record<string, ReleaseNotes> = {
|
||||
{
|
||||
title: 'Видно когда мы молчим из-за ВКС',
|
||||
detail:
|
||||
'Запущен Zoom/Teams — на Dashboard баннер «Не дёргаем — ты на встрече».',
|
||||
'Запущен Zoom/Teams — на Dashboard появляется баннер активной встречи.',
|
||||
tag: 'new'
|
||||
},
|
||||
{
|
||||
@@ -276,7 +318,7 @@ export const RELEASE_NOTES: Record<string, ReleaseNotes> = {
|
||||
{
|
||||
title: 'Авто-пауза на ВКС',
|
||||
detail:
|
||||
'Не дёргает напоминаниями, если запущен Zoom/Teams/Discord/Webex/Slack-huddle.',
|
||||
'Ставит напоминания на паузу, если запущен Zoom/Teams/Webex/Slack-huddle.',
|
||||
tag: 'new'
|
||||
},
|
||||
{
|
||||
@@ -323,7 +365,7 @@ export const RELEASE_NOTES: Record<string, ReleaseNotes> = {
|
||||
{
|
||||
title: 'Meeting auto-pause',
|
||||
detail:
|
||||
'No reminders while Zoom/Teams/Discord/Webex/Slack-huddle is running.',
|
||||
'Pauses reminders while Zoom/Teams/Webex/Slack-huddle is running.',
|
||||
tag: 'new'
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user