Skip to content

Commit

Permalink
Release 3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Mar 17, 2018
1 parent 6b37462 commit 13680e9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,16 @@
# Changelog
## 3.2.6 (2018-03-17)
### New icons
- messages folder
- benchmark folder
- docker-compose.override.yml ([@melkarm](https://github.com/melkarm) in [#219](https://github.com/PKief/vscode-material-icon-theme/pull/219))
- .nyc-output folder ([issue #192](https://github.com/PKief/vscode-material-icon-theme/issues/192))
- Jest ([issue #192](https://github.com/PKief/vscode-material-icon-theme/issues/192))
- .vbs

### Other improvements
- Fixed issue with settings change detection ([issue #221](https://github.com/PKief/vscode-material-icon-theme/issues/221))

## 3.2.5 (2018-03-11)
- Fixed broken color of docker icon

Expand Down
Binary file modified images/fileIcons.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/folderIcons.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "material-icon-theme",
"displayName": "Material Icon Theme",
"description": "Material Design Icons for Visual Studio Code",
"version": "3.2.5",
"version": "3.2.6",
"publisher": "PKief",
"engines": {
"vscode": "^1.5.0"
Expand Down
4 changes: 2 additions & 2 deletions scripts/preview/index.ts
Expand Up @@ -25,5 +25,5 @@ const folderThemes = filterDuplicates(folderIcons.map(theme => {
return [].concat(...folders);
}).reduce((a, b) => a.concat(b))).map(i => ({ iconName: i, label: i.replace('folder-', '') }));

generatePreview('fileIcons', basicFileIcons, 5, []);
generatePreview('folderIcons', folderThemes, 5, []);
generatePreview('fileIcons', basicFileIcons, 5, ['key']);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-expo']);

0 comments on commit 13680e9

Please sign in to comment.