merge: integrate upstream main with local Makelore changes

This commit is contained in:
inman
2026-08-31 10:55:48 +08:00
128 changed files with 8278 additions and 3030 deletions

View File

@@ -73,8 +73,7 @@ export function createCodingProjectStorageFromStore(
export async function createElectronCodingProjectStorage(): Promise<CodingProjectStorage> {
const Store = (await import('electron-store')).default;
const store = new Store<{ projects?: CodingProjectStoreData }>({
// Legacy installed-user storage identity. Renaming it would orphan projects.
name: 'opencode-projects',
name: 'makelore-projects',
});
return createCodingProjectStorageFromStore(store, 'projects');
}