├── docs ├── CNAME ├── _layouts │ ├── page.html │ ├── bare.html │ ├── post.html │ └── default.html ├── .gitignore ├── images │ ├── code.png │ ├── nav-bg.gif │ ├── gpg-logo.png │ ├── rpm-logo.png │ └── debian-logo.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── Gemfile ├── _includes │ ├── page-footer.html │ ├── head.html │ └── page-header.html ├── _config.yml ├── jekyll-cayman-theme.gemspec ├── installers │ ├── android.sh │ ├── apt.sh │ ├── yum.sh │ └── chromebook.sh ├── scss │ └── .scss-lint.yml ├── css │ ├── normalize.css │ ├── cayman.scss │ └── font-awesome.min.css └── index.html ├── .gitignore ├── cobbler ├── merger_rsa.enc ├── tmpdir.js ├── intercept.py ├── setup_nvm.sh ├── pipelines ├── dock.sh ├── build-all.yml └── build-for-arch.yml ├── LICENSE.txt ├── README.md ├── overlays ├── resources │ └── linux │ │ ├── debian │ │ └── postinst.template │ │ └── rpm │ │ └── dependencies.json ├── build │ ├── npm │ │ └── postinstall.js │ └── gulpfile.vscode.js └── product.json └── codebuilds.gpg /docs/CNAME: -------------------------------------------------------------------------------- 1 | code.headmelted.com -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | kitchen/.builds 3 | -------------------------------------------------------------------------------- /cobbler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/cobbler -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .bundle 3 | .sass-cache 4 | Gemfile.lock 5 | .DS_Store -------------------------------------------------------------------------------- /merger_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/merger_rsa.enc -------------------------------------------------------------------------------- /docs/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/images/code.png -------------------------------------------------------------------------------- /docs/images/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/images/nav-bg.gif -------------------------------------------------------------------------------- /docs/images/gpg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/images/gpg-logo.png -------------------------------------------------------------------------------- /docs/images/rpm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/images/rpm-logo.png -------------------------------------------------------------------------------- /docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/images/debian-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/images/debian-logo.png -------------------------------------------------------------------------------- /tmpdir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const os = require('os'); 3 | console.log('TMPDIR is [' + os.tmpdir() + ']'); 4 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll' 4 | #gem 'jekyll-paginate' 5 | gem 'kramdown' 6 | -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/headmelted/codebuilds/HEAD/docs/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_layouts/bare.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | {{ content }} 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |The primary focus of this site is to provide builds of the open-source edition of VS Code for less common platforms (those that might not otherwise receive them). You can find details below of the architectures, operating systems and packaging formats these builds support.
15 |If your Chromebook supports the Linux Apps feature, the best way to install the application is to download the corresponding deb package for your architecture from the Releases page.
43 | 44 |The instructions below require you to put your device into Developer Mode. There are important security implications to doing this, so please consider the ramifications carefully before deciding to do so. Please click here for more details.
46 |. <( wget -O - https://code.headmelted.com/installers/chromebook.sh )53 | 54 |
Packages are currently available in DEB and RPM format.
63 | 64 |You can use the scripts here to install the packages and add their repository to your system.
65 | 66 |Open a new terminal. If you need super-user rights (you probably do), then you can enter sudo -s and press return 67 | to enter a super-user session. Run the installer for your current distribution:
68 | 69 |. <( wget -O - https://code.headmelted.com/installers/apt.sh )73 | 74 |
. <( wget -O - https://code.headmelted.com/installers/yum.sh )78 | 79 |
Press the return key. Once the installer has completed, you should have a "Code - OSS" entry in your desktop program list.
80 | 81 |If for any reason the script above will not work on your system, or you do not want to add the package source 84 | for updates, you can get the latest version of the package for your system below.
85 | 86 |For either APT or YUM installation, you'll want the public GPG key to verify the package, which you can download here.
89 | 90 |The latest packages are now available directly from the PackageCloud releases page.
93 | 94 |Your use of the software releases discussed here is subject to the terms of the CODEBUILDS license and to the Microsoft vscode license.
175 |182 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 183 |
184 |