🎉 Release of add-on Visual Studio Code 2.0.0-beta.1

This commit is contained in:
Community Hass.io Add-ons Bot 2020-02-16 10:23:11 +00:00
parent e2b15bc277
commit fd045d1748
4 changed files with 17 additions and 42 deletions

View file

@ -1121,10 +1121,10 @@ SOFTWARE.
[unifi-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
[unifi-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[unifi-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-vscode]: https://github.com/hassio-addons/addon-vscode/tree/v1.2.3
[addon-doc-vscode]: https://github.com/hassio-addons/addon-vscode/blob/v1.2.3/README.md
[addon-vscode]: https://github.com/hassio-addons/addon-vscode/tree/v2.0.0-beta.1
[addon-doc-vscode]: https://github.com/hassio-addons/addon-vscode/blob/v2.0.0-beta.1/README.md
[vscode-issue]: https://github.com/hassio-addons/addon-vscode/issues
[vscode-version-shield]: https://img.shields.io/badge/version-v1.2.3-blue.svg
[vscode-version-shield]: https://img.shields.io/badge/version-v2.0.0-beta.1-blue.svg
[vscode-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/vscode-amd64.svg
[vscode-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[vscode-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,14 +0,0 @@
[Full Changelog][changelog]
This is a general maintenance release.
### 🔨 Changes
- 🔨Disable update notification (#75)
- :arrow_up: Upgrades code-server to 2.1698
[changelog]: https://github.com/hassio-addons/addon-vscode/compare/v1.2.2...v1.2.3
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work:
https://github.com/sponsors/frenck or https://patreon.com/frenck

View file

@ -1,4 +1,4 @@
# Community Hass.io Add-ons: Visual Studio Code
# Home Assistant Community Add-on: Visual Studio Code
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
@ -29,7 +29,7 @@ instantly, without the need for configuring anything.
## WARNING! THIS IS A BETA VERSION!
This Hass.io Add-ons repository contains beta releases of add-ons.
This Home Assistant Add-ons repository contains beta releases of add-ons.
- They might stop working at any time.
- They could have a negative impact on your system.
@ -45,7 +45,7 @@ If you are more interested in stable releases of our add-ons:
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-vscode/blob/v1.2.3/README.md
[docs]: https://github.com/hassio-addons/addon-vscode/blob/v2.0.0-beta.1/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/?u=frenck
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
@ -54,6 +54,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-v1.2.3-blue.svg
[release]: https://github.com/hassio-addons/addon-vscode/tree/v1.2.3
[release-shield]: https://img.shields.io/badge/version-v2.0.0-beta.1-blue.svg
[release]: https://github.com/hassio-addons/addon-vscode/tree/v2.0.0-beta.1
[screenshot]: https://github.com/hassio-addons/addon-vscode/raw/master/images/screenshot.png

View file

@ -1,30 +1,22 @@
{
"name": "Visual Studio Code",
"version": "1.2.3",
"version": "2.0.0-beta.1",
"slug": "vscode",
"description": "Fully featured VSCode experience, to edit your HA config in the browser, including auto-completion!",
"url": "https://github.com/hassio-addons/addon-vscode",
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]",
"ingress": true,
"ingress_port": 1337,
"panel_icon": "mdi:visual-studio-code",
"startup": "services",
"homeassistant": "0.92.0b2",
"arch": [
"aarch64",
"amd64"
],
"boot": "auto",
"auto_uart": true,
"hassio_api": true,
"auth_api": true,
"hassio_role": "manager",
"homeassistant_api": true,
"auto_uart": true,
"ports": {
"80/tcp": null
},
"ports_description": {
"80/tcp": "VSCode (Not required for Hass.io Ingress)"
},
"map": [
"config:rw",
"ssl:rw",
@ -32,27 +24,24 @@
"share:rw",
"backup:rw"
],
"services": [
"mysql:want",
"mqtt:want"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"packages": [],
"init_commands": [],
"disable_telemetry": false
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"packages": [
"str"
],
"init_commands": [
"str"
],
"disable_telemetry": "bool?",
"leave_front_door_open": "bool?"
"disable_telemetry": "bool?"
},
"image": "hassioaddons/vscode-{arch}"
}