diff --git a/CHANGELOG.md b/CHANGELOG.md index bb2b44c..81d691b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,31 @@ All notable changes to the "bananium-plugin-pack" extension pack will be documen Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [1.1.0](https://github.com/BananiumLabs/VSCode-BananiumPluginPack/releases/tag/1.1.0) - 18 April 2018 + +### Added Plugins + +#### General + - [VSCode Live Share](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare) + +#### Java + - [Maven for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven) + +#### Web (HTML/CSS/JS/TS) + - [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + - [JS Code Snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets) + - [Path Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense) + +#### Node.js and NPM + - [Search node_modules](https://marketplace.visualstudio.com/items?itemName=jasonnutter.search-node-modules) + - [NPM Support for VSCode](https://marketplace.visualstudio.com/items?itemName=eg2.vscode-npm-script) + ## [1.0.0](https://github.com/BananiumLabs/VSCode-BananiumPluginPack/releases/tag/1.0.0) - 3 March 2018 - Initial release ### Added Plugins #### General - - [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) - [Atom Keybinds](https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings) - [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer) - [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme) @@ -29,4 +47,6 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how #### Web (HTML/CSS/JS/TS) - [FontAwesome Codes](https://marketplace.visualstudio.com/items?itemName=medzhidov.font-awesome-codes-html) - [HTML/CSS Language Support](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css) - - [TSLint](https://marketplace.visualstudio.com/items?itemName=eg2.tslint) + +#### Node.js and NPM + - [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) \ No newline at end of file diff --git a/README.md b/README.md index dd14c0c..36e810c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,6 @@ and insert a description of the plugin and a link to the marketplace page in the ## List of Extensions ### General - - [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) - [Atom Keybinds](https://marketplace.visualstudio.com/items?itemName=ms-vscode.atom-keybindings) - [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer) - [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme) @@ -24,6 +23,7 @@ and insert a description of the plugin and a link to the marketplace page in the ### Java - [RedHat Java Language Support](https://marketplace.visualstudio.com/items?itemName=redhat.java) + - [Maven for Java](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven) ### Angular - [Angular Support](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template) @@ -33,4 +33,12 @@ and insert a description of the plugin and a link to the marketplace page in the ### Web (HTML/CSS/JS/TS) - [FontAwesome Codes](https://marketplace.visualstudio.com/items?itemName=medzhidov.font-awesome-codes-html) - [HTML/CSS Language Support](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css) - - [TSLint](https://marketplace.visualstudio.com/items?itemName=eg2.tslint) \ No newline at end of file + - [TSLint](https://marketplace.visualstudio.com/items?itemName=eg2.tslint) + - [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + - [JS Code Snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets) + - [Path Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense) + + #### Node.js and NPM + - [Search node_modules](https://marketplace.visualstudio.com/items?itemName=jasonnutter.search-node-modules) + - [NPM Support for VSCode](https://marketplace.visualstudio.com/items?itemName=eg2.vscode-npm-script) + - [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) \ No newline at end of file diff --git a/package.json b/package.json index 562f5b9..072dc25 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bananium-plugin-pack", "displayName": "Bananium Plugin Pack", "description": "The official BananiumLabs plugin pack for VSCode", - "version": "1.0.0", + "version": "1.1.0", "homepage": "https://github.com/BananiumLabs/VSCode-BananiumPluginPack/blob/master/README.md", "publisher": "BananiumLabs", "engines": { @@ -19,16 +19,23 @@ "alexiv.vscode-angular2-files", "Angular.ng-template", "christian-kohler.npm-intellisense", + "christian-kohler.path-intellisense", "CoenraadS.bracket-pair-colorizer", + "dbaeumer.vscode-eslint", "ecmel.vscode-html-css", "eg2.tslint", + "eg2.vscode-npm-script", + "jasonnutter.search-node-modules", "Leopotam.csharpfixformat", "medzhidov.font-awesome-codes-html", "ms-vscode.atom-keybindings", "ms-vscode.csharp", + "ms-vsliveshare.vsliveshare", "natewallace.angular2-inline", "PKief.material-icon-theme", "redhat.java", + "vscjava.vscode-maven", + "xabikos.JavaScriptSnippets", "Zignd.html-css-class-completion" ] } \ No newline at end of file