-
Notifications
You must be signed in to change notification settings - Fork 47
docs: rebrand windsurf references to devin desktop #1086
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -60,7 +60,7 @@ async function doActivate( | |||||
| // This is janky, but that's alright since it provides such minimal | ||||||
| // functionality to the extension. | ||||||
| // | ||||||
| // Cursor and VSCode are covered by ms remote, and the only other is windsurf for now | ||||||
| // Cursor and VSCode are covered by ms remote, and the only other is Devin Desktop for now | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| // Means that vscodium is not supported by this for now | ||||||
|
|
||||||
| const remoteSshExtension = getRemoteSshExtension(); | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -488,7 +488,7 @@ export class SshProcessMonitor implements vscode.Disposable { | |||||
|
|
||||||
| /** | ||||||
| * Finds the Remote SSH extension's log file path. | ||||||
| * Tries extension-specific folder first (Cursor, Windsurf, Antigravity), | ||||||
| * Tries extension-specific folder first (Cursor, Devin Desktop, Antigravity), | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| * then output_logging_ fallback (MS VS Code). | ||||||
| */ | ||||||
| async function findRemoteSshLogPath( | ||||||
|
|
@@ -498,7 +498,7 @@ async function findRemoteSshLogPath( | |||||
| ): Promise<string | undefined> { | ||||||
| const logsParentDir = path.dirname(codeLogDir); | ||||||
|
|
||||||
| // Try extension-specific folder (for VS Code clones like Cursor, Windsurf) | ||||||
| // Try extension-specific folder (for VS Code clones like Cursor, Devin Desktop) | ||||||
| try { | ||||||
| const extensionLogDir = path.join(logsParentDir, extensionId); | ||||||
| const remoteSshLog = await findSshLogInDir(extensionLogDir); | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -106,7 +106,7 @@ function getConfiguredServerDataPath( | |||||
| "serverInstallPath", | ||||||
| {}, | ||||||
| ); | ||||||
| // Windsurf and Antigravity have no install path setting; their | ||||||
| // Devin Desktop and Antigravity have no install path setting; their | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| // servers always live in the home default. | ||||||
| let installPath: string | undefined; | ||||||
| if (extensionId === "jeanp413.open-remote-ssh") { | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -24,7 +24,7 @@ export function findPort(text: string): number | null { | |||||
| const lastMatch = allMatches[allMatches.length - 1]; | ||||||
| // Each capture group corresponds to a different Remote SSH extension log format: | ||||||
| // [0] full match, [1] and [2] ms-vscode-remote.remote-ssh, | ||||||
| // [3] windsurf/open-remote-ssh/antigravity, [4] anysphere.remote-ssh | ||||||
| // [3] devin/open-remote-ssh/antigravity, [4] anysphere.remote-ssh | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| const portStr = lastMatch[1] || lastMatch[2] || lastMatch[3] || lastMatch[4]; | ||||||
| if (!portStr) { | ||||||
| return null; | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.