Version 2.55.0 Release: Rebranding to Astra
This commit is contained in:
+5
-5
@@ -18,10 +18,10 @@ import { SidebarChatProvider } from './sidebarProvider';
|
||||
import { HealthCheckMonitor } from './core/health';
|
||||
|
||||
/**
|
||||
* G1nation Extension Entry Point
|
||||
* Astra Extension Entry Point
|
||||
*/
|
||||
export async function activate(context: vscode.ExtensionContext) {
|
||||
logInfo('ConnectAI activating...');
|
||||
logInfo('Astra activating...');
|
||||
|
||||
// Start Environment Health Monitoring
|
||||
HealthCheckMonitor.runAllChecks();
|
||||
@@ -30,7 +30,7 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||
// 0. Validate Configuration
|
||||
const validation = validateConfig();
|
||||
if (!validation.valid) {
|
||||
vscode.window.showErrorMessage(`G1nation Configuration Error: ${validation.errors.join(' ')}`);
|
||||
vscode.window.showErrorMessage(`Astra Configuration Error: ${validation.errors.join(' ')}`);
|
||||
logError('Configuration validation failed.', { errors: validation.errors });
|
||||
}
|
||||
|
||||
@@ -144,12 +144,12 @@ async function _ensureBrainDir(context: vscode.ExtensionContext): Promise<string
|
||||
try {
|
||||
fs.mkdirSync(defaultDir, { recursive: true });
|
||||
// Create a welcome file
|
||||
fs.writeFileSync(path.join(defaultDir, 'Welcome.md'), "# Welcome to your Second Brain\n\nG1nation will store and retrieve knowledge from here.");
|
||||
fs.writeFileSync(path.join(defaultDir, 'Welcome.md'), "# Welcome to your Second Brain\n\nAstra will store and retrieve knowledge from here.");
|
||||
} catch (e) {}
|
||||
}
|
||||
return defaultDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* G1nation Extension Entry Point
|
||||
* Astra Extension Entry Point
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user