Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Editor/Code/CodeFork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ public record CodeFork : IAppInfo
UserDataDirName = ".windsurf"
},
new()
{
Name = "Devin",
WindowsDefaultDirName = "Devin",
WindowsExeName = "Devin.exe",
MacAppName = "Devin.app",
LinuxExeName = "Devin",
UserDataDirName = ".devin"
},
new()
{
Name = "Windsurf Next",
WindowsDefaultDirName = "Windsurf Next",
Expand Down Expand Up @@ -108,7 +117,7 @@ public record CodeFork : IAppInfo
MacAppName = "VSCodium.app",
LinuxExeName = "codium",
UserDataDirName = ".vscodium",
LatestLanguageVersion = new Version(13, 0)
LatestLanguageVersion = new Version(13, 0)
}
};

Expand Down
4 changes: 3 additions & 1 deletion Editor/MacOSAppDiscover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public List<string> GetCandidatePaths()
var candidateDirs = new[]
{
"/Applications",
"/Applications/IDE",
"/Applications/Others",
"/System/Applications",
"/usr/local/bin",
"/opt/homebrew/bin",
Expand Down Expand Up @@ -142,4 +144,4 @@ public bool IsCandidate(string exePath)
return File.Exists(exePath) && exePath.EndsWith(executableName, StringComparison.OrdinalIgnoreCase);
}
}
}
}
8 changes: 0 additions & 8 deletions Editor/Plugins.meta

This file was deleted.