Skip to content

Commit b972286

Browse files
1 parent d2cf4e8 commit b972286

6 files changed

Lines changed: 29 additions & 16 deletions

File tree

β€ŽSource/Effect/Bootstrap/Implementation/BootstrapStage.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export const stage5_Initialization = withSpan(
181181
// Dispatch completion event
182182
yield* Effect.sync(() => {
183183
window.dispatchEvent(
184-
new CustomEvent("vscode-wind-bootstrap-complete", {
184+
new CustomEvent("land-bootstrap-complete", {
185185
detail: { success: true },
186186
}),
187187
);

β€ŽSource/Function/Install/Function/ResolveConfiguration.tsβ€Ž

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ export async function ResolveConfiguration(): Promise<ISandboxConfiguration> {
9696
USER: Paths.homeDir?.split("/").pop() || "user",
9797
},
9898
product: {
99-
nameShort: "VSCode Wind",
100-
nameLong: "VSCode Wind",
101-
applicationName: "vscode-wind",
99+
nameShort: "FIDDEE",
100+
nameLong: "FIDDEE",
101+
applicationName: "land",
102102
version: "0.0.1",
103103
commit: "dev",
104104
date: new Date().toISOString(),
105-
urlProtocol: "vscode-wind",
106-
dataFolderName: "vscode-wind",
107-
serverApplicationName: "vscode-wind-server",
105+
urlProtocol: "land",
106+
dataFolderName: "land",
107+
serverApplicationName: "land-server",
108108
extensionProperties: {},
109109
defaultChatAgent: {
110110
extensionId: "vscode",
@@ -259,6 +259,14 @@ export async function ResolveConfiguration(): Promise<ISandboxConfiguration> {
259259
userDataDir: Paths.userDataDir || undefined,
260260
logsPath: LogsLocation || undefined,
261261

262+
// Extension paths β€” tells VS Code's NativeExtensionsScannerService where
263+
// to find built-in and user-installed extensions on disk.
264+
// appRoot + /extensions = builtinExtensionsPath (VS Code convention)
265+
builtinExtensionsPath: `${AppRoot}/extensions`,
266+
extensionsPath: Paths.userDataDir
267+
? `${Paths.userDataDir}/extensions`
268+
: undefined,
269+
262270
// Workspace - set from ?folder= URL param
263271
// folderUri is used by the browser workbench; workspace by the Electron workbench.
264272
folderUri: FolderUri,

β€ŽSource/Preload.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ if (IsTauri) {
394394
(window as any).vscode = Globals;
395395

396396
// Dispatch ready event
397-
window.dispatchEvent(new Event("vscode-wind-preload-ready"));
397+
window.dispatchEvent(new Event("land-preload-ready"));
398398
} else {
399399
}
400400

β€ŽTarget/Effect/Bootstrap/Implementation/BootstrapStage.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽTarget/Function/Install/Function/ResolveConfiguration.jsβ€Ž

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽTarget/Preload.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)