Skip to content

Commit

Permalink
Release 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed May 25, 2019
1 parent 490d2c2 commit d1dc1ce
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 52 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,31 @@
# Changelog
## 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))
- Hot reload for hidesExplorerArrows configuration (in [c65d9a6](https://github.com/PKief/vscode-material-icon-theme/commit/c65d9a6935eb6cc09a779fd5cf49af26948fd8df))

### New file icons
- Netlify ([@leggsimon](https://github.com/leggsimon) in [#396](https://github.com/PKief/vscode-material-icon-theme/pull/396))
- .env ([@richardmillen94](https://github.com/richardmillen94) in [#423](https://github.com/PKief/vscode-material-icon-theme/pull/423))
- .leex ([@suazithustra](https://github.com/suazithustra) in [#424](https://github.com/PKief/vscode-material-icon-theme/pull/424))
- .tsbuildinfo (in [c408ac8](https://github.com/PKief/vscode-material-icon-theme/commit/c408ac8bb3274e69e3800b798227cee3777f6399))
- Svelte ([@simlej](https://github.com/simlej) in [#439](https://github.com/PKief/vscode-material-icon-theme/pull/439))
- .mocharc ([@yuric18](https://github.com/yuric18) in [#446](https://github.com/PKief/vscode-material-icon-theme/pull/446))
- Nuxt.js ([@Bakosa666](https://github.com/Bakosa666) in [#450](https://github.com/PKief/vscode-material-icon-theme/pull/450))

### New folder icons
- nuxt ([@Bakosa666](https://github.com/Bakosa666) in [#450](https://github.com/PKief/vscode-material-icon-theme/pull/450))
- Vue.js directives ([@Bakosa666](https://github.com/Bakosa666) in [#450](https://github.com/PKief/vscode-material-icon-theme/pull/450))

### Added translations
- Dutch translation ([@TheCloudSaver](https://github.com/TheCloudSaver) in [#444](https://github.com/PKief/vscode-material-icon-theme/pull/444))
- Polish translation ([@JakubKoralewski](https://github.com/JakubKoralewski) in [#453](https://github.com/PKief/vscode-material-icon-theme/pull/453))

### Other improvements
- Support remote development ([@mjbvz](https://github.com/mjbvz) in [#442](https://github.com/PKief/vscode-material-icon-theme/pull/442))
- Show language icons in preview (in [05bde2b](https://github.com/PKief/vscode-material-icon-theme/commit/05bde2bda649b289c14a93f57d5d1a8d0f6de754))
- Improved compatibility for older versions of VS Code (in [3fedead](https://github.com/PKief/vscode-material-icon-theme/commit/3fedead66b4fae725708c104bfb8fd5f79b92cf5))

## 3.7.0 (2019-03-24)
### New features
- Command for grayscale icons ([@cezarsa](https://github.com/cezarsa) in [#387](https://github.com/PKief/vscode-material-icon-theme/pull/387))
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.
88 changes: 45 additions & 43 deletions package-lock.json

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

14 changes: 7 additions & 7 deletions 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.7.0",
"version": "3.8.0",
"publisher": "PKief",
"engines": {
"vscode": "^1.5.0"
Expand Down Expand Up @@ -201,22 +201,22 @@
"dependencies": {
"lodash.merge": "4.6.1",
"open": "6.3.0",
"semver": "6.0.0"
"semver": "6.1.0"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.1",
"@types/node": "^12.0.2",
"@types/puppeteer": "^1.12.4",
"clean-webpack-plugin": "^2.0.2",
"mocha": "^6.1.4",
"puppeteer": "^1.15.0",
"puppeteer": "^1.17.0",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.0",
"ts-loader": "^6.0.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vscode": "^1.1.34",
"webpack": "^4.31.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}
}
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, []);
generatePreview('folderIcons', folderThemes, 5, []);
generatePreview('fileIcons', basicFileIcons, 5, ['powerpoint']);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-meta']);

0 comments on commit d1dc1ce

Please sign in to comment.