Skip to content

Commit

Permalink
Release 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Apr 8, 2018
1 parent c13c060 commit 2bbe0c0
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,25 @@
# Changelog
## 3.3.0 (2018-04-08)
### New icons
- Processing (*.pde) ([@JotaroS](https://github.com/JotaroS) in [#229](https://github.com/PKief/vscode-material-icon-theme/pull/229))
- Storybook ([issue #235](https://github.com/PKief/vscode-material-icon-theme/issues/235))
- jest.teardown.js ([issue #230](https://github.com/PKief/vscode-material-icon-theme/issues/230))
- less folder ([issue #207](https://github.com/PKief/vscode-material-icon-theme/issues/207))
- wepy ([issue #226](https://github.com/PKief/vscode-material-icon-theme/issues/226))
- META-INF folder
- python folder
- manifest.mf
- xhtml

### Updated icons
- Vue.js
- less

### Other improvements
- Fixed issue with settings change detection ([issue #225](https://github.com/PKief/vscode-material-icon-theme/issues/225))
- Disabled update notification by default ([issue #225](https://github.com/PKief/vscode-material-icon-theme/issues/225))
- Added option to disable restart notification ([issue #225](https://github.com/PKief/vscode-material-icon-theme/issues/225))

## 3.2.6 (2018-03-17)
### New icons
- messages folder
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-lock.json

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

9 changes: 4 additions & 5 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.2.6",
"version": "3.3.0",
"publisher": "PKief",
"engines": {
"vscode": "^1.5.0"
Expand Down Expand Up @@ -132,7 +132,7 @@
},
"scripts": {
"vscode:prepublish": "npm run build",
"prebuild": "npm run clean",
"prebuild": "npm run lint && npm run clean",
"build": "npm run compile && npm run generateJson",
"postbuild": "npm run check",
"clean": "rimraf ./out",
Expand All @@ -141,10 +141,9 @@
"generateJson": "ts-node ./scripts/icons/generateJson.ts",
"check": "ts-node scripts/icons/checks",
"postinstall": "node ./node_modules/vscode/bin/install",
"tslint": "tslint -c tslint.json ./src/**/*.ts ./scripts/**/*ts",
"lint": "tslint -c tslint.json ./src/**/*.ts ./scripts/**/*ts",
"pretest": "npm run build",
"test": "node ./node_modules/vscode/bin/test",
"bithound": "bithound check git@github.com:PKief/vscode-material-icon-theme.git",
"preview": "npm run build && ts-node ./scripts/preview"
},
"dependencies": {
Expand All @@ -165,4 +164,4 @@
"typescript": "^2.8.1",
"vscode": "^1.1.14"
}
}
}
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, ['key']);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-expo']);
generatePreview('fileIcons', basicFileIcons, 5, []);
generatePreview('folderIcons', folderThemes, 5, ['folder', 'folder-expo', 'folder-messages']);

0 comments on commit 2bbe0c0

Please sign in to comment.