release: v2.33.0 - Stabilized baseline build after revert
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"name": "g1nation",
|
"name": "g1nation",
|
||||||
"displayName": "G1nation",
|
"displayName": "G1nation",
|
||||||
"description": "High-performance autonomous local AI coding agent for VS Code. Features vectorized inference, asynchronous task management, and 100% offline processing.",
|
"description": "High-performance autonomous local AI coding agent for VS Code. Features vectorized inference, asynchronous task management, and 100% offline processing.",
|
||||||
"version": "2.32.0",
|
"version": "2.33.0",
|
||||||
"publisher": "connectailab",
|
"publisher": "connectailab",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/icon.png",
|
"icon": "assets/icon.png",
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
const configStore = new Map();
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
get: (key, fallback) => configStore.has(key) ? configStore.get(key) : fallback,
|
||||||
|
update: async (key, value) => {
|
||||||
|
configStore.set(key, value);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
workspace: {
|
||||||
|
workspaceFolders: [],
|
||||||
|
getConfiguration: () => config,
|
||||||
|
fs: {
|
||||||
|
writeFile: async () => {},
|
||||||
|
delete: async () => {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
window: {
|
||||||
|
createOutputChannel: () => ({
|
||||||
|
appendLine: () => {},
|
||||||
|
show: () => {},
|
||||||
|
dispose: () => {}
|
||||||
|
}),
|
||||||
|
createStatusBarItem: () => ({
|
||||||
|
text: '',
|
||||||
|
tooltip: '',
|
||||||
|
command: '',
|
||||||
|
backgroundColor: undefined,
|
||||||
|
show: () => {},
|
||||||
|
hide: () => {},
|
||||||
|
dispose: () => {}
|
||||||
|
}),
|
||||||
|
showInformationMessage: async () => undefined,
|
||||||
|
showWarningMessage: async () => undefined,
|
||||||
|
showErrorMessage: async () => undefined
|
||||||
|
},
|
||||||
|
StatusBarAlignment: { Right: 2 },
|
||||||
|
ThemeColor: class ThemeColor {
|
||||||
|
constructor(id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Uri: {
|
||||||
|
file: (fsPath) => ({ fsPath, scheme: 'file' }),
|
||||||
|
joinPath: (base, ...parts) => ({ fsPath: [base.fsPath, ...parts].join('/') })
|
||||||
|
},
|
||||||
|
ProgressLocation: { Notification: 15 },
|
||||||
|
ConfigurationTarget: { Global: 1, Workspace: 2 }
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user