Skip to content

Commit

Permalink
Version 0.4.4 (minor snippet fixes)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuart Preston committed Dec 19, 2015
1 parent f15b43e commit 177bea2
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
"out": false,// set this to true to hide the "out" folder with the compiled JS files
"images/vscode-chef-install.gif": true // don't include huge gif with package :(
},
"search.exclude": {
"out": true
Expand Down
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ test/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
vscode-chef-install.gif
images/vscode-chef-install.gif
**/*.vsix
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## 0.4.4 (2015-12-19)

Bugfixes:
- Reduce download time by removing huge gif from package (@stuartpreston)

## 0.4.3 (2015-12-19)

Bugfixes:
- fix indentation of template resource. (@chris-rock)
- Various snippet bugfixes for Rubocop compliance. (@stuartpreston)

## 0.4.2 (2015-11-18)

Features:
- Initial release to coincide with Microsoft Connect conference.
- Syntax/keyword highlighting
- Rubocop linting
- Snippet support

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Chef",
"description": "Chef language support and snippets for Visual Studio Code",
"version": "0.4.2",
"version": "0.4.4",
"publisher": "Pendrica",
"icon": "images/chef-logo.svg",
"displayName": "Chef Extension for Visual Studio Code",
Expand Down
4 changes: 2 additions & 2 deletions snippets/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
},
"registry_key": {
"prefix": "registry_key",
"body": "registry_key '${1:key_name}' do\r\n values [{\r\n name: '${2:name}',\r\n type: '${3:type}',\r\n data: '${4:data}'\r\n }]\r\naction :${5:create}\r\nend\r\n",
"body": "registry_key '${1:key_name}' do\r\n values [{\r\n name: '${2:name}',\r\n type: '${3:type}',\r\n data: '${4:data}'\r\n }]\r\n action :${5:create}\r\nend\r\n",
"description": "Use the registry_key resource to create and delete registry keys in Microsoft Windows.",
"scope": "source.ruby.chef"
},
Expand Down Expand Up @@ -325,7 +325,7 @@
},
"subversion": {
"prefix": "subversion",
"body": "subversion '${1:name}' do\r\n repository '${2:svn_repository}'\r\n revision '${3:HEAD}'\r\n destination '${4:destination_path}'\r\naction :${5:sync}\r\nend\r\n",
"body": "subversion '${1:name}' do\r\n repository '${2:svn_repository}'\r\n revision '${3:HEAD}'\r\n destination '${4:destination_path}'\r\n action :${5:sync}\r\nend\r\n",
"description": "Use the subversion resource to manage source control resources that exist in a Subversion repository.",
"scope": "source.ruby.chef"
},
Expand Down

0 comments on commit 177bea2

Please sign in to comment.