fix: show time format setting in vscode

This commit is contained in:
Bohdan Triapitsyn
2026-06-03 23:10:58 +03:00
parent 04c9aa57dd
commit 84df7fa24f
4 changed files with 34 additions and 2 deletions
@@ -130,7 +130,7 @@ const VisualSectionContent: React.FC = () => {
'pwaOrientation',
'mobileKeyboardMode',
'timeFormat',
'weekStart',
...(!isVSCode ? ['weekStart' as const] : []),
'fontSize',
'terminalFontSize',
'spacing',
@@ -821,7 +821,7 @@ export const OpenChamberVisualSettings: React.FC<OpenChamberVisualSettingsProps>
</Select>
</div>
{!isVSCode && (shouldShow('timeFormat') || shouldShow('weekStart')) && (
{(shouldShow('timeFormat') || shouldShow('weekStart')) && (
<div className="grid grid-cols-1 gap-2 py-1.5 md:grid-cols-[14rem_auto] md:gap-x-8 md:gap-y-2">
{shouldShow('timeFormat') && (
<div className="flex min-w-0 items-center gap-2">
+13
View File
@@ -1,3 +1,16 @@
## [1.12.1] - 2026-06-03
- Chat: completed turns can now show changed-file chips with per-file additions and deletions, controlled by a new Chat setting.
- Chat: LSP tool calls now show the operation, file, and cursor position more clearly, and JSON tool output can be toggled between formatted and raw views or copied.
- Chat: streaming messages now appear correctly after startup, and activity/status rows show for the active session.
- Chat: completed responses no longer lose late-arriving summaries, token counts, errors, structured output, or changed-file details.
- Chat: question cards now show an error or no-longer-pending message when submit or dismiss fails instead of silently doing nothing.
- Chat: the first prompt in a new session no longer gets stuck before sending.
- Sessions: session titles update from live session events, and the extension now consistently loads all existing OpenCode sessions.
- Sessions: recent sessions now stay visible inside project groups, and new or worktree sessions stay in the correct project/worktree group.
- Settings/OpenCode: OpenCode CLI path, update-notification preference, keyboard shortcuts, and protected-session settings now stay saved after changes.
- UI/Time: the time-format preference now applies to chat timestamps, usage reset times, scheduled tasks, passkeys, and usage last-updated times.
## [1.12.0] - 2026-06-03
- Chat: added customizable draft welcome starters from commands and skills, including guided commands for catch-up, debugging, exploration, and approach comparison.