From b075f1e9ac18d166582baee7aa9b9e4d79720671 Mon Sep 17 00:00:00 2001 From: Narasimha-sc <166327228+Narasimha-sc@users.noreply.github.com> Date: Mon, 18 May 2026 17:31:57 +0000 Subject: [PATCH] plans: fix file count and terminal title description The "Files changed" footer claimed two file-chooser dialogs and a terminal titled "SimpleX"; there are three file-chooser dialogs and the terminal already uses the localized chat_console string resource. Line numbers updated to current. --- plans/2026-05-18-desktop-taskbar-unread-count-impl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plans/2026-05-18-desktop-taskbar-unread-count-impl.md b/plans/2026-05-18-desktop-taskbar-unread-count-impl.md index 55e5c5483c..3777a9caf5 100644 --- a/plans/2026-05-18-desktop-taskbar-unread-count-impl.md +++ b/plans/2026-05-18-desktop-taskbar-unread-count-impl.md @@ -69,7 +69,7 @@ Both `ChatModel.users` (a `SnapshotStateList` from `mutableStateListOf |---|---| | `apps/multiplatform/common/src/desktopMain/kotlin/chat/simplex/common/DesktopApp.kt` | Replace `title = "SimpleX"` (line 130) with a `title = title` parameter computed from a `derivedStateOf { … }` block immediately above the `Window(…)` call. `MsgFilter` is reachable via the existing wildcard `import chat.simplex.common.model.*` (line 16); no new import is needed because we qualify the enum constants (`MsgFilter.All`, etc.). | -That is the only file changed. The two file-chooser dialog titles (`DesktopApp.kt:136, 147, 158`) and the developer Terminal window title (line 213) remain as-is per the spec's scope. +That is the only file changed. The three file-chooser dialog titles (`DesktopApp.kt:156, 167, 178`) remain `"SimpleX"`; the developer Terminal window (line 233) continues to use its localized `chat_console` string resource. Both are out of scope per the spec. No new resources, no new strings, no `build.gradle.kts` change, no `commonMain` change, no Android-side change.