feat(settings): 헤더 빌드 버전 배지 (v2.2.207)

Settings 헤더에 현재 확장 버전 표시(provider가 __VERSION__ 주입). 새 vsix
로딩 여부 확인 마커.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 10:38:22 +09:00
parent 116dafd3cf
commit b94e6ad1da
5 changed files with 21 additions and 3 deletions
+12
View File
@@ -24,6 +24,18 @@ body {
margin: 0;
}
/* 빌드 버전 배지 — 이 값이 보이면 새 빌드가 로딩된 것(검증 마커). */
.ver {
font-size: 10px;
font-weight: 600;
color: var(--vscode-descriptionForeground);
border: 1px solid var(--vscode-panel-border);
border-radius: 10px;
padding: 1px 7px;
margin-left: 8px;
vertical-align: middle;
}
.section {
border: 1px solid var(--vscode-panel-border);
border-radius: 8px;
+1 -1
View File
@@ -8,7 +8,7 @@
</head>
<body>
<header class="hd">
<h1>Astra Settings</h1>
<h1>Astra Settings <span class="ver" id="settingsVersion">v__VERSION__</span></h1>
<button id="openVscodeSettings" class="link">VS Code Settings 열기</button>
</header>