Skip to content

Commit

Permalink
Release 3.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Jul 17, 2019
1 parent 34d8f46 commit 87b183f
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 8 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,28 @@
# Changelog
## 3.8.1 (2019-07-17)
### New file icons
- MoonScript ([issue #485](https://github.com/PKief/vscode-material-icon-theme/issues/485))
- Vim ([@dotiful](https://github.com/dotiful) in [#458](https://github.com/PKief/vscode-material-icon-theme/pull/458))
- SilverStripe ([@purplespider](https://github.com/purplespider) in [#457](https://github.com/PKief/vscode-material-icon-theme/pull/457))
- Brotli ([@richiksc](https://github.com/richiksc) in [#460](https://github.com/PKief/vscode-material-icon-theme/pull/460))
- Unlicense ([@Logerfo](https://github.com/Logerfo) in [#474](https://github.com/PKief/vscode-material-icon-theme/pull/474))
- *.gitlab-ci.yml ([@martin-sweeny](https://github.com/martin-sweeny) in [#465](https://github.com/PKief/vscode-material-icon-theme/pull/465))
- go.mod, go.sum ([@chrsmutti](https://github.com/chrsmutti) in [#475](https://github.com/PKief/vscode-material-icon-theme/pull/475))
- C/C++ icon cases ([@omento](https://github.com/omento) in [#488](https://github.com/PKief/vscode-material-icon-theme/pull/488))
- .dtx, .ltx ([@AlexaraWu](https://github.com/AlexaraWu) in [#481](https://github.com/PKief/vscode-material-icon-theme/pull/481))
- jsx / tsx router ([@lffg](https://github.com/lffg) in [#491](https://github.com/PKief/vscode-material-icon-theme/pull/491))
- PostCSS ([issue #461](https://github.com/PKief/vscode-material-icon-theme/issues/461))
- .env ([issue #484](https://github.com/PKief/vscode-material-icon-theme/issues/484))
- nodemon-debug.json
- Nest

### New folder icons
- error ([@lffg](https://github.com/lffg) in [#490](https://github.com/PKief/vscode-material-icon-theme/pull/490))
- website

### Other improvements
- Add profile pictures of contributors to Readme.md ([issue #448](https://github.com/PKief/vscode-material-icon-theme/issues/448))

## 3.8.0 (2019-05-25)
### New features
- Vue.js and Vuex theme ([@Bakosa666](https://github.com/Bakosa666) in [#402](https://github.com/PKief/vscode-material-icon-theme/pull/402))
Expand Down
2 changes: 1 addition & 1 deletion README.md

Large diffs are not rendered by default.

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.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.8.0",
"version": "3.8.1",
"publisher": "PKief",
"engines": {
"vscode": "^1.5.0"
Expand Down
4 changes: 2 additions & 2 deletions src/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, ['powerpoint']);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-meta']);
generatePreview('fileIcons', basicFileIcons, 5, ['powerpoint', 'virtual']);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-meta', 'folder-wakatime']);

0 comments on commit 87b183f

Please sign in to comment.