diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f6447004..628608991 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,25 @@ # Changelog +## 4.0.0 (2020-03-01) + +Minimum supported version is now set to VS Code v1.31. + +### New file icons +- Coconut ([issue #500](https://github.com/PKief/vscode-material-icon-theme/issues/500)) +- *.azure-pipelines.yaml ([@robinmanuelthiel](https://github.com/robinmanuelthiel) in [#636](https://github.com/PKief/vscode-material-icon-theme/pull/636)) +- .huskyrc.js ([@jinliming2](https://github.com/jinliming2) in [#642](https://github.com/PKief/vscode-material-icon-theme/pull/642)) +- Capacitor ([@PKief](https://github.com/PKief) in commit [a227490](https://github.com/PKief/vscode-material-icon-theme/commit/a2274907082f7fc46f5a462211cd26ddc2aaa011)) +- Sketch ([@PKief](https://github.com/PKief) in commit [32f3e1d](https://github.com/PKief/vscode-material-icon-theme/commit/32f3e1d978b3ffd2d08b76675bb393502bf41a4f)) + +### Updated icons +- Ruby ([@PKief](https://github.com/PKief) in commit [f533d23](https://github.com/PKief/vscode-material-icon-theme/commit/f533d23f99b78917943bbe37988b8f958055195a)) + +### Improvements +- Extension can now be used as workspace extension in VS Code Remote Container Development ([issue #643](https://github.com/PKief/vscode-material-icon-theme/issues/643)) +- Reload of the editor is not required anymore +- Remove "open" dependency ([issue #386](https://github.com/PKief/vscode-material-icon-theme/issues/386)) +- Migration from TSLint to ESLint ([@PKief](https://github.com/PKief) in commit [cd9930f](https://github.com/PKief/vscode-material-icon-theme/commit/cd9930f5f24c068a8850c684e4c4609ddcbd8917)) +- Add VSCode extension recommendations ([@PKief](https://github.com/PKief) in commit [96fe5fe](https://github.com/PKief/vscode-material-icon-theme/commit/96fe5fecea31230657948f5c6e6bb9c1271384f1)) + ## 3.9.3 (2020-02-09) ### New file icons - Liquid ([@fapolo](https://github.com/fapolo) in [#594](https://github.com/PKief/vscode-material-icon-theme/pull/594)) diff --git a/LICENSE.md b/LICENSE.md index 7a1fe3f91..31a85bc62 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,5 +1,5 @@ The MIT License (MIT) -Copyright (c) 2019 Philipp Kief +Copyright (c) 2020 Philipp Kief Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/images/contributors.png b/images/contributors.png index 768fd3a9e..d9eb61ec8 100644 Binary files a/images/contributors.png and b/images/contributors.png differ diff --git a/images/fileIcons.png b/images/fileIcons.png index ed42e8c0a..af6680e69 100644 Binary files a/images/fileIcons.png and b/images/fileIcons.png differ diff --git a/package-lock.json b/package-lock.json index ec484a200..609ea3d54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "material-icon-theme", - "version": "3.9.3", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e9e76ca1d..4a49fee07 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "material-icon-theme", "displayName": "Material Icon Theme", "description": "Material Design Icons for Visual Studio Code", - "version": "3.9.3", + "version": "4.0.0", "publisher": "PKief", "engines": { "vscode": "^1.31.0" diff --git a/src/scripts/preview/index.ts b/src/scripts/preview/index.ts index df33cfa75..e04752bb3 100644 --- a/src/scripts/preview/index.ts +++ b/src/scripts/preview/index.ts @@ -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', 'virtual', 'todo']); +generatePreview('fileIcons', basicFileIcons, 5, []); generatePreview('folderIcons', folderThemes, 5, ['folder-wakatime']);