Bump version to 2.2.34
This commit is contained in:
+7
-1
@@ -49,7 +49,13 @@ const TELEGRAM_TOKEN_SECRET_KEY = 'g1nation.telegram.botToken';
|
||||
* Astra Extension Entry Point
|
||||
*/
|
||||
export async function activate(context: vscode.ExtensionContext) {
|
||||
logInfo('Astra activating...');
|
||||
// Activation 시점 popup — 사용자 환경(Antigravity 등 VS Code 변종)에서 우리 vsix가
|
||||
// 실제로 활성화됐는지 결정적으로 가시화. 같은 이름의 빌트인이 우선해 우리 코드가
|
||||
// 활성화 안 되는 케이스를 즉시 발견 가능.
|
||||
const ext = vscode.extensions.getExtension('g1nation.astra');
|
||||
const version = ext?.packageJSON?.version || '(unknown)';
|
||||
void vscode.window.showInformationMessage(`📡 Astra v${version} activated (PID=${process.pid})`);
|
||||
logInfo(`Astra activating... version=${version} pid=${process.pid}`);
|
||||
|
||||
// Initialize Astra Path Resolver (.astra → ConnectAI/.astra/)
|
||||
initAstraPathResolver(context);
|
||||
|
||||
@@ -55,8 +55,10 @@ export async function handleSlashCommand(
|
||||
const arg = spaceIdx === -1 ? '' : trimmed.slice(spaceIdx + 1).trim();
|
||||
|
||||
logInfo(`[SLASH] handleSlashCommand start head=${head} arg="${arg.slice(0, 60)}" bridge=${getBridgeBaseUrl()}`);
|
||||
// 사용자가 OutputChannel을 안 봐도 진입 사실을 확인할 수 있도록 일회성 toast.
|
||||
// chunk(view, ...)가 webview 비활성 등으로 silently drop돼도 toast는 항상 표시.
|
||||
// 사용자가 OutputChannel을 안 봐도 진입 사실을 확인할 수 있도록 popup + statusbar.
|
||||
// chunk(view, ...)가 webview 비활성 등으로 silently drop돼도 popup은 화면 우측 하단에
|
||||
// 큼지막하게 표시된다. setStatusBarMessage는 보조.
|
||||
void vscode.window.showInformationMessage(`📻 Datacollect Radio: ${head} 진입`);
|
||||
void vscode.window.setStatusBarMessage(`📻 Datacollect Radio: ${head} 처리 중…`, 5000);
|
||||
chunk(view, `\n\n**📻 Datacollect Radio** · \`${head}\` · bridge=\`${getBridgeBaseUrl()}\`\n\n`);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user