Skip to content

Commit

Permalink
feat(desktop): add new experimental IDEs (marimo, zed, VSCodium, posi…
Browse files Browse the repository at this point in the history
…tron, jupyter desktop, dataspell)
  • Loading branch information
pascalbreuninger committed Nov 13, 2024
1 parent 3098f52 commit b04e01d
Show file tree
Hide file tree
Showing 10 changed files with 132 additions and 2 deletions.
8 changes: 8 additions & 0 deletions desktop/src-tauri/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ pub struct Settings {
experimental_vscode_insiders: bool,
#[serde(rename = "experimental_cursor")]
experimental_cursor: bool,
#[serde(rename = "experimental_jupyterDesktop")]
experimental_jupyter_desktop: bool,
#[serde(rename = "experimental_marimo")]
experimental_marimo: bool,
#[serde(rename = "experimental_codium")]
experimental_codium: bool,
#[serde(rename = "experimental_zed")]
experimental_zed: bool,
#[serde(rename = "experimental_positron")]
experimental_positron: bool,
#[serde(rename = "experimental_devPodPro")]
Expand Down
6 changes: 5 additions & 1 deletion desktop/src/contexts/SettingsContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ const initialSettings: TSettings = {
experimental_jupyterNotebooks: true,
experimental_vscodeInsiders: true,
experimental_cursor: true,
experimental_positron: false,
experimental_positron: true,
experimental_jupyterDesktop: true,
experimental_zed: true,
experimental_codium: true,
experimental_marimo: true,
experimental_devPodPro: false,
}
function getSettingKeys(): readonly TSetting[] {
Expand Down
4 changes: 4 additions & 0 deletions desktop/src/gen/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export interface Settings {
experimental_jupyterNotebooks: boolean
experimental_vscodeInsiders: boolean
experimental_cursor: boolean
experimental_jupyterDesktop: boolean
experimental_marimo: boolean
experimental_codium: boolean
experimental_zed: boolean
experimental_positron: boolean
experimental_devPodPro: boolean
experimental_colorMode: ColorMode
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/gen/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export * from "./Asset"
export * from "./Author"
export * from "./ColorMode"
export * from "./index"
export * from "./Release"
export * from "./Settings"
export * from "./SidebarPosition"
export * from "./Zoom"
export * from "./index"
9 changes: 9 additions & 0 deletions desktop/src/images/codium.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions desktop/src/images/dataspell.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b04e01d

Please sign in to comment.