diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6d0c27..9fc87a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,10 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [0.1.0] - Initial release + +## [0.2.0] + +- Improvements to error handling +- Validate Git installed on startup +- Validate git remote can connect on tutorial selection +- Fix component translation issues diff --git a/README.md b/README.md index 4872a3b7..0cc6a6b9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +![Visual Studio Marketplace Version](https://vsmarketplacebadge.apphb.com/version/Coderoad.coderoad.svg) +![Visual Studio Marketplace Installs](https://vsmarketplacebadge.apphb.com/installs/Coderoad.coderoad.svg) +![Visual Studio Marketplace Downloads](https://vsmarketplacebadge.apphb.com/downloads/Coderoad.coderoad.svg) + # CodeRoad VSCode CodeRoad is a VSCode extension that allows you to play interactive coding tutorials in your editor. @@ -30,7 +34,6 @@ Install CodeRoad from [this link in the VSCode Marketplace](https://marketplace. - Node.js 12+ (10+ soon #237) - Git - ## Creating Tutorials Build and share your own interactive tutorials. diff --git a/package-lock.json b/package-lock.json index fd2cc127..e4cf03ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "coderoad", - "version": "0.1.5", + "version": "0.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 602f6382..a75f0ab3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coderoad", - "version": "0.1.5", + "version": "0.2.0", "description": "Play interactive coding tutorials in your editor", "keywords": [ "tutorial", @@ -26,6 +26,7 @@ "scripts": { "build": "./scripts/build.sh", "postinstall": "node ./node_modules/vscode/bin/install", + "publish": "vsce publish -p $PERSONAL_ACCESS_TOKEN --packagePath ./releases/coderoad-$npm_package_version.vsix --baseContentUrl https://github.com/coderoad/coderoad-vscode/blob/master --baseImagesUrl https://github.com/coderoad/coderoad-vscode/blob/master", "lint": "eslint src/**/*ts", "package": "./scripts/package.sh", "storybook": "cd web-app && npm run storybook",