From ed3fff4e5220fc30e1e08f384c2253be31549ea1 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Wed, 11 Dec 2024 13:13:54 -0600 Subject: [PATCH 1/3] chore: update codium custom marketplace --- .gitignore | 1 + README.md | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7a0c72b..504cb83 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ bin coverage extensions +.idea \ No newline at end of file diff --git a/README.md b/README.md index aa5a2d3..13d204c 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,12 @@ marketplace is running behind an https URL. Although not officially supported, you can follow the examples below to start using code-marketplace with VS Code and VSCodium: - [VS Code](https://github.com/eclipse/openvsx/wiki/Using-Open-VSX-in-VS-Code) -- [VSCodium](https://github.com/VSCodium/vscodium/blob/master/DOCS.md#how-to-use-the-vs-code-marketplace) +- [VSCodium](https://github.com/VSCodium/vscodium/blob/master/docs/index.md#howto-switch-marketplace) + - ``` + export VSCODE_GALLERY_SERVICE_URL="https:///api + export VSCODE_GALLERY_ITEM_URL="https:///item" + codium + ``` ## Missing features From 5c724e97f947c386fb6605c2fd6692bb59d1a1f7 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Wed, 11 Dec 2024 13:23:35 -0600 Subject: [PATCH 2/3] add product.json config override note --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 13d204c..e524b1f 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,7 @@ Although not officially supported, you can follow the examples below to start us - [VS Code](https://github.com/eclipse/openvsx/wiki/Using-Open-VSX-in-VS-Code) - [VSCodium](https://github.com/VSCodium/vscodium/blob/master/docs/index.md#howto-switch-marketplace) - ``` + # Or set a product.json file in `~/.config/VSCodium/product.json` export VSCODE_GALLERY_SERVICE_URL="https:///api export VSCODE_GALLERY_ITEM_URL="https:///item" codium From 41b6ceda5a31dfc2c784c64795e6f1777684eba1 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Wed, 11 Dec 2024 13:24:12 -0600 Subject: [PATCH 3/3] fix bullet indent --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e524b1f..26a49f0 100644 --- a/README.md +++ b/README.md @@ -166,10 +166,10 @@ Although not officially supported, you can follow the examples below to start us - [VS Code](https://github.com/eclipse/openvsx/wiki/Using-Open-VSX-in-VS-Code) - [VSCodium](https://github.com/VSCodium/vscodium/blob/master/docs/index.md#howto-switch-marketplace) - - ``` - # Or set a product.json file in `~/.config/VSCodium/product.json` + ``` export VSCODE_GALLERY_SERVICE_URL="https:///api export VSCODE_GALLERY_ITEM_URL="https:///item" + # Or set a product.json file in `~/.config/VSCodium/product.json` codium ```