mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-17 21:24:40 +10:00
Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1eff01d6f0 | ||
|
|
db8d1e7a8d | ||
|
|
c741ae3347 | ||
|
|
becd52f518 | ||
|
|
7ee4f2f735 | ||
|
|
3208188249 | ||
|
|
be445bcba6 | ||
|
|
3277bd4fa1 | ||
|
|
08b0b1b3e5 | ||
|
|
c46abc14ee | ||
|
|
5bd755a9cc | ||
|
|
1cbc6e55bf | ||
|
|
351460f992 | ||
|
|
f7e1c11ea7 | ||
|
|
50197bbeef | ||
|
|
b319b178ea | ||
|
|
2dab7cfcdf | ||
|
|
6a86200d38 | ||
|
|
c803059121 | ||
|
|
d529fd3c20 | ||
|
|
f817226abd | ||
|
|
353c002605 | ||
|
|
3f00a255b1 | ||
|
|
23152cf50f | ||
|
|
1f31a1c27b | ||
|
|
49eb715333 | ||
|
|
bbcdc2be11 | ||
|
|
dfd7ebbf85 | ||
|
|
e087f00ff1 | ||
|
|
79bc275386 | ||
|
|
851b5f2659 | ||
|
|
e5de9c3096 | ||
|
|
3b6954231f | ||
|
|
99840540ac | ||
|
|
3103c80234 | ||
|
|
6a4668040b | ||
|
|
02755e7599 | ||
|
|
36b06dd66b | ||
|
|
33a6670cad | ||
|
|
1ef601a79b | ||
|
|
c67c2ad9f5 | ||
|
|
34b399c05a |
@@ -20,3 +20,6 @@ indent_size = 2
|
|||||||
[*.patch]
|
[*.patch]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
||||||
|
|
||||||
|
[*.svg]
|
||||||
|
insert_final_newline = false
|
||||||
|
|||||||
57
.github/workflows/linux.yml
vendored
57
.github/workflows/linux.yml
vendored
@@ -9,7 +9,7 @@ on:
|
|||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
linux:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ${{ matrix.image }}
|
image: ${{ matrix.image }}
|
||||||
@@ -32,13 +32,13 @@ jobs:
|
|||||||
image: vscodium/vscodium-linux-build-agent:stretch-armhf
|
image: vscodium/vscodium-linux-build-agent:stretch-armhf
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install GH
|
- name: Install GH
|
||||||
run: ./install_gh.sh
|
run: ./install_gh.sh
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
@@ -93,9 +93,56 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|
||||||
- name: Update versions repo
|
- name: Update versions repo
|
||||||
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
||||||
run: ./update_version.sh
|
run: ./update_version.sh
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
||||||
GITHUB_USERNAME: ${{ github.repository_owner }}
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
||||||
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|
||||||
|
snap:
|
||||||
|
needs: release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
platform:
|
||||||
|
- amd64
|
||||||
|
# - arm64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Check version
|
||||||
|
run: ./stores/snapcraft/check_version.sh
|
||||||
|
env:
|
||||||
|
ARCHITECTURE: ${{ matrix.platform }}
|
||||||
|
SNAP_STORE_LOGIN: ${{ secrets.SNAP_STORE_LOGIN }}
|
||||||
|
|
||||||
|
# - uses: docker/setup-qemu-action@v1
|
||||||
|
# if: env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|
||||||
|
# - uses: diddlesnaps/snapcraft-multiarch-action@v1
|
||||||
|
# with:
|
||||||
|
# path: stores/snapcraft
|
||||||
|
# architecture: ${{ matrix.platform }}
|
||||||
|
# id: build
|
||||||
|
# if: env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|
||||||
|
# - uses: diddlesnaps/snapcraft-review-action@v1
|
||||||
|
# with:
|
||||||
|
# snap: ${{ steps.build.outputs.snap }}
|
||||||
|
# isClassic: 'true'
|
||||||
|
# if: env.SHOULD_DEPLOY == 'yes'
|
||||||
|
- uses: snapcore/action-build@v1
|
||||||
|
with:
|
||||||
|
path: stores/snapcraft
|
||||||
|
id: build
|
||||||
|
if: env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|
||||||
|
|
||||||
|
- uses: snapcore/action-publish@v1
|
||||||
|
with:
|
||||||
|
store_login: ${{ secrets.SNAP_STORE_LOGIN }}
|
||||||
|
snap: ${{ steps.build.outputs.snap }}
|
||||||
|
release: stable
|
||||||
|
if: env.SHOULD_DEPLOY == 'yes'
|
||||||
|
|||||||
6
.github/workflows/macos.yml
vendored
6
.github/workflows/macos.yml
vendored
@@ -26,10 +26,10 @@ jobs:
|
|||||||
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
|
|||||||
10
.github/workflows/windows.yml
vendored
10
.github/workflows/windows.yml
vendored
@@ -10,7 +10,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
windows:
|
windows:
|
||||||
runs-on: windows-2016
|
runs-on: windows-2019
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -23,10 +23,10 @@ jobs:
|
|||||||
vscode_arch: [x64, ia32, arm64]
|
vscode_arch: [x64, ia32, arm64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
run: npm install -g yarn
|
run: npm install -g yarn
|
||||||
|
|
||||||
- name: Setup Python 2
|
- name: Setup Python 2
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: '2.x'
|
python-version: '2.x'
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
|
|||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -2,6 +2,10 @@ vscode
|
|||||||
VS*/*
|
VS*/*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
build/linux/appimage/out
|
build/linux/appimage/out
|
||||||
|
build/linux/appimage/pkg2appimage.AppDir
|
||||||
|
build/linux/appimage/pkg2appimage-*.AppImage
|
||||||
|
build/linux/appimage/squashfs-root
|
||||||
|
build/linux/appimage/VSCodium
|
||||||
build/windows/msi/releasedir
|
build/windows/msi/releasedir
|
||||||
build/windows/rtf/Readme (Abridged).txt
|
build/windows/rtf/Readme (Abridged).txt
|
||||||
build/windows/rtf/TXT to RTF Converter.exe
|
build/windows/rtf/TXT to RTF Converter.exe
|
||||||
|
|||||||
24
DOCS.md
24
DOCS.md
@@ -11,6 +11,7 @@
|
|||||||
- [Migrating from Visual Studio Code to VSCodium](#migrating)
|
- [Migrating from Visual Studio Code to VSCodium](#migrating)
|
||||||
- [Sign in with GitHub](#signin-github)
|
- [Sign in with GitHub](#signin-github)
|
||||||
- [How do I run VSCodium in portable mode?](#portable)
|
- [How do I run VSCodium in portable mode?](#portable)
|
||||||
|
- [How do I fix the default file manager?](#file-manager)
|
||||||
- [How do I press and hold a key and have it repeat in VSCodium?](#press-and-hold)
|
- [How do I press and hold a key and have it repeat in VSCodium?](#press-and-hold)
|
||||||
- [How do I open VSCodium from the terminal?](#terminal-support)
|
- [How do I open VSCodium from the terminal?](#terminal-support)
|
||||||
- [From Linux .tar.gz](#from-linux-targz)
|
- [From Linux .tar.gz](#from-linux-targz)
|
||||||
@@ -82,13 +83,13 @@ with the content:
|
|||||||
|
|
||||||
### <a id="proprietary-debugging-tools"></a>Proprietary Debugging Tools
|
### <a id="proprietary-debugging-tools"></a>Proprietary Debugging Tools
|
||||||
|
|
||||||
The debugger provided with Microsoft's [C# extension](https://github.com/OmniSharp/omnisharp-vscode) as well as the (Windows) debugger provided with their [C++ extension](https://github.com/Microsoft/vscode-cpptools) are very restrictively licensed to only work with the offical Visual Studio Code build. See [this comment in the C# extension repo](https://github.com/OmniSharp/omnisharp-vscode/issues/2491#issuecomment-418811364) and [this comment in the C++ extension repo](https://github.com/Microsoft/vscode-cpptools/issues/21#issuecomment-248349017).
|
The debugger provided with Microsoft's [C# extension](https://github.com/OmniSharp/omnisharp-vscode) as well as the (Windows) debugger provided with their [C++ extension](https://github.com/Microsoft/vscode-cpptools) are very restrictively licensed to only work with the official Visual Studio Code build. See [this comment in the C# extension repo](https://github.com/OmniSharp/omnisharp-vscode/issues/2491#issuecomment-418811364) and [this comment in the C++ extension repo](https://github.com/Microsoft/vscode-cpptools/issues/21#issuecomment-248349017).
|
||||||
|
|
||||||
A workaround exists to get debugging working in C# projects, by using Samsung's opensource [netcoredbg](https://github.com/Samsung/netcoredbg) package. See [this comment](https://github.com/VSCodium/vscodium/issues/82#issue-409806641) for instructions on how to set that up.
|
A workaround exists to get debugging working in C# projects, by using Samsung's opensource [netcoredbg](https://github.com/Samsung/netcoredbg) package. See [this comment](https://github.com/VSCodium/vscodium/issues/82#issue-409806641) for instructions on how to set that up.
|
||||||
|
|
||||||
### <a id="proprietary-extensions"></a>Proprietary Extensions
|
### <a id="proprietary-extensions"></a>Proprietary Extensions
|
||||||
|
|
||||||
Like the debuggers mentioned above, some extensions you may find in the marketplace (like the [Remote Development Extensions](https://code.visualstudio.com/docs/remote/remote-overview)) only function with the offical Visual Studio Code build. You can work around this by adding the extension's internal ID (found on the extension's page) to the `extensionAllowedProposedApi` property of the product.json in your VSCodium installation. For example:
|
Like the debuggers mentioned above, some extensions you may find in the marketplace (like the [Remote Development Extensions](https://code.visualstudio.com/docs/remote/remote-overview)) only function with the official Visual Studio Code build. You can work around this by adding the extension's internal ID (found on the extension's page) to the `extensionAllowedProposedApi` property of the product.json in your VSCodium installation. For example:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
"extensionAllowedProposedApi": [
|
"extensionAllowedProposedApi": [
|
||||||
@@ -134,10 +135,27 @@ Select the scopes dependending of the extension which need access to GitHub. (Gi
|
|||||||
If you are getting the error `Writing login information to the keychain failed with error 'The name org.freedesktop.secrets was not provided by any .service files'.`, you need to install the package `gnome-keyring`.
|
If you are getting the error `Writing login information to the keychain failed with error 'The name org.freedesktop.secrets was not provided by any .service files'.`, you need to install the package `gnome-keyring`.
|
||||||
|
|
||||||
## <a id="portable"></a>How do I run VSCodium in portable mode?
|
## <a id="portable"></a>How do I run VSCodium in portable mode?
|
||||||
You can follow the [Portable Mode instructions](https://code.visualstudio.com/docs/editor/portable) from the Visual Studio Code website.
|
You can follow the [Portable Mode instructions](https://code.visualstudio.com/docs/editor/portable) from the Visual Studio Code website.
|
||||||
- **Windows** / **Linux** : the instructions can be followed as written.
|
- **Windows** / **Linux** : the instructions can be followed as written.
|
||||||
- **macOS** : portable mode is enabled by the existence of a specially named folder. For Visual Studio Code that folder name is `code-portable-data`. For VSCodium, that folder name is `codium-portable-data`. So to enable portable mode for VSCodium on Mac OS, follow the instructions outlined in the [link above](https://code.visualstudio.com/docs/editor/portable), but create a folder named `codium-portable-data` instead of `code-portable-data`.
|
- **macOS** : portable mode is enabled by the existence of a specially named folder. For Visual Studio Code that folder name is `code-portable-data`. For VSCodium, that folder name is `codium-portable-data`. So to enable portable mode for VSCodium on Mac OS, follow the instructions outlined in the [link above](https://code.visualstudio.com/docs/editor/portable), but create a folder named `codium-portable-data` instead of `code-portable-data`.
|
||||||
|
|
||||||
|
## <a id="file-manager"></a>How do I fix the default file manager (Linux)?
|
||||||
|
|
||||||
|
In some case, VSCodium becomes the file manager used to open directories (instead of apps like Dolphin or Nautilus).<br />
|
||||||
|
It's due to that no application was defined as the default file manager and so the system is using the latest capable application.
|
||||||
|
|
||||||
|
To set the default app, create the file `~/.config/mimeapps.list` with the content like:
|
||||||
|
```
|
||||||
|
[Default Applications]
|
||||||
|
inode/directory=org.gnome.Nautilus.desktop;
|
||||||
|
```
|
||||||
|
|
||||||
|
You can find your regular file manager with the command:
|
||||||
|
```
|
||||||
|
> grep directory /usr/share/applications/mimeinfo.cache
|
||||||
|
inode/directory=codium.desktop;org.gnome.Nautilus.desktop;
|
||||||
|
```
|
||||||
|
|
||||||
## <a id="press-and-hold"></a>How do I press and hold a key and have it repeat in VSCodium (Mac)?
|
## <a id="press-and-hold"></a>How do I press and hold a key and have it repeat in VSCodium (Mac)?
|
||||||
|
|
||||||
This is a common question for Visual Studio Code and the procedure is slightly different in VSCodium because the `defaults` path is different.
|
This is a common question for Visual Studio Code and the procedure is slightly different in VSCodium because the `defaults` path is different.
|
||||||
|
|||||||
33
README.md
33
README.md
@@ -7,13 +7,16 @@
|
|||||||
|
|
||||||
<div id="badges" align="center">
|
<div id="badges" align="center">
|
||||||
|
|
||||||
[](https://github.com/vscodium/vscodium/releases)
|
[](https://github.com/vscodium/vscodium/releases)
|
||||||
[](https://dev.azure.com/vscodium/VSCodium/_build?definitionId=1)
|
|
||||||
[](https://github.com/VSCodium/vscodium/blob/master/LICENSE)
|
[](https://github.com/VSCodium/vscodium/blob/master/LICENSE)
|
||||||
[](https://gitter.im/VSCodium/Lobby)
|
[](https://gitter.im/VSCodium/Lobby)
|
||||||
[](https://snapcraft.io/codium)
|
[](https://snapcraft.io/codium)
|
||||||
[](https://snapcraft.io/codium)
|
[](https://snapcraft.io/codium)
|
||||||
|
|
||||||
|
[](https://github.com/VSCodium/vscodium/actions/workflows/linux.yml?query=branch%3Amaster)
|
||||||
|
[](https://github.com/VSCodium/vscodium/actions/workflows/macos.yml?query=branch%3Amaster)
|
||||||
|
[](https://github.com/VSCodium/vscodium/actions/workflows/windows.yml?query=branch%3Amaster)
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
**This is not a fork. This is a repository of scripts to automatically build Microsoft's `vscode` repository into freely-licensed binaries with a community-driven default configuration.**
|
**This is not a fork. This is a repository of scripts to automatically build Microsoft's `vscode` repository into freely-licensed binaries with a community-driven default configuration.**
|
||||||
@@ -28,6 +31,7 @@
|
|||||||
- [Install with Package Manager](#install-with-package-manager)
|
- [Install with Package Manager](#install-with-package-manager)
|
||||||
- [Install on Arch Linux](#install-on-arch-linux)
|
- [Install on Arch Linux](#install-on-arch-linux)
|
||||||
- [Flatpak Option](#flatpak)
|
- [Flatpak Option](#flatpak)
|
||||||
|
- [Build](#build)
|
||||||
- [Why Does This Exist](#why)
|
- [Why Does This Exist](#why)
|
||||||
- [More Info](#more-info)
|
- [More Info](#more-info)
|
||||||
- [Supported Platforms](#supported-platforms)
|
- [Supported Platforms](#supported-platforms)
|
||||||
@@ -65,14 +69,14 @@ scoop install vscodium
|
|||||||
```
|
```
|
||||||
|
|
||||||
#### <a id="install-with-snap"></a>Install with snap (GNU/Linux)
|
#### <a id="install-with-snap"></a>Install with snap (GNU/Linux)
|
||||||
VSCodium is available in the [Snap Store](https://snapcraft.io/) as [Codium](https://snapcraft.io/codium), published by the [Snapcrafters](https://github.com/snapcrafters/codium) community.
|
VSCodium is available in the [Snap Store](https://snapcraft.io/) as [Codium](https://snapcraft.io/codium), thanks to the help of the [Snapcrafters](https://github.com/snapcrafters/codium) community.
|
||||||
If your GNU/Linux distribution has support for [snaps](https://snapcraft.io/docs/installing-snapd):
|
If your GNU/Linux distribution has support for [snaps](https://snapcraft.io/docs/installing-snapd):
|
||||||
```bash
|
```bash
|
||||||
snap install codium --classic
|
snap install codium --classic
|
||||||
```
|
```
|
||||||
|
|
||||||
#### <a id="install-with-package-manager"></a>Install with Package Manager (GNU/Linux)
|
#### <a id="install-with-package-manager"></a>Install with Package Manager (GNU/Linux)
|
||||||
You can always install using the downloads (deb, rpm, tar) on the [releases page](https://github.com/VSCodium/vscodium/releases), but you can also install using your favorite package manager and get automatic updates. [@paulcarroty](https://github.com/paulcarroty) has set up a repository with instructions [here](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo). Any issues installing VSCodium using your package manager should be directed to that repository's issue tracker.
|
You can always install using the downloads (deb, rpm, tar) on the [releases page](https://github.com/VSCodium/vscodium/releases), but you can also install using your favorite package manager and get automatic updates. [@paulcarroty](https://github.com/paulcarroty) has set up a repository with instructions [here](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo). Any issues installing VSCodium using your package manager should be directed to that repository's issue tracker.
|
||||||
|
|
||||||
#### <a id="install-on-arch-linux"></a>Install on Arch Linux
|
#### <a id="install-on-arch-linux"></a>Install on Arch Linux
|
||||||
VSCodium is available in [AUR](https://wiki.archlinux.org/index.php/Arch_User_Repository) as package [vscodium-bin](https://aur.archlinux.org/packages/vscodium-bin/), maintained by [@binex-dsk](https://github.com/binex-dsk). An alternative package [vscodium-git](https://aur.archlinux.org/packages/vscodium-git/), maintained by [@cedricroijakkers](https://github.com/cedricroijakkers), is also available should you wish to compile from source yourself.
|
VSCodium is available in [AUR](https://wiki.archlinux.org/index.php/Arch_User_Repository) as package [vscodium-bin](https://aur.archlinux.org/packages/vscodium-bin/), maintained by [@binex-dsk](https://github.com/binex-dsk). An alternative package [vscodium-git](https://aur.archlinux.org/packages/vscodium-git/), maintained by [@cedricroijakkers](https://github.com/cedricroijakkers), is also available should you wish to compile from source yourself.
|
||||||
@@ -85,24 +89,29 @@ flatpak install flathub com.vscodium.codium
|
|||||||
flatpak run com.vscodium.codium
|
flatpak run com.vscodium.codium
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## <a id="build"></a>Build
|
||||||
|
Build instructions can be found [here](https://github.com/VSCodium/vscodium/blob/master/docs/build.md)
|
||||||
|
|
||||||
## <a id="why"></a>Why Does This Exist
|
## <a id="why"></a>Why Does This Exist
|
||||||
This repository contains build files to generate free release binaries of Microsoft's VS Code. When we speak of "free software", we're talking about freedom, not price.
|
This repository contains build files to generate free release binaries of Microsoft's VS Code. When we speak of "free software", we're talking about freedom, not price.
|
||||||
|
|
||||||
Microsoft's releases of Visual Studio Code are licensed under [this not-FLOSS license](https://code.visualstudio.com/license) and contain telemetry/tracking. According to [this comment](https://github.com/Microsoft/vscode/issues/60#issuecomment-161792005) from a Visual Studio Code maintainer:
|
Microsoft's releases of Visual Studio Code are licensed under [this not-FLOSS license](https://code.visualstudio.com/license) and contain telemetry/tracking. According to [this comment](https://github.com/Microsoft/vscode/issues/60#issuecomment-161792005) from a Visual Studio Code maintainer:
|
||||||
|
|
||||||
> When we [Microsoft] build Visual Studio Code, we do exactly this. We clone the vscode repository, we lay down a customized product.json that has Microsoft specific functionality (telemetry, gallery, logo, etc.), and then produce a build that we release under our license.
|
> When we [Microsoft] build Visual Studio Code, we do exactly this. We clone the vscode repository, we lay down a customized product.json that has Microsoft specific functionality (telemetry, gallery, logo, etc.), and then produce a build that we release under our license.
|
||||||
>
|
>
|
||||||
> When you clone and build from the vscode repo, none of these endpoints are configured in the default product.json. Therefore, you generate a "clean" build, without the Microsoft customizations, which is by default licensed under the MIT license
|
> When you clone and build from the vscode repo, none of these endpoints are configured in the default product.json. Therefore, you generate a "clean" build, without the Microsoft customizations, which is by default licensed under the MIT license
|
||||||
|
|
||||||
This repo exists so that you don't have to download+build from source. The build scripts in this repo clone Microsoft's vscode repo, run the build commands, and upload the resulting binaries to [GitHub releases](https://github.com/VSCodium/vscodium/releases). __These binaries are licensed under the MIT license. Telemetry is disabled.__
|
This repo exists so that you don't have to download+build from source. The build scripts in this repo clone Microsoft's vscode repo, run the build commands, and upload the resulting binaries to [GitHub releases](https://github.com/VSCodium/vscodium/releases). __These binaries are licensed under the MIT license. Telemetry is disabled.__
|
||||||
|
|
||||||
If you want to build from source yourself, head over to [Microsoft's vscode repo](https://github.com/Microsoft/vscode) and follow their [instructions](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run). This repo exists to make it easier to get the latest version of MIT-licensed VS Code.
|
If you want to build from source yourself, head over to [Microsoft's vscode repo](https://github.com/Microsoft/vscode) and follow their [instructions](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run). This repo exists to make it easier to get the latest version of MIT-licensed VS Code.
|
||||||
|
|
||||||
Microsoft's build process (which we are running to build the binaries) does download additional files. This was brought up in [Microsoft/vscode#49159](https://github.com/Microsoft/vscode/issues/49159) and [Microsoft/vscode#45978](https://github.com/Microsoft/vscode/issues/45978). These are the packages downloaded during build:
|
Microsoft's build process (which we are running to build the binaries) does download additional files. This was brought up in [Microsoft/vscode#141340](https://github.com/Microsoft/vscode/issues/141340) and [Microsoft/vscode#45978](https://github.com/Microsoft/vscode/issues/45978). These are the packages downloaded during build:
|
||||||
|
|
||||||
- Extensions from the Microsoft Marketplace:
|
- Extensions from the Microsoft Marketplace:
|
||||||
- [ms-vscode.node-debug2](https://marketplace.visualstudio.com/items?itemName=ms-vscode.node-debug2)
|
- [ms-vscode.references-view](https://marketplace.visualstudio.com/items?itemName=ms-vscode.references-view)
|
||||||
- [ms-vscode.node-debug](https://marketplace.visualstudio.com/items?itemName=ms-vscode.node-debug)
|
- [ms-vscode.js-debug-companion](https://marketplace.visualstudio.com/items?itemName=ms-vscode.js-debug-companion)
|
||||||
|
- [ms-vscode.js-debug](https://marketplace.visualstudio.com/items?itemName=ms-vscode.js-debug)
|
||||||
|
- [ms-vscode.vscode-js-profile-table](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-js-profile-table)
|
||||||
- From [Electron releases](https://github.com/electron/electron/releases) (using [gulp-atom-electron](https://github.com/joaomoreno/gulp-atom-electron))
|
- From [Electron releases](https://github.com/electron/electron/releases) (using [gulp-atom-electron](https://github.com/joaomoreno/gulp-atom-electron))
|
||||||
- electron
|
- electron
|
||||||
- ffmpeg
|
- ffmpeg
|
||||||
@@ -120,10 +129,10 @@ Please note that some Visual Studio Code extensions have licenses that restrict
|
|||||||
### How are the VSCodium binaries built?
|
### How are the VSCodium binaries built?
|
||||||
If you would like to see the commands we run to build `vscode` into VSCodium binaries, have a look at the workflow files in `.github/workflows` for Windows, GNU/Linux and macOS. These build files call all the other scripts in the repo. If you find something that doesn't make sense, feel free to ask about it [on Gitter](https://gitter.im/VSCodium/Lobby).
|
If you would like to see the commands we run to build `vscode` into VSCodium binaries, have a look at the workflow files in `.github/workflows` for Windows, GNU/Linux and macOS. These build files call all the other scripts in the repo. If you find something that doesn't make sense, feel free to ask about it [on Gitter](https://gitter.im/VSCodium/Lobby).
|
||||||
|
|
||||||
The builds are run every day, but exit early if there isn't a new release from Microsoft.
|
The builds are run every day, but exit early if there isn't a new release from Microsoft.
|
||||||
|
|
||||||
## <a id="supported-platforms"></a>Supported Platforms
|
## <a id="supported-platforms"></a>Supported Platforms
|
||||||
The minimal version is limitted by the core component Electron, you may want to check its [supported platform list](https://www.electronjs.org/docs/tutorial/support#supported-platforms).
|
The minimal version is limited by the core component Electron, you may want to check its [supported platform list](https://www.electronjs.org/docs/tutorial/support#supported-platforms).
|
||||||
- [x] macOS (`zip`, `dmg`) OS X 10.10 or newer x64
|
- [x] macOS (`zip`, `dmg`) OS X 10.10 or newer x64
|
||||||
- [x] macOS (`zip`, `dmg`) macOS 11.0 or newer arm64 via x64 emulation, see [status issue](https://github.com/VSCodium/vscodium/issues/597)
|
- [x] macOS (`zip`, `dmg`) macOS 11.0 or newer arm64 via x64 emulation, see [status issue](https://github.com/VSCodium/vscodium/issues/597)
|
||||||
- [x] GNU/Linux x64 (`deb`, `rpm`, `AppImage`, `tar.gz`)
|
- [x] GNU/Linux x64 (`deb`, `rpm`, `AppImage`, `tar.gz`)
|
||||||
@@ -133,7 +142,7 @@ The minimal version is limitted by the core component Electron, you may want to
|
|||||||
- [x] Windows 7 or newer x64
|
- [x] Windows 7 or newer x64
|
||||||
- [x] Windows 7 or newer x86
|
- [x] Windows 7 or newer x86
|
||||||
- [x] Windows 10 arm64
|
- [x] Windows 10 arm64
|
||||||
|
|
||||||
## <a id="donate"></a>Donate
|
## <a id="donate"></a>Donate
|
||||||
If you would like to support the development of VSCodium, feel free to send BTC to `3PgjE95yzBDTrSPxPiqoxSgZFuKPPAix1N`.
|
If you would like to support the development of VSCodium, feel free to send BTC to `3PgjE95yzBDTrSPxPiqoxSgZFuKPPAix1N`.
|
||||||
|
|
||||||
|
|||||||
@@ -19,10 +19,10 @@ if [[ "$VSCODE_ARCH" == "x64" ]]; then
|
|||||||
sed -i 's/grep docker/# grep docker/' pkg2appimage.AppDir/usr/share/pkg2appimage/functions.sh
|
sed -i 's/grep docker/# grep docker/' pkg2appimage.AppDir/usr/share/pkg2appimage/functions.sh
|
||||||
|
|
||||||
bash -ex pkg2appimage.AppDir/AppRun recipe.yml
|
bash -ex pkg2appimage.AppDir/AppRun recipe.yml
|
||||||
|
|
||||||
rm -f pkg2appimage-*.AppImage
|
rm -f pkg2appimage-*.AppImage
|
||||||
rm -rf pkg2appimage.AppDir
|
rm -rf pkg2appimage.AppDir
|
||||||
rm -rf VSCodium
|
rm -rf VSCodium
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd "${CALLER_DIR}"
|
cd "${CALLER_DIR}"
|
||||||
|
|||||||
@@ -30,11 +30,13 @@ script:
|
|||||||
- /usr/bin/convert vscodium.png -resize 48x48 usr/share/icons/hicolor/48x48/apps/vscodium.png
|
- /usr/bin/convert vscodium.png -resize 48x48 usr/share/icons/hicolor/48x48/apps/vscodium.png
|
||||||
- /usr/bin/convert vscodium.png -resize 32x32 usr/share/icons/hicolor/32x32/apps/vscodium.png
|
- /usr/bin/convert vscodium.png -resize 32x32 usr/share/icons/hicolor/32x32/apps/vscodium.png
|
||||||
- ( cd usr/bin/ ; ln -s ../share/codium/codium . )
|
- ( cd usr/bin/ ; ln -s ../share/codium/codium . )
|
||||||
|
- rm -rf usr/lib/x86_64-linux-gnu
|
||||||
|
- rm -f lib/x86_64-linux-gnu/libglib*
|
||||||
- cat > AppRun <<\EOF
|
- cat > AppRun <<\EOF
|
||||||
- #!/bin/sh
|
- #!/bin/sh
|
||||||
- HERE="$(dirname "$(readlink -f "${0}")")"
|
- HERE="$(dirname "$(readlink -f "${0}")")"
|
||||||
- export PATH="${HERE}"/usr/bin/:"${HERE}"/usr/sbin/:"${HERE}"/usr/games/:"${HERE}"/bin/:"${HERE}"/sbin/:"${PATH}"
|
- export PATH="${HERE}"/usr/bin/:"${HERE}"/usr/sbin/:"${HERE}"/usr/games/:"${HERE}"/bin/:"${HERE}"/sbin/:"${PATH}"
|
||||||
- export LD_LIBRARY_PATH="${HERE}"/usr/lib/:"${HERE}"/usr/lib/i386-linux-gnu/:"${HERE}"/usr/lib/x86_64-linux-gnu/:"${HERE}"/usr/lib32/:"${HERE}"/usr/lib64/:"${HERE}"/lib/:"${HERE}"/lib/i386-linux-gnu/:"${HERE}"/lib/x86_64-linux-gnu/:"${HERE}"/lib32/:"${HERE}"/lib64/:"${LD_LIBRARY_PATH}"
|
- export LD_LIBRARY_PATH="${HERE}"/usr/lib/:"${HERE}"/usr/lib32/:"${HERE}"/usr/lib64/:"${HERE}"/lib/:"${HERE}"/lib/i386-linux-gnu/:"${HERE}"/lib/x86_64-linux-gnu/:"${HERE}"/lib32/:"${HERE}"/lib64/:"${LD_LIBRARY_PATH}"
|
||||||
- export XDG_DATA_DIRS="${HERE}"/usr/share/:"${XDG_DATA_DIRS}"
|
- export XDG_DATA_DIRS="${HERE}"/usr/share/:"${XDG_DATA_DIRS}"
|
||||||
- export PERLLIB="${HERE}"/usr/share/perl5/:"${HERE}"/usr/lib/perl5/:"${PERLLIB}"
|
- export PERLLIB="${HERE}"/usr/share/perl5/:"${HERE}"/usr/lib/perl5/:"${PERLLIB}"
|
||||||
- export GSETTINGS_SCHEMA_DIR="${HERE}"/usr/share/glib-2.0/schemas/:"${GSETTINGS_SCHEMA_DIR}"
|
- export GSETTINGS_SCHEMA_DIR="${HERE}"/usr/share/glib-2.0/schemas/:"${GSETTINGS_SCHEMA_DIR}"
|
||||||
|
|||||||
@@ -18,6 +18,9 @@
|
|||||||
|
|
||||||
### <a id="dependencies-linux"></a>Linux
|
### <a id="dependencies-linux"></a>Linux
|
||||||
|
|
||||||
|
- GCC
|
||||||
|
- make
|
||||||
|
- pkg-config
|
||||||
- libx11-dev
|
- libx11-dev
|
||||||
- libxkbfile-dev
|
- libxkbfile-dev
|
||||||
- libsecret-1-dev
|
- libsecret-1-dev
|
||||||
@@ -25,6 +28,9 @@
|
|||||||
- rpm
|
- rpm
|
||||||
- rpmbuild
|
- rpmbuild
|
||||||
- dpkg
|
- dpkg
|
||||||
|
- python3
|
||||||
|
- libsecret-1-dev
|
||||||
|
- imagemagick (for AppImage)
|
||||||
|
|
||||||
### <a id="dependencies-macos"></a>MacOS
|
### <a id="dependencies-macos"></a>MacOS
|
||||||
|
|
||||||
@@ -34,6 +40,8 @@
|
|||||||
- sed
|
- sed
|
||||||
- 7z
|
- 7z
|
||||||
- [WiX Toolset](http://wixtoolset.org/releases/)
|
- [WiX Toolset](http://wixtoolset.org/releases/)
|
||||||
|
- python2
|
||||||
|
- 'Tools for Native Modules' from official Node.js installer
|
||||||
|
|
||||||
## <a id="build-scripts"></a>Build Scripts
|
## <a id="build-scripts"></a>Build Scripts
|
||||||
|
|
||||||
@@ -70,4 +78,4 @@ export OS_NAME=linux
|
|||||||
export VSCODE_ARCH=x64
|
export VSCODE_ARCH=x64
|
||||||
|
|
||||||
./build.sh
|
./build.sh
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
|
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
|
||||||
index df089a6..7aeb54b 100644
|
index 2f5a931..ac3d7e6 100644
|
||||||
--- a/build/gulpfile.vscode.js
|
--- a/build/gulpfile.vscode.js
|
||||||
+++ b/build/gulpfile.vscode.js
|
+++ b/build/gulpfile.vscode.js
|
||||||
@@ -286,7 +286,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
@@ -290,7 +290,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
||||||
all = es.merge(all, gulp.src('resources/linux/code.png', { base: '.' }));
|
all = es.merge(all, gulp.src('resources/linux/code.png', { base: '.' }));
|
||||||
} else if (platform === 'darwin') {
|
} else if (platform === 'darwin') {
|
||||||
const shortcut = gulp.src('resources/darwin/bin/code.sh')
|
const shortcut = gulp.src('resources/darwin/bin/code.sh')
|
||||||
@@ -12,19 +12,19 @@ index df089a6..7aeb54b 100644
|
|||||||
all = es.merge(all, shortcut);
|
all = es.merge(all, shortcut);
|
||||||
}
|
}
|
||||||
diff --git a/src/vs/platform/native/electron-main/nativeHostMainService.ts b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
diff --git a/src/vs/platform/native/electron-main/nativeHostMainService.ts b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
||||||
index bd4dc01..02cbbc2 100644
|
index 3bd0c57..d921c60 100644
|
||||||
--- a/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
--- a/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
||||||
+++ b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
+++ b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
||||||
@@ -355,7 +355,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
@@ -353,7 +353,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getShellCommandLink(): Promise<{ readonly source: string, readonly target: string }> {
|
private async getShellCommandLink(): Promise<{ readonly source: string; readonly target: string }> {
|
||||||
- const target = resolve(this.environmentMainService.appRoot, 'bin', 'code');
|
- const target = resolve(this.environmentMainService.appRoot, 'bin', 'code');
|
||||||
+ const target = resolve(this.environmentMainService.appRoot, 'bin', this.productService.applicationName);
|
+ const target = resolve(this.environmentMainService.appRoot, 'bin', this.productService.applicationName);
|
||||||
const source = `/usr/local/bin/${this.productService.applicationName}`;
|
const source = `/usr/local/bin/${this.productService.applicationName}`;
|
||||||
|
|
||||||
// Ensure source exists
|
// Ensure source exists
|
||||||
@@ -565,7 +565,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
@@ -563,7 +563,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
||||||
|
|
||||||
// macOS
|
// macOS
|
||||||
if (this.environmentMainService.isBuilt) {
|
if (this.environmentMainService.isBuilt) {
|
||||||
|
|||||||
13
patches/cleanup-archive.patch
Normal file
13
patches/cleanup-archive.patch
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/build/gulpfile.vscode.win32.js b/build/gulpfile.vscode.win32.js
|
||||||
|
index 81ba509..59041e2 100644
|
||||||
|
--- a/build/gulpfile.vscode.win32.js
|
||||||
|
+++ b/build/gulpfile.vscode.win32.js
|
||||||
|
@@ -137,7 +137,7 @@ defineWin32SetupTasks('arm64', 'user');
|
||||||
|
*/
|
||||||
|
function archiveWin32Setup(arch) {
|
||||||
|
return cb => {
|
||||||
|
- const args = ['a', '-tzip', zipPath(arch), '-x!CodeSignSummary*.md', '.', '-r'];
|
||||||
|
+ const args = ['a', '-tzip', zipPath(arch), '-x!CodeSignSummary*.md', '-x!tools', '.', '-r'];
|
||||||
|
|
||||||
|
cp.spawn(_7z, args, { stdio: 'inherit', cwd: buildPath(arch) })
|
||||||
|
.on('error', cb)
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
diff --git a/src/vs/base/common/product.ts b/src/vs/base/common/product.ts
|
diff --git a/src/vs/base/common/product.ts b/src/vs/base/common/product.ts
|
||||||
index 657b9c9..9b9b12e 100644
|
index 1edc76f..4c0bf98 100644
|
||||||
--- a/src/vs/base/common/product.ts
|
--- a/src/vs/base/common/product.ts
|
||||||
+++ b/src/vs/base/common/product.ts
|
+++ b/src/vs/base/common/product.ts
|
||||||
@@ -70,6 +70,7 @@ export interface IProductConfiguration {
|
@@ -69,6 +69,7 @@ export interface IProductConfiguration {
|
||||||
|
|
||||||
readonly extensionsGallery?: {
|
readonly extensionsGallery?: {
|
||||||
readonly serviceUrl: string;
|
readonly serviceUrl: string;
|
||||||
@@ -11,7 +11,7 @@ index 657b9c9..9b9b12e 100644
|
|||||||
readonly resourceUrlTemplate: string;
|
readonly resourceUrlTemplate: string;
|
||||||
readonly controlUrl: string;
|
readonly controlUrl: string;
|
||||||
diff --git a/src/vs/platform/product/common/product.ts b/src/vs/platform/product/common/product.ts
|
diff --git a/src/vs/platform/product/common/product.ts b/src/vs/platform/product/common/product.ts
|
||||||
index 5e38d35..12bb161 100644
|
index e22b33e..98cec93 100644
|
||||||
--- a/src/vs/platform/product/common/product.ts
|
--- a/src/vs/platform/product/common/product.ts
|
||||||
+++ b/src/vs/platform/product/common/product.ts
|
+++ b/src/vs/platform/product/common/product.ts
|
||||||
@@ -4,11 +4,12 @@
|
@@ -4,11 +4,12 @@
|
||||||
@@ -30,7 +30,7 @@ index 5e38d35..12bb161 100644
|
|||||||
* @deprecated You MUST use `IProductService` if possible.
|
* @deprecated You MUST use `IProductService` if possible.
|
||||||
@@ -34,6 +35,32 @@ else if (typeof require?.__$__nodeRequire === 'function') {
|
@@ -34,6 +35,32 @@ else if (typeof require?.__$__nodeRequire === 'function') {
|
||||||
product = require.__$__nodeRequire(joinPath(rootPath, 'product.json').fsPath);
|
product = require.__$__nodeRequire(joinPath(rootPath, 'product.json').fsPath);
|
||||||
const pkg = require.__$__nodeRequire(joinPath(rootPath, 'package.json').fsPath) as { version: string; };
|
const pkg = require.__$__nodeRequire(joinPath(rootPath, 'package.json').fsPath) as { version: string };
|
||||||
|
|
||||||
+ // Merge user-customized product.json
|
+ // Merge user-customized product.json
|
||||||
+ try {
|
+ try {
|
||||||
@@ -61,7 +61,7 @@ index 5e38d35..12bb161 100644
|
|||||||
// Running out of sources
|
// Running out of sources
|
||||||
if (env['VSCODE_DEV']) {
|
if (env['VSCODE_DEV']) {
|
||||||
Object.assign(product, {
|
Object.assign(product, {
|
||||||
@@ -43,6 +70,19 @@ else if (typeof require?.__$__nodeRequire === 'function') {
|
@@ -44,6 +71,19 @@ else if (typeof require?.__$__nodeRequire === 'function') {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
diff --git a/extensions/github-authentication/src/githubServer.ts b/extensions/github-authentication/src/githubServer.ts
|
diff --git a/extensions/github-authentication/src/githubServer.ts b/extensions/github-authentication/src/githubServer.ts
|
||||||
index fe0fbfd..656d8bb 100644
|
index 49a523b..d68588e 100644
|
||||||
--- a/extensions/github-authentication/src/githubServer.ts
|
--- a/extensions/github-authentication/src/githubServer.ts
|
||||||
+++ b/extensions/github-authentication/src/githubServer.ts
|
+++ b/extensions/github-authentication/src/githubServer.ts
|
||||||
@@ -6,8 +6,6 @@
|
@@ -6,23 +6,14 @@
|
||||||
import * as nls from 'vscode-nls';
|
import * as nls from 'vscode-nls';
|
||||||
import * as vscode from 'vscode';
|
import * as vscode from 'vscode';
|
||||||
import fetch, { Response } from 'node-fetch';
|
import fetch, { Response } from 'node-fetch';
|
||||||
@@ -11,50 +11,36 @@ index fe0fbfd..656d8bb 100644
|
|||||||
import { ExperimentationTelemetry } from './experimentationService';
|
import { ExperimentationTelemetry } from './experimentationService';
|
||||||
import { AuthProviderType } from './github';
|
import { AuthProviderType } from './github';
|
||||||
import { Log } from './common/logger';
|
import { Log } from './common/logger';
|
||||||
@@ -15,8 +13,6 @@ import { Log } from './common/logger';
|
-import { isSupportedEnvironment } from './common/env';
|
||||||
|
|
||||||
const localize = nls.loadMessageBundle();
|
const localize = nls.loadMessageBundle();
|
||||||
|
const CLIENT_ID = '01ab8ac9400c4e429b23';
|
||||||
|
-const GITHUB_AUTHORIZE_URL = 'https://github.com/login/oauth/authorize';
|
||||||
|
-// TODO: change to stable when that happens
|
||||||
|
-const GITHUB_TOKEN_URL = 'https://vscode.dev/codeExchangeProxyEndpoints/github/login/oauth/access_token';
|
||||||
const NETWORK_ERROR = 'network error';
|
const NETWORK_ERROR = 'network error';
|
||||||
-const AUTH_RELAY_SERVER = 'vscode-auth.github.com';
|
|
||||||
-// const AUTH_RELAY_STAGING_SERVER = 'client-auth-staging-14a768b.herokuapp.com';
|
|
||||||
|
|
||||||
|
-const REDIRECT_URL_STABLE = 'https://vscode.dev/redirect';
|
||||||
|
-const REDIRECT_URL_INSIDERS = 'https://insiders.vscode.dev/redirect';
|
||||||
|
-
|
||||||
class UriEventHandler extends vscode.EventEmitter<vscode.Uri> implements vscode.UriHandler {
|
class UriEventHandler extends vscode.EventEmitter<vscode.Uri> implements vscode.UriHandler {
|
||||||
constructor(private readonly Logger: Log) {
|
constructor(private readonly Logger: Log) {
|
||||||
@@ -29,14 +25,6 @@ class UriEventHandler extends vscode.EventEmitter<vscode.Uri> implements vscode.
|
super();
|
||||||
}
|
@@ -110,10 +101,7 @@ async function getUserInfo(token: string, serverUri: vscode.Uri, logger: Log): P
|
||||||
}
|
|
||||||
|
|
||||||
-function parseQuery(uri: vscode.Uri) {
|
|
||||||
- return uri.query.split('&').reduce((prev: any, current) => {
|
|
||||||
- const queryString = current.split('=');
|
|
||||||
- prev[queryString[0]] = queryString[1];
|
|
||||||
- return prev;
|
|
||||||
- }, {});
|
|
||||||
-}
|
|
||||||
-
|
|
||||||
export interface IGitHubServer extends vscode.Disposable {
|
|
||||||
login(scopes: string): Promise<string>;
|
|
||||||
getUserInfo(token: string): Promise<{ id: string, accountName: string }>;
|
|
||||||
@@ -96,11 +84,7 @@ async function getUserInfo(token: string, serverUri: vscode.Uri, logger: Log): P
|
|
||||||
export class GitHubServer implements IGitHubServer {
|
export class GitHubServer implements IGitHubServer {
|
||||||
friendlyName = 'GitHub';
|
friendlyName = 'GitHub';
|
||||||
type = AuthProviderType.github;
|
type = AuthProviderType.github;
|
||||||
- private _statusBarItem: vscode.StatusBarItem | undefined;
|
|
||||||
- private _onDidManuallyProvideToken = new vscode.EventEmitter<string | undefined>();
|
- private _onDidManuallyProvideToken = new vscode.EventEmitter<string | undefined>();
|
||||||
|
|
||||||
- private _pendingStates = new Map<string, string[]>();
|
- private _pendingNonces = new Map<string, string[]>();
|
||||||
- private _codeExchangePromises = new Map<string, { promise: Promise<string>, cancel: vscode.EventEmitter<void> }>();
|
- private _codeExchangePromises = new Map<string, { promise: Promise<string>; cancel: vscode.EventEmitter<void> }>();
|
||||||
private _statusBarCommandId = `${this.type}.provide-manually`;
|
|
||||||
private _disposable: vscode.Disposable;
|
private _disposable: vscode.Disposable;
|
||||||
private _uriHandler = new UriEventHandler(this._logger);
|
private _uriHandler = new UriEventHandler(this._logger);
|
||||||
@@ -115,137 +99,35 @@ export class GitHubServer implements IGitHubServer {
|
|
||||||
|
@@ -125,87 +113,31 @@ export class GitHubServer implements IGitHubServer {
|
||||||
this._disposable.dispose();
|
this._disposable.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
- private isTestEnvironment(url: vscode.Uri): boolean {
|
|
||||||
- return /\.azurewebsites\.net$/.test(url.authority) || url.authority.startsWith('localhost:');
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- // TODO@joaomoreno TODO@TylerLeonhardt
|
- // TODO@joaomoreno TODO@TylerLeonhardt
|
||||||
- private async isNoCorsEnvironment(): Promise<boolean> {
|
- private async isNoCorsEnvironment(): Promise<boolean> {
|
||||||
- const uri = await vscode.env.asExternalUri(vscode.Uri.parse(`${vscode.env.uriScheme}://vscode.github-authentication/dummy`));
|
- const uri = await vscode.env.asExternalUri(vscode.Uri.parse(`${vscode.env.uriScheme}://vscode.github-authentication/dummy`));
|
||||||
@@ -64,12 +50,20 @@ index fe0fbfd..656d8bb 100644
|
|||||||
public async login(scopes: string): Promise<string> {
|
public async login(scopes: string): Promise<string> {
|
||||||
this._logger.info(`Logging in for the following scopes: ${scopes}`);
|
this._logger.info(`Logging in for the following scopes: ${scopes}`);
|
||||||
|
|
||||||
- const callbackUri = await vscode.env.asExternalUri(vscode.Uri.parse(`${vscode.env.uriScheme}://vscode.github-authentication/did-authenticate`));
|
- const nonce = uuid();
|
||||||
-
|
- const callbackUri = await vscode.env.asExternalUri(vscode.Uri.parse(`${vscode.env.uriScheme}://vscode.github-authentication/did-authenticate?nonce=${encodeURIComponent(nonce)}`));
|
||||||
- if (this.isTestEnvironment(callbackUri)) {
|
|
||||||
- const token = await vscode.window.showInputBox({ prompt: 'GitHub Personal Access Token', ignoreFocusOut: true });
|
|
||||||
- if (!token) { throw new Error('Sign in failed: No token provided'); }
|
|
||||||
-
|
-
|
||||||
|
- if (!isSupportedEnvironment(callbackUri)) {
|
||||||
|
- const token = this._supportDeviceCodeFlow
|
||||||
|
- ? await this.doDeviceCodeFlow(scopes)
|
||||||
|
- : await vscode.window.showInputBox({ prompt: 'GitHub Personal Access Token', ignoreFocusOut: true });
|
||||||
|
+ const token = this._supportDeviceCodeFlow
|
||||||
|
+ ? await this.doDeviceCodeFlow(scopes)
|
||||||
|
+ : await vscode.window.showInputBox({ prompt: 'GitHub Personal Access Token', ignoreFocusOut: true });
|
||||||
|
|
||||||
|
- if (!token) { throw new Error('No token provided'); }
|
||||||
|
+ if (!token) { throw new Error('No token provided'); }
|
||||||
|
|
||||||
- const tokenScopes = await getScopes(token, this.getServerUri('/'), this._logger); // Example: ['repo', 'user']
|
- const tokenScopes = await getScopes(token, this.getServerUri('/'), this._logger); // Example: ['repo', 'user']
|
||||||
- const scopesList = scopes.split(' '); // Example: 'read:user repo user:email'
|
- const scopesList = scopes.split(' '); // Example: 'read:user repo user:email'
|
||||||
- if (!scopesList.every(scope => {
|
- if (!scopesList.every(scope => {
|
||||||
@@ -77,9 +71,7 @@ index fe0fbfd..656d8bb 100644
|
|||||||
- if (included || !scope.includes(':')) {
|
- if (included || !scope.includes(':')) {
|
||||||
- return included;
|
- return included;
|
||||||
- }
|
- }
|
||||||
+ const token = await vscode.window.showInputBox({ prompt: 'GitHub Personal Access Token', ignoreFocusOut: true });
|
-
|
||||||
+ if (!token) { throw new Error('Sign in failed: No token provided'); }
|
|
||||||
|
|
||||||
- return scope.split(':').some(splitScopes => {
|
- return scope.split(':').some(splitScopes => {
|
||||||
- return tokenScopes.includes(splitScopes);
|
- return tokenScopes.includes(splitScopes);
|
||||||
- });
|
- });
|
||||||
@@ -94,23 +86,6 @@ index fe0fbfd..656d8bb 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
- return token;
|
- return token;
|
||||||
- }
|
|
||||||
-
|
|
||||||
- this.updateStatusBarItem(true);
|
|
||||||
-
|
|
||||||
- const state = uuid();
|
|
||||||
- const existingStates = this._pendingStates.get(scopes) || [];
|
|
||||||
- this._pendingStates.set(scopes, [...existingStates, state]);
|
|
||||||
-
|
|
||||||
- const uri = vscode.Uri.parse(`https://${AUTH_RELAY_SERVER}/authorize/?callbackUri=${encodeURIComponent(callbackUri.toString())}&scope=${scopes}&state=${state}&responseType=code&authServer=https://github.com`);
|
|
||||||
- await vscode.env.openExternal(uri);
|
|
||||||
-
|
|
||||||
- // Register a single listener for the URI callback, in case the user starts the login process multiple times
|
|
||||||
- // before completing it.
|
|
||||||
- let codeExchangePromise = this._codeExchangePromises.get(scopes);
|
|
||||||
- if (!codeExchangePromise) {
|
|
||||||
- codeExchangePromise = promiseFromEvent(this._uriHandler.event, this.exchangeCodeForToken(scopes));
|
|
||||||
- this._codeExchangePromises.set(scopes, codeExchangePromise);
|
|
||||||
+ return scope.split(':').some(splitScopes => {
|
+ return scope.split(':').some(splitScopes => {
|
||||||
+ return tokenScopes.includes(splitScopes);
|
+ return tokenScopes.includes(splitScopes);
|
||||||
+ });
|
+ });
|
||||||
@@ -118,50 +93,95 @@ index fe0fbfd..656d8bb 100644
|
|||||||
+ throw new Error(`The provided token does not match the requested scopes: ${scopes}`);
|
+ throw new Error(`The provided token does not match the requested scopes: ${scopes}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
- return Promise.race([
|
- const existingNonces = this._pendingNonces.get(scopes) || [];
|
||||||
- codeExchangePromise.promise,
|
- this._pendingNonces.set(scopes, [...existingNonces, nonce]);
|
||||||
- promiseFromEvent<string | undefined, string>(this._onDidManuallyProvideToken.event, (token: string | undefined, resolve, reject): void => {
|
-
|
||||||
- if (!token) {
|
- const proxyEndpoints: { [providerId: string]: string } | undefined = await vscode.commands.executeCommand('workbench.getCodeExchangeProxyEndpoints');
|
||||||
- reject('Cancelled');
|
- // If we are running in insiders vscode.dev, then ensure we use the redirect route on that.
|
||||||
- } else {
|
- const redirectUri = proxyEndpoints?.github?.includes('https://insiders.vscode.dev') ? REDIRECT_URL_INSIDERS : REDIRECT_URL_STABLE;
|
||||||
- resolve(token);
|
- const searchParams = new URLSearchParams([
|
||||||
- }
|
- ['client_id', CLIENT_ID],
|
||||||
- }).promise,
|
- ['redirect_uri', redirectUri],
|
||||||
- new Promise<string>((_, reject) => setTimeout(() => reject('Cancelled'), 60000))
|
- ['scope', scopes],
|
||||||
- ]).finally(() => {
|
- ['state', encodeURIComponent(callbackUri.toString(true))]
|
||||||
- this._pendingStates.delete(scopes);
|
- ]);
|
||||||
- codeExchangePromise?.cancel.fire();
|
- const uri = vscode.Uri.parse(`${GITHUB_AUTHORIZE_URL}?${searchParams.toString()}`);
|
||||||
- this._codeExchangePromises.delete(scopes);
|
-
|
||||||
- this.updateStatusBarItem(false);
|
- return vscode.window.withProgress({
|
||||||
|
- location: vscode.ProgressLocation.Window,
|
||||||
|
- title: localize('signingIn', " $(mark-github) Signing in to github.com..."),
|
||||||
|
- }, async () => {
|
||||||
|
- await vscode.env.openExternal(uri);
|
||||||
|
-
|
||||||
|
- // Register a single listener for the URI callback, in case the user starts the login process multiple times
|
||||||
|
- // before completing it.
|
||||||
|
- let codeExchangePromise = this._codeExchangePromises.get(scopes);
|
||||||
|
- if (!codeExchangePromise) {
|
||||||
|
- codeExchangePromise = promiseFromEvent(this._uriHandler.event, this.exchangeCodeForToken(scopes));
|
||||||
|
- this._codeExchangePromises.set(scopes, codeExchangePromise);
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- return Promise.race([
|
||||||
|
- codeExchangePromise.promise,
|
||||||
|
- promiseFromEvent<string | undefined, string>(this._onDidManuallyProvideToken.event, (token: string | undefined, resolve, reject): void => {
|
||||||
|
- if (!token) {
|
||||||
|
- reject('Cancelled');
|
||||||
|
- } else {
|
||||||
|
- resolve(token);
|
||||||
|
- }
|
||||||
|
- }).promise,
|
||||||
|
- new Promise<string>((_, reject) => setTimeout(() => reject('Cancelled'), 60000))
|
||||||
|
- ]).finally(() => {
|
||||||
|
- this._pendingNonces.delete(scopes);
|
||||||
|
- codeExchangePromise?.cancel.fire();
|
||||||
|
- this._codeExchangePromises.delete(scopes);
|
||||||
|
- });
|
||||||
- });
|
- });
|
||||||
+ return token;
|
+ return token;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async doDeviceCodeFlow(scopes: string): Promise<string> {
|
||||||
|
@@ -299,57 +231,6 @@ export class GitHubServer implements IGitHubServer {
|
||||||
|
throw new Error('Cancelled');
|
||||||
|
}
|
||||||
|
|
||||||
- private exchangeCodeForToken: (scopes: string) => PromiseAdapter<vscode.Uri, string> =
|
- private exchangeCodeForToken: (scopes: string) => PromiseAdapter<vscode.Uri, string> =
|
||||||
- (scopes) => async (uri, resolve, reject) => {
|
- (scopes) => async (uri, resolve, reject) => {
|
||||||
- const query = parseQuery(uri);
|
- const query = new URLSearchParams(uri.query);
|
||||||
- const code = query.code;
|
- const code = query.get('code');
|
||||||
-
|
-
|
||||||
- const acceptedStates = this._pendingStates.get(scopes) || [];
|
- const acceptedNonces = this._pendingNonces.get(scopes) || [];
|
||||||
- if (!acceptedStates.includes(query.state)) {
|
- const nonce = query.get('nonce');
|
||||||
|
- if (!nonce) {
|
||||||
|
- this._logger.error('No nonce in response.');
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
- if (!acceptedNonces.includes(nonce)) {
|
||||||
- // A common scenario of this happening is if you:
|
- // A common scenario of this happening is if you:
|
||||||
- // 1. Trigger a sign in with one set of scopes
|
- // 1. Trigger a sign in with one set of scopes
|
||||||
- // 2. Before finishing 1, you trigger a sign in with a different set of scopes
|
- // 2. Before finishing 1, you trigger a sign in with a different set of scopes
|
||||||
- // In this scenario we should just return and wait for the next UriHandler event
|
- // In this scenario we should just return and wait for the next UriHandler event
|
||||||
- // to run as we are probably still waiting on the user to hit 'Continue'
|
- // to run as we are probably still waiting on the user to hit 'Continue'
|
||||||
- this._logger.info('State not found in accepted state. Skipping this execution...');
|
- this._logger.info('Nonce not found in accepted nonces. Skipping this execution...');
|
||||||
- return;
|
- return;
|
||||||
- }
|
- }
|
||||||
-
|
-
|
||||||
- const url = `https://${AUTH_RELAY_SERVER}/token?code=${code}&state=${query.state}`;
|
|
||||||
- this._logger.info('Exchanging code for token...');
|
- this._logger.info('Exchanging code for token...');
|
||||||
-
|
-
|
||||||
|
- const proxyEndpoints: { [providerId: string]: string } | undefined = await vscode.commands.executeCommand('workbench.getCodeExchangeProxyEndpoints');
|
||||||
|
- const endpointUrl = proxyEndpoints?.github ? `${proxyEndpoints.github}login/oauth/access_token` : GITHUB_TOKEN_URL;
|
||||||
|
-
|
||||||
- try {
|
- try {
|
||||||
- const result = await fetch(url, {
|
- const body = `code=${code}`;
|
||||||
|
- const result = await fetch(endpointUrl, {
|
||||||
- method: 'POST',
|
- method: 'POST',
|
||||||
- headers: {
|
- headers: {
|
||||||
- Accept: 'application/json'
|
- Accept: 'application/json',
|
||||||
- }
|
- 'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
|
- 'Content-Length': body.toString()
|
||||||
|
-
|
||||||
|
- },
|
||||||
|
- body
|
||||||
- });
|
- });
|
||||||
-
|
-
|
||||||
- if (result.ok) {
|
- if (result.ok) {
|
||||||
@@ -179,27 +199,7 @@ index fe0fbfd..656d8bb 100644
|
|||||||
private getServerUri(path: string = '') {
|
private getServerUri(path: string = '') {
|
||||||
const apiUri = vscode.Uri.parse('https://api.github.com');
|
const apiUri = vscode.Uri.parse('https://api.github.com');
|
||||||
return vscode.Uri.parse(`${apiUri.scheme}://${apiUri.authority}${path}`);
|
return vscode.Uri.parse(`${apiUri.scheme}://${apiUri.authority}${path}`);
|
||||||
}
|
@@ -359,44 +240,7 @@ export class GitHubServer implements IGitHubServer {
|
||||||
|
|
||||||
- private updateStatusBarItem(isStart?: boolean) {
|
|
||||||
- if (isStart && !this._statusBarItem) {
|
|
||||||
- this._statusBarItem = vscode.window.createStatusBarItem('status.git.signIn', vscode.StatusBarAlignment.Left);
|
|
||||||
- this._statusBarItem.name = localize('status.git.signIn.name', "GitHub Sign-in");
|
|
||||||
- this._statusBarItem.text = localize('signingIn', "$(mark-github) Signing in to github.com...");
|
|
||||||
- this._statusBarItem.command = this._statusBarCommandId;
|
|
||||||
- this._statusBarItem.show();
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- if (!isStart && this._statusBarItem) {
|
|
||||||
- this._statusBarItem.dispose();
|
|
||||||
- this._statusBarItem = undefined;
|
|
||||||
- }
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
private async manuallyProvideUri() {
|
|
||||||
const uri = await vscode.window.showInputBox({
|
|
||||||
prompt: 'Uri',
|
|
||||||
@@ -277,44 +159,7 @@ export class GitHubServer implements IGitHubServer {
|
|
||||||
return getUserInfo(token, this.getServerUri('/user'), this._logger);
|
return getUserInfo(token, this.getServerUri('/user'), this._logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -223,7 +223,7 @@ index fe0fbfd..656d8bb 100644
|
|||||||
- });
|
- });
|
||||||
-
|
-
|
||||||
- if (result.ok) {
|
- if (result.ok) {
|
||||||
- const json: { student: boolean, faculty: boolean } = await result.json();
|
- const json: { student: boolean; faculty: boolean } = await result.json();
|
||||||
-
|
-
|
||||||
- /* __GDPR__
|
- /* __GDPR__
|
||||||
- "session" : {
|
- "session" : {
|
||||||
@@ -241,7 +241,63 @@ index fe0fbfd..656d8bb 100644
|
|||||||
- } catch (e) {
|
- } catch (e) {
|
||||||
- // No-op
|
- // No-op
|
||||||
- }
|
- }
|
||||||
+ public async sendAdditionalTelemetryInfo(_token: string): Promise<void> {
|
+ public async sendAdditionalTelemetryInfo(_: string): Promise<void> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public async checkEnterpriseVersion(token: string): Promise<void> {
|
public async checkEnterpriseVersion(token: string): Promise<void> {
|
||||||
|
diff --git a/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts b/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts
|
||||||
|
index 36647e6..55e722b 100644
|
||||||
|
--- a/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts
|
||||||
|
+++ b/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts
|
||||||
|
@@ -271,7 +271,7 @@ export class AccountsActivityActionViewItem extends MenuActivityActionViewItem {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
- if (providers.length && !menus.length) {
|
||||||
|
+ if (!menus.length) {
|
||||||
|
const noAccountsAvailableAction = disposables.add(new Action('noAccountsAvailable', localize('noAccounts', "You are not signed in to any accounts"), undefined, false));
|
||||||
|
menus.push(noAccountsAvailableAction);
|
||||||
|
}
|
||||||
|
diff --git a/src/vs/workbench/services/authentication/browser/authenticationService.ts b/src/vs/workbench/services/authentication/browser/authenticationService.ts
|
||||||
|
index 5f7431d..278cd3d 100644
|
||||||
|
--- a/src/vs/workbench/services/authentication/browser/authenticationService.ts
|
||||||
|
+++ b/src/vs/workbench/services/authentication/browser/authenticationService.ts
|
||||||
|
@@ -13,7 +13,6 @@ import { isString } from 'vs/base/common/types';
|
||||||
|
import * as nls from 'vs/nls';
|
||||||
|
import { MenuId, MenuRegistry } from 'vs/platform/actions/common/actions';
|
||||||
|
import { CommandsRegistry } from 'vs/platform/commands/common/commands';
|
||||||
|
-import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey';
|
||||||
|
import { ICredentialsService } from 'vs/platform/credentials/common/credentials';
|
||||||
|
import { IDialogService } from 'vs/platform/dialogs/common/dialogs';
|
||||||
|
import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
|
||||||
|
@@ -197,13 +196,6 @@ export class AuthenticationService extends Disposable implements IAuthentication
|
||||||
|
@IQuickInputService private readonly quickInputService: IQuickInputService
|
||||||
|
) {
|
||||||
|
super();
|
||||||
|
- this._placeholderMenuItem = MenuRegistry.appendMenuItem(MenuId.AccountsContext, {
|
||||||
|
- command: {
|
||||||
|
- id: 'noAuthenticationProviders',
|
||||||
|
- title: nls.localize('loading', "Loading..."),
|
||||||
|
- precondition: ContextKeyExpr.false()
|
||||||
|
- },
|
||||||
|
- });
|
||||||
|
|
||||||
|
authenticationExtPoint.setHandler((extensions, { added, removed }) => {
|
||||||
|
added.forEach(point => {
|
||||||
|
@@ -272,16 +264,6 @@ export class AuthenticationService extends Disposable implements IAuthentication
|
||||||
|
this.removeAccessRequest(id, extensionId);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
-
|
||||||
|
- if (!this._authenticationProviders.size) {
|
||||||
|
- this._placeholderMenuItem = MenuRegistry.appendMenuItem(MenuId.AccountsContext, {
|
||||||
|
- command: {
|
||||||
|
- id: 'noAuthenticationProviders',
|
||||||
|
- title: nls.localize('loading', "Loading..."),
|
||||||
|
- precondition: ContextKeyExpr.false()
|
||||||
|
- },
|
||||||
|
- });
|
||||||
|
- }
|
||||||
|
}
|
||||||
|
|
||||||
|
async sessionsUpdate(id: string, event: AuthenticationSessionsChangeEvent): Promise<void> {
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ twitterUrl='setpath(["twitterUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533
|
|||||||
requestFeatureUrl='setpath(["requestFeatureUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533482")'
|
requestFeatureUrl='setpath(["requestFeatureUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533482")'
|
||||||
documentationUrl='setpath(["documentationUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533484#vscode")'
|
documentationUrl='setpath(["documentationUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533484#vscode")'
|
||||||
introductoryVideosUrl='setpath(["introductoryVideosUrl"]; "https://go.microsoft.com/fwlink/?linkid=832146")'
|
introductoryVideosUrl='setpath(["introductoryVideosUrl"]; "https://go.microsoft.com/fwlink/?linkid=832146")'
|
||||||
extensionAllowedBadgeProviders='setpath(["extensionAllowedBadgeProviders"]; ["api.bintray.com", "api.travis-ci.com", "api.travis-ci.org", "app.fossa.io", "badge.fury.io", "badge.waffle.io", "badgen.net", "badges.frapsoft.com", "badges.gitter.im", "badges.greenkeeper.io", "cdn.travis-ci.com", "cdn.travis-ci.org", "ci.appveyor.com", "circleci.com", "cla.opensource.microsoft.com", "codacy.com", "codeclimate.com", "codecov.io", "coveralls.io", "david-dm.org", "deepscan.io", "dev.azure.com", "flat.badgen.net", "gemnasium.com", "githost.io", "gitlab.com", "godoc.org", "goreportcard.com", "img.shields.io", "isitmaintained.com", "marketplace.visualstudio.com", "nodesecurity.io", "opencollective.com", "snyk.io", "travis-ci.com", "travis-ci.org", "visualstudio.com", "vsmarketplacebadge.apphb.com", "www.bithound.io", "www.versioneye.com"])'
|
|
||||||
updateUrl='setpath(["updateUrl"]; "https://vscodium.now.sh")'
|
updateUrl='setpath(["updateUrl"]; "https://vscodium.now.sh")'
|
||||||
releaseNotesUrl='setpath(["releaseNotesUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533483#vscode")'
|
releaseNotesUrl='setpath(["releaseNotesUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533483#vscode")'
|
||||||
keyboardShortcutsUrlMac='setpath(["keyboardShortcutsUrlMac"]; "https://go.microsoft.com/fwlink/?linkid=832143")'
|
keyboardShortcutsUrlMac='setpath(["keyboardShortcutsUrlMac"]; "https://go.microsoft.com/fwlink/?linkid=832143")'
|
||||||
@@ -71,13 +70,16 @@ win32AppUserModelId='setpath(["win32AppUserModelId"]; "Microsoft.VSCodium")'
|
|||||||
win32ShellNameShort='setpath(["win32ShellNameShort"]; "VSCodium")'
|
win32ShellNameShort='setpath(["win32ShellNameShort"]; "VSCodium")'
|
||||||
win32x64UserAppId='setpath (["win32x64UserAppId"]; "{{2E1F05D1-C245-4562-81EE-28188DB6FD17}")'
|
win32x64UserAppId='setpath (["win32x64UserAppId"]; "{{2E1F05D1-C245-4562-81EE-28188DB6FD17}")'
|
||||||
urlProtocol='setpath(["urlProtocol"]; "vscodium")'
|
urlProtocol='setpath(["urlProtocol"]; "vscodium")'
|
||||||
extensionAllowedProposedApi='setpath(["extensionAllowedProposedApi"]; getpath(["extensionAllowedProposedApi"]) + ["ms-vscode.cpptools", "ms-azuretools.vscode-docker", "visualstudioexptteam.vscodeintellicode", "GitHub.codespaces", "GitHub.vscode-pull-request-github-insiders", "GitHub.vscode-pull-request-github", "Microsoft.vscode-nmake-tools", "ms-ai-tools.notebook-renderers", "ms-dotnettools.dotnet-interactive-vscode", "ms-python.gather", "ms-python.python", "ms-toolsai.jupyter", "ms-toolsai.vscode-ai", "ms-toolsai.vscode-ai-remote", "ms-vscode-remote.remote-containers-nightly", "ms-vscode-remote.remote-containers", "ms-vscode-remote.remote-ssh-edit-nightly", "ms-vscode-remote.remote-ssh-edit", "ms-vscode-remote.remote-ssh-nightly", "ms-vscode-remote.remote-ssh", "ms-vscode-remote.remote-wsl-nightly", "ms-vscode-remote.remote-wsl", "ms-vscode-remote.remote-wsl-recommender", "ms-vscode-remote.vscode-remote-extensionpack-nightly", "ms-vscode-remote.vscode-remote-extensionpack", "ms-vscode.azure-account", "ms-vscode.azure-sphere-tools-ui", "ms-vscode.azure-sphere-tools", "ms-vscode.github-browser", "ms-vscode.github-richnav", "ms-vscode.js-debug-nightly", "ms-vscode.js-debug", "ms-vscode.lsif-browser", "ms-vscode.vscode-js-profile-flame", "ms-vscode.vscode-js-profile-table", "ms-vscode.vscode-selfhost-test-provider", "ms-vsliveshare.cloudenv-explorer", "ms-vsliveshare.cloudenv", "ms-vsliveshare.vsliveshare", "ms-vsonline.vsonline", "dbaeumer.vscode-eslint"])'
|
|
||||||
serverDataFolderName='setpath(["serverDataFolderName"]; ".vscode-server-oss")'
|
serverDataFolderName='setpath(["serverDataFolderName"]; ".vscode-server-oss")'
|
||||||
reportIssueUrl='setpath(["reportIssueUrl"]; "https://github.com/VSCodium/vscodium/issues/new/choose")'
|
reportIssueUrl='setpath(["reportIssueUrl"]; "https://github.com/VSCodium/vscodium/issues/new/choose")'
|
||||||
licenseUrl='setpath(["licenseUrl"]; "https://github.com/VSCodium/vscodium/blob/master/LICENSE")'
|
licenseUrl='setpath(["licenseUrl"]; "https://github.com/VSCodium/vscodium/blob/master/LICENSE")'
|
||||||
|
|
||||||
product_json_changes="${checksumFailMoreInfoUrl} | ${tipsAndTricksUrl} | ${twitterUrl} | ${requestFeatureUrl} | ${documentationUrl} | ${introductoryVideosUrl} | ${extensionAllowedBadgeProviders} | ${updateUrl} | ${releaseNotesUrl} | ${keyboardShortcutsUrlMac} | ${keyboardShortcutsUrlLinux} | ${keyboardShortcutsUrlWin} | ${quality} | ${extensionsGallery} | ${linkProtectionTrustedDomains} | ${nameShort} | ${nameLong} | ${linuxIconName} | ${applicationName} | ${win32MutexName} | ${win32DirName} | ${win32NameVersion} | ${win32RegValueName} | ${win32AppUserModelId} | ${win32ShellNameShort} | ${win32x64UserAppId} | ${urlProtocol} | ${extensionAllowedProposedApi} | ${serverDataFolderName} | ${reportIssueUrl} | ${licenseUrl}"
|
product_json_changes="${checksumFailMoreInfoUrl} | ${tipsAndTricksUrl} | ${twitterUrl} | ${requestFeatureUrl} | ${documentationUrl} | ${introductoryVideosUrl} | ${updateUrl} | ${releaseNotesUrl} | ${keyboardShortcutsUrlMac} | ${keyboardShortcutsUrlLinux} | ${keyboardShortcutsUrlWin} | ${quality} | ${extensionsGallery} | ${linkProtectionTrustedDomains} | ${nameShort} | ${nameLong} | ${linuxIconName} | ${applicationName} | ${win32MutexName} | ${win32DirName} | ${win32NameVersion} | ${win32RegValueName} | ${win32AppUserModelId} | ${win32ShellNameShort} | ${win32x64UserAppId} | ${urlProtocol} | ${serverDataFolderName} | ${reportIssueUrl} | ${licenseUrl}"
|
||||||
cat product.json.bak | jq "${product_json_changes}" > product.json
|
cat product.json.bak | jq "${product_json_changes}" > product.json.tmp
|
||||||
|
|
||||||
|
jq -s '.[0] * .[1]' product.json.tmp ../product.json > product.json
|
||||||
|
rm -f product.json.tmp
|
||||||
|
|
||||||
cat product.json
|
cat product.json
|
||||||
|
|
||||||
../undo_telemetry.sh
|
../undo_telemetry.sh
|
||||||
|
|||||||
427
product.json
Normal file
427
product.json
Normal file
@@ -0,0 +1,427 @@
|
|||||||
|
{
|
||||||
|
"extensionAllowedBadgeProviders": [
|
||||||
|
"api.bintray.com",
|
||||||
|
"api.travis-ci.com",
|
||||||
|
"api.travis-ci.org",
|
||||||
|
"app.fossa.io",
|
||||||
|
"badge.buildkite.com",
|
||||||
|
"badge.fury.io",
|
||||||
|
"badge.waffle.io",
|
||||||
|
"badgen.net",
|
||||||
|
"badges.frapsoft.com",
|
||||||
|
"badges.gitter.im",
|
||||||
|
"badges.greenkeeper.io",
|
||||||
|
"cdn.travis-ci.com",
|
||||||
|
"cdn.travis-ci.org",
|
||||||
|
"ci.appveyor.com",
|
||||||
|
"circleci.com",
|
||||||
|
"cla.opensource.microsoft.com",
|
||||||
|
"codacy.com",
|
||||||
|
"codeclimate.com",
|
||||||
|
"codecov.io",
|
||||||
|
"coveralls.io",
|
||||||
|
"david-dm.org",
|
||||||
|
"deepscan.io",
|
||||||
|
"dev.azure.com",
|
||||||
|
"docs.rs",
|
||||||
|
"flat.badgen.net",
|
||||||
|
"gemnasium.com",
|
||||||
|
"githost.io",
|
||||||
|
"gitlab.com",
|
||||||
|
"godoc.org",
|
||||||
|
"goreportcard.com",
|
||||||
|
"img.shields.io",
|
||||||
|
"isitmaintained.com",
|
||||||
|
"marketplace.visualstudio.com",
|
||||||
|
"nodesecurity.io",
|
||||||
|
"opencollective.com",
|
||||||
|
"snyk.io",
|
||||||
|
"travis-ci.com",
|
||||||
|
"travis-ci.org",
|
||||||
|
"visualstudio.com",
|
||||||
|
"vsmarketplacebadge.apphb.com",
|
||||||
|
"www.bithound.io",
|
||||||
|
"www.versioneye.com"
|
||||||
|
],
|
||||||
|
"extensionAllowedBadgeProvidersRegex": [
|
||||||
|
"^https:\\/\\/github\\.com\\/[^/]+\\/[^/]+\\/(actions\\/)?workflows\\/.*badge\\.svg"
|
||||||
|
],
|
||||||
|
"extensionEnabledApiProposals": {
|
||||||
|
"ms-vscode.vscode-selfhost-test-provider": [
|
||||||
|
"testObserver"
|
||||||
|
],
|
||||||
|
"VisualStudioExptTeam.vscodeintellicode-completions": [
|
||||||
|
"inlineCompletions"
|
||||||
|
],
|
||||||
|
"ms-vsliveshare.vsliveshare": [
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"diffCommand",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"findTextInFiles",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"notebookContentProvider",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookLiveShare",
|
||||||
|
"terminalDimensions",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"textDocumentNotebook",
|
||||||
|
"textSearchProvider"
|
||||||
|
],
|
||||||
|
"ms-vscode.js-debug": [
|
||||||
|
"portsAttributes",
|
||||||
|
"findTextInFiles",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-toolsai.vscode-ai-remote": [
|
||||||
|
"resolvers",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-python.python": [
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"testObserver",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-dotnettools.dotnet-interactive-vscode": [
|
||||||
|
"notebookConcatTextDocument",
|
||||||
|
"notebookContentProvider",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"notebookControllerKind",
|
||||||
|
"notebookDebugOptions",
|
||||||
|
"notebookDeprecated",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookEditorDecorationType",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookLiveShare",
|
||||||
|
"notebookMessaging",
|
||||||
|
"notebookMime",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.codespaces": [
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"notebookEditor",
|
||||||
|
"resolvers",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"treeViewReveal"
|
||||||
|
],
|
||||||
|
"ms-vscode.azure-repos": [
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"resolvers",
|
||||||
|
"textSearchProvider"
|
||||||
|
],
|
||||||
|
"ms-vscode.remote-repositories": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-vscode.vscode-github-issue-notebooks": [
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"tanhakabir.rest-book": [
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-wsl": [
|
||||||
|
"resolvers",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"telemetry"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-ssh": [
|
||||||
|
"resolvers",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"telemetry"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-containers": [
|
||||||
|
"resolvers",
|
||||||
|
"workspaceTrust",
|
||||||
|
"terminalDimensions",
|
||||||
|
"contribViewsRemote"
|
||||||
|
],
|
||||||
|
"ms-vscode.js-debug-nightly": [
|
||||||
|
"portsAttributes",
|
||||||
|
"findTextInFiles",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-vscode.lsif-browser": [
|
||||||
|
"documentFiltersExclusive"
|
||||||
|
],
|
||||||
|
"GitHub.vscode-pull-request-github": [
|
||||||
|
"tokenInformation"
|
||||||
|
],
|
||||||
|
"GitHub.copilot": [
|
||||||
|
"inlineCompletions",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.copilot-nightly": [
|
||||||
|
"inlineCompletions",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.remotehub": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"GitHub.remotehub-insiders": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-python.gather": [
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-python.vscode-pylance": [
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-toolsai.jupyter": [
|
||||||
|
"notebookConcatTextDocument",
|
||||||
|
"notebookControllerKind",
|
||||||
|
"notebookDebugOptions",
|
||||||
|
"notebookDeprecated",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditorDecorationType",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookMessaging",
|
||||||
|
"notebookMime",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"portsAttributes",
|
||||||
|
"textDocumentNotebook",
|
||||||
|
"quickPickSortByLabel"
|
||||||
|
],
|
||||||
|
"dbaeumer.vscode-eslint": [
|
||||||
|
"tabs",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-vscode.azure-sphere-tools-ui": [
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-azuretools.vscode-azureappservice": [
|
||||||
|
"terminalDataWriteEvent"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionKind": {
|
||||||
|
"Shan.code-settings-sync": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"shalldie.background": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"techer.open-in-browser": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"CoenraadS.bracket-pair-colorizer-2": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"CoenraadS.bracket-pair-colorizer": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"hiro-sun.vscode-emacs": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"hnw.vscode-auto-open-markdown-preview": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"wayou.vscode-todo-highlight": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"aaron-bond.better-comments": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"vscodevim.vim": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"ollyhayes.colmak-vim": [
|
||||||
|
"ui"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionPointExtensionKind": {
|
||||||
|
"typescriptServerPlugins": [
|
||||||
|
"workspace"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionSyncedKeys": {
|
||||||
|
"ritwickdey.liveserver": [
|
||||||
|
"liveServer.setup.version"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionVirtualWorkspacesSupport": {
|
||||||
|
"esbenp.prettier-vscode": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"msjsdiag.debugger-for-chrome": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"redhat.java": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"HookyQR.beautify": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ritwickdey.LiveServer": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"VisualStudioExptTeam.vscodeintellicode": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"octref.vetur": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"formulahendry.code-runner": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"xdebug.php-debug": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-mssql.mssql": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"christian-kohler.path-intellisense": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"eg2.tslint": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"eg2.vscode-npm-script": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"donjayamanne.githistory": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Zignd.html-css-class-completion": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"christian-kohler.npm-intellisense": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"EditorConfig.EditorConfig": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"austin.code-gnu-global": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"johnpapa.Angular2": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-vscode.vscode-typescript-tslint-plugin": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"DotJoshJohnson.xml": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"techer.open-in-browser": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"tht13.python": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"bmewburn.vscode-intelephense-client": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Angular.ng-template": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"xdebug.php-pack": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"dbaeumer.jshint": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"yzhang.markdown-all-in-one": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Dart-Code.flutter": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"streetsidesoftware.code-spell-checker": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"rebornix.Ruby": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-vscode.sublime-keybindings": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"mitaki28.vscode-clang": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"steoates.autoimport": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"donjayamanne.python-extension-pack": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"shd101wyy.markdown-preview-enhanced": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"mikestead.dotenv": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"pranaygp.vscode-css-peek": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ikappas.phpcs": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"platformio.platformio-ide": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"jchannon.csharpextensions": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"gruntfuggly.todo-tree": {
|
||||||
|
"default": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -18,6 +18,10 @@ cd artifacts
|
|||||||
|
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
|
OWNER="${GITHUB_REPOSITORY_OWNER:-"VSCodium"}"
|
||||||
|
REPO_NAME="${GITHUB_REPOSITORY:(${#OWNER}+1)}"
|
||||||
|
REPOSITORY="${REPO_NAME:-"vscodium"}"
|
||||||
|
|
||||||
for FILE in *
|
for FILE in *
|
||||||
do
|
do
|
||||||
if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
|
if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
|
||||||
@@ -30,7 +34,7 @@ do
|
|||||||
if (( $EXIT_STATUS )); then
|
if (( $EXIT_STATUS )); then
|
||||||
for (( i=0; i<10; i++ ))
|
for (( i=0; i<10; i++ ))
|
||||||
do
|
do
|
||||||
github-release delete --owner VSCodium --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
|
github-release delete --owner "${OWNER}" --repo "${REPOSITORY}" --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
|
||||||
|
|
||||||
sleep $(( 15 * (i + 1)))
|
sleep $(( 15 * (i + 1)))
|
||||||
|
|
||||||
@@ -49,7 +53,7 @@ do
|
|||||||
if (( $EXIT_STATUS )); then
|
if (( $EXIT_STATUS )); then
|
||||||
echo "'${FILE}' hasn't been uploaded!"
|
echo "'${FILE}' hasn't been uploaded!"
|
||||||
|
|
||||||
github-release delete --owner VSCodium --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
|
github-release delete --owner "${OWNER}" --repo "${REPOSITORY}" --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
|
||||||
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
<svg width="40" height="40" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
||||||
<title>codium_grey_dark_letterpress</title>
|
<title>codium_grey_dark_letterpress</title>
|
||||||
<desc>Created with Sketch.</desc>
|
<desc>Created with Sketch.</desc>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
<svg width="40" height="40" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
||||||
<title>codium_grey_hc_letterpress</title>
|
<title>codium_grey_hc_letterpress</title>
|
||||||
<desc>Created with Sketch.</desc>
|
<desc>Created with Sketch.</desc>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
<svg width="40" height="40" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
<!-- Generator: Sketch 55 (78076) - https://sketchapp.com -->
|
||||||
<title>codium_grey_letterpress</title>
|
<title>codium_grey_letterpress</title>
|
||||||
<desc>Created with Sketch.</desc>
|
<desc>Created with Sketch.</desc>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
43
stores/snapcraft/check_version.sh
Executable file
43
stores/snapcraft/check_version.sh
Executable file
@@ -0,0 +1,43 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [[ "${GITHUB_EVENT_NAME}" == "pull_request" ]]; then
|
||||||
|
echo "It's a PR"
|
||||||
|
|
||||||
|
export SHOULD_DEPLOY="no"
|
||||||
|
elif [[ "${GITHUB_EVENT_NAME}" == "push" ]]; then
|
||||||
|
echo "It's a Push"
|
||||||
|
|
||||||
|
export SHOULD_DEPLOY="no"
|
||||||
|
else
|
||||||
|
echo "It's a cron"
|
||||||
|
|
||||||
|
sudo snap install --channel stable --classic snapcraft
|
||||||
|
|
||||||
|
echo "$SNAP_STORE_LOGIN" | snapcraft login --with -
|
||||||
|
|
||||||
|
echo "Architecture: ${ARCHITECTURE}"
|
||||||
|
|
||||||
|
SNAP_VERSION=$(snapcraft list-revisions codium | grep -F stable* | grep ${ARCHITECTURE} | tr -s ' ' | cut -d ' ' -f 4)
|
||||||
|
echo "Snap version: ${SNAP_VERSION}"
|
||||||
|
|
||||||
|
wget --quiet https://api.github.com/repos/VSCodium/vscodium/releases -O gh_latest.json
|
||||||
|
GH_VERSION=$(jq -r 'sort_by(.tag_name)|last.tag_name' gh_latest.json)
|
||||||
|
echo "GH version: ${GH_VERSION}"
|
||||||
|
|
||||||
|
rm -f gh_latest.json
|
||||||
|
|
||||||
|
if [[ "${SNAP_VERSION}" == "${GH_VERSION}" ]]; then
|
||||||
|
export SHOULD_DEPLOY="no"
|
||||||
|
else
|
||||||
|
export SHOULD_DEPLOY="yes"
|
||||||
|
|
||||||
|
snap version
|
||||||
|
snap info codium
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $GITHUB_ENV ]]; then
|
||||||
|
echo "SHOULD_DEPLOY=$SHOULD_DEPLOY" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
34
stores/snapcraft/snap/local/bin/electron-launch
Executable file
34
stores/snapcraft/snap/local/bin/electron-launch
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# On Fedora $SNAP is under /var and there is some magic to map it to /snap.
|
||||||
|
# We need to handle that case and reset $SNAP
|
||||||
|
SNAP=$(echo "$SNAP" | sed -e "s|/var/lib/snapd||g")
|
||||||
|
|
||||||
|
if [ "$SNAP_ARCH" == "amd64" ]; then
|
||||||
|
ARCH="x86_64-linux-gnu"
|
||||||
|
elif [ "$SNAP_ARCH" == "armhf" ]; then
|
||||||
|
ARCH="arm-linux-gnueabihf"
|
||||||
|
elif [ "$SNAP_ARCH" == "arm64" ]; then
|
||||||
|
ARCH="aarch64-linux-gnu"
|
||||||
|
else
|
||||||
|
ARCH="$SNAP_ARCH-linux-gnu"
|
||||||
|
fi
|
||||||
|
|
||||||
|
GDK_CACHE_DIR="$SNAP_USER_COMMON/.cache"
|
||||||
|
if [[ -d "$SNAP_USER_DATA/.cache" && ! -e "$GDK_CACHE_DIR" ]]; then
|
||||||
|
# the .cache directory used to be stored under $SNAP_USER_DATA, migrate it
|
||||||
|
mv "$SNAP_USER_DATA/.cache" "$SNAP_USER_COMMON/"
|
||||||
|
fi
|
||||||
|
[ ! -d "$GDK_CACHE_DIR" ] && mkdir -p "$GDK_CACHE_DIR"
|
||||||
|
|
||||||
|
# Gdk-pixbuf loaders
|
||||||
|
export GDK_PIXBUF_MODULE_FILE="$GDK_CACHE_DIR/gdk-pixbuf-loaders.cache"
|
||||||
|
export GDK_PIXBUF_MODULEDIR="$SNAP/usr/lib/$ARCH/gdk-pixbuf-2.0/2.10.0/loaders"
|
||||||
|
if [ -f "$SNAP/usr/lib/$ARCH/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" ]; then
|
||||||
|
"$SNAP/usr/lib/$ARCH/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" > "$GDK_PIXBUF_MODULE_FILE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create $XDG_RUNTIME_DIR if not exists (to be removed when https://pad.lv/1656340 is fixed)
|
||||||
|
[ -n "$XDG_RUNTIME_DIR" ] && mkdir -p "$XDG_RUNTIME_DIR" -m 700
|
||||||
|
|
||||||
|
exec "$@"
|
||||||
91
stores/snapcraft/snap/snapcraft.yaml
Normal file
91
stores/snapcraft/snap/snapcraft.yaml
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
name: codium
|
||||||
|
adopt-info: codium
|
||||||
|
summary: Code editing. Redefined.
|
||||||
|
description: |
|
||||||
|
Binary releases of Code without branding/telemetry/licensing
|
||||||
|
|
||||||
|
base: core18
|
||||||
|
grade: stable
|
||||||
|
confinement: classic
|
||||||
|
compression: lzo
|
||||||
|
# architectures:
|
||||||
|
# - build-on: amd64
|
||||||
|
# - build-on: arm64
|
||||||
|
|
||||||
|
parts:
|
||||||
|
codium:
|
||||||
|
plugin: nil
|
||||||
|
override-build: |
|
||||||
|
set -eu
|
||||||
|
ARCHITECTURE=$(dpkg --print-architecture)
|
||||||
|
# Get GitHub releases
|
||||||
|
wget --quiet https://api.github.com/repos/VSCodium/vscodium/releases -O latest.json
|
||||||
|
VERSION=$(jq -r 'sort_by(.tag_name)|last.tag_name' latest.json)
|
||||||
|
DEB_URL=$(jq -r 'map(select(.tag_name == "'"$VERSION"'"))|first.assets[].browser_download_url|select(endswith("'"_$ARCHITECTURE.deb"'"))' latest.json)
|
||||||
|
DEB=$(basename "${DEB_URL}")
|
||||||
|
# Downloading .deb"
|
||||||
|
wget "${DEB_URL}" -O "${SNAPCRAFT_PART_INSTALL}/${DEB}"
|
||||||
|
# Unpacking .deb"
|
||||||
|
dpkg -x "${SNAPCRAFT_PART_INSTALL}/${DEB}" ${SNAPCRAFT_PART_INSTALL}
|
||||||
|
rm -f latest.json
|
||||||
|
rm -f "${SNAPCRAFT_PART_INSTALL}/${DEB}"
|
||||||
|
# Set version
|
||||||
|
snapcraftctl set-version "$VERSION"
|
||||||
|
# Correct path to icon.
|
||||||
|
sed -i 's|Icon=vscodium|Icon=${SNAP}/usr/share/pixmaps/vscodium.png|g' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/codium.desktop
|
||||||
|
sed -i 's|Exec=/usr/share/codium/codium|Exec=codium|g' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/codium.desktop
|
||||||
|
sed -i 's|Icon=vscodium|Icon=/usr/share/pixmaps/vscodium.png|g' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/codium-url-handler.desktop
|
||||||
|
build-packages:
|
||||||
|
- wget
|
||||||
|
- jq
|
||||||
|
stage-packages:
|
||||||
|
- fcitx-frontend-gtk3
|
||||||
|
- gvfs-libs
|
||||||
|
- libasound2
|
||||||
|
- libgconf-2-4
|
||||||
|
- libglib2.0-bin
|
||||||
|
- libgnome-keyring0
|
||||||
|
- libgtk-3-0
|
||||||
|
- libnotify4
|
||||||
|
- libnspr4
|
||||||
|
- libnss3
|
||||||
|
- libpcre3
|
||||||
|
- libpulse0
|
||||||
|
- libsecret-1-0
|
||||||
|
- libxshmfence1
|
||||||
|
- libxss1
|
||||||
|
- libxtst6
|
||||||
|
- zlib1g
|
||||||
|
- libx11-xcb1
|
||||||
|
- libxkbfile1
|
||||||
|
- libdrm2
|
||||||
|
- libgbm1
|
||||||
|
- libxcb-dri3-0
|
||||||
|
prime:
|
||||||
|
- -usr/share/doc
|
||||||
|
- -usr/share/fonts
|
||||||
|
- -usr/share/icons
|
||||||
|
- -usr/share/lintian
|
||||||
|
- -usr/share/man
|
||||||
|
- -usr/share/codium/chrome-sandbox
|
||||||
|
|
||||||
|
electron-launch:
|
||||||
|
after:
|
||||||
|
- codium
|
||||||
|
plugin: dump
|
||||||
|
source: snap/local
|
||||||
|
|
||||||
|
apps:
|
||||||
|
codium:
|
||||||
|
command: electron-launch $SNAP/usr/share/codium/bin/codium --no-sandbox
|
||||||
|
desktop: usr/share/applications/codium.desktop
|
||||||
|
environment:
|
||||||
|
DISABLE_WAYLAND: 1
|
||||||
|
GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
|
url-handler:
|
||||||
|
command: electron-launch $SNAP/usr/share/codium/bin/codium --open-url --no-sandbox
|
||||||
|
desktop: usr/share/applications/codium-url-handler.desktop
|
||||||
|
environment:
|
||||||
|
DISABLE_WAYLAND: 1
|
||||||
|
GSETTINGS_SCHEMA_DIR: $SNAP/usr/share/glib-2.0/schemas
|
||||||
@@ -2,7 +2,6 @@ DEFAULT_TRUE="'default': true"
|
|||||||
DEFAULT_FALSE="'default': false"
|
DEFAULT_FALSE="'default': false"
|
||||||
DEFAULT_ON="'default': TelemetryConfiguration.ON"
|
DEFAULT_ON="'default': TelemetryConfiguration.ON"
|
||||||
DEFAULT_OFF="'default': TelemetryConfiguration.OFF"
|
DEFAULT_OFF="'default': TelemetryConfiguration.OFF"
|
||||||
TELEMETRY_ENABLE="'telemetry.enableTelemetry':"
|
|
||||||
TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':"
|
TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':"
|
||||||
TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON"
|
TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON"
|
||||||
|
|
||||||
@@ -39,13 +38,12 @@ update_setting () {
|
|||||||
# construct line-aware replacement string
|
# construct line-aware replacement string
|
||||||
if [[ $line == *"$DEFAULT_TRUE"* ]]; then
|
if [[ $line == *"$DEFAULT_TRUE"* ]]; then
|
||||||
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_TRUE}/${DEFAULT_FALSE}/"
|
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_TRUE}/${DEFAULT_FALSE}/"
|
||||||
else
|
else
|
||||||
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_ON}/${DEFAULT_OFF}/"
|
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_ON}/${DEFAULT_OFF}/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
replace "$DEFAULT_TRUE_TO_FALSE" $FILENAME
|
replace "$DEFAULT_TRUE_TO_FALSE" $FILENAME
|
||||||
}
|
}
|
||||||
|
|
||||||
update_setting "$TELEMETRY_ENABLE" src/vs/platform/telemetry/common/telemetryService.ts
|
|
||||||
update_setting "$TELEMETRY_CRASH_REPORTER" src/vs/workbench/electron-sandbox/desktop.contribution.ts
|
update_setting "$TELEMETRY_CRASH_REPORTER" src/vs/workbench/electron-sandbox/desktop.contribution.ts
|
||||||
update_setting "$TELEMETRY_CONFIGURATION" src/vs/platform/telemetry/common/telemetryService.ts
|
update_setting "$TELEMETRY_CONFIGURATION" src/vs/platform/telemetry/common/telemetryService.ts
|
||||||
|
|||||||
Reference in New Issue
Block a user