diff --git a/.editorconfig b/.editorconfig old mode 100644 new mode 100755 diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c69e8..824c690 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,14 @@ All notable changes to the "vscode-profile-switcher" extension will be documented in this file. -Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +Check [Keep a Changelog](http://keepachan2gelog.com/) for recommendations on how to structure this file. -## 0.1.1 +## 0.1.2 - 2019-06-24 + +- Adding a logo +- Adding a demo of extension to readme +- Added Azure Pipelines for CI/CD + +## 0.1.1 - 2019-06-21 - Initial preview release release \ No newline at end of file diff --git a/License.md b/License.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md index 1ed2fa0..4f3b9db 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # VS Code Profile Switcher +[![Badge for version for Visual Studio Code extension aaronpowell.vscode-profile-switcher](https://vsmarketplacebadge.apphb.com/version/aaronpowell.vscode-profile-switcher.svg?color=blue&style=?style=for-the-badge&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher&wt.mc_id=profileswitcher-github-aapowell) [![Installs](https://vsmarketplacebadge.apphb.com/installs-short/aaronpowell.vscode-profile-switcher.svg?color=blue&style=flat-square)](https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher&wt.mc_id=profileswitcher-github-aapowell) +[![Rating](https://vsmarketplacebadge.apphb.com/rating/aaronpowell.vscode-profile-switcher.svg?color=blue&style=flat-square)](https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher&wt.mc_id=profileswitcher-github-aapowell) [![The MIT License](https://img.shields.io/badge/license-MIT-orange.svg?color=blue&style=flat-square)](http://opensource.org/licenses/MIT) + This extension allows you to define a number of settings profiles that you can easily switch between. The original idea for this extension came from my desire to have an easy way for me to switch my VS Code to a setup that was better optimised for presenting (changed themes, increase font size, etc). ## Install @@ -13,6 +16,8 @@ This extension allows you to define a number of settings profiles that you can e The extension introduces three new commands that you can use from the command panel. All commands are prefixed with `Profile Switcher`. +![Demo of the extension in action](images/readme-demo.gif) + ### Save Profile This saved the current **user** settings with the name you provide. You can use this to create a new profile or you can update an existing profile. The profile, when saved, is done so against your user-level settings. diff --git a/images/logo.pdn b/images/logo.pdn new file mode 100755 index 0000000..4a88ac5 Binary files /dev/null and b/images/logo.pdn differ diff --git a/images/logo.png b/images/logo.png new file mode 100755 index 0000000..c0ee4ce Binary files /dev/null and b/images/logo.png differ diff --git a/images/readme-demo.gif b/images/readme-demo.gif new file mode 100755 index 0000000..26da5be Binary files /dev/null and b/images/readme-demo.gif differ diff --git a/package.json b/package.json index 6c3cc3d..3b8bc4d 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,17 @@ "name": "vscode-profile-switcher", "displayName": "Profile Switcher", "description": "Allows you to switch between different profiles you have created", - "version": "0.1.1", + "version": "0.1.2", "preview": true, "license": "SEE LICENSE IN LICENSE.md", "publisher": "aaronpowell", + "homepage": "https://github.com/aaronpowell/vscode-profile-switcher/blob/master/README.md", + "icon": "images/logo.png", + "galleryBanner": { + "color": "#373436", + "theme": "light" + }, + "extensionKind": "ui", "repository": { "type": "git", "url": "https://github.com/aaronpowell/vscode-profile-switcher.git" diff --git a/src/settingsHelper.ts b/src/settingsHelper.ts old mode 100644 new mode 100755