Skip to content

Commit

Permalink
.xib and .storyboard support (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertohuertasm committed Sep 24, 2016
1 parent 5dc53d9 commit b6658b1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log

## 2.0.6 (September 24, 2016)
- Enhancement: support for .xib and .storyboards. ([@robertohuertasm](https://github.com/robertohuertasm) in [#342](https://github.com/robertohuertasm/vscode-icons/pull/342))
- Enhancement: support for .vash. ([@robertohuertasm](https://github.com/robertohuertasm) in [#341](https://github.com/robertohuertasm/vscode-icons/pull/341))
- Enhancement: support for .css.map. ([@robertohuertasm](https://github.com/robertohuertasm) in [#340](https://github.com/robertohuertasm/vscode-icons/pull/340))
- Enhancement: support for Flow. ([@jens1o](https://github.com/jens1o) in [#333](https://github.com/robertohuertasm/vscode-icons/pull/333))
Expand Down
8 changes: 8 additions & 0 deletions icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,9 @@
"_f_stylus": {
"iconPath": "./icons/file_type_stylus@2x.png"
},
"_f_storyboard": {
"iconPath": "./icons/file_type_storyboard@2x.png"
},
"_f_svg": {
"iconPath": "./icons/file_type_svg@2x.png"
},
Expand Down Expand Up @@ -534,6 +537,9 @@
"_f_webpack": {
"iconPath": "./icons/file_type_webpack@2x.png"
},
"_f_xib": {
"iconPath": "./icons/file_type_xib@2x.png"
},
"_f_xliff": {
"iconPath": "./icons/file_type_xliff@2x.png"
},
Expand Down Expand Up @@ -840,6 +846,7 @@
"swig": "_f_smarty",
"stylelintrc": "_f_stylelint",
"styl": "_f_stylus",
"storyboard": "_f_storyboard",
"svg": "_f_svg",
"swift": "_f_swift",
"tcl": "_f_tcl",
Expand All @@ -861,6 +868,7 @@
"volt": "_f_volt",
"vue": "_f_vue",
"vscodeignore": "_f_vscode",
"xib": "_f_xib",
"xliff": "_f_xliff",
"xlf": "_f_xliff",
"xml": "_f_xml",
Expand Down
Binary file added icons/file_type_storyboard@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/file_type_xib@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/build/supportedExtensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ exports.extensions = {
{ icon: 'stylelint', extensions: ['stylelintrc'] },
{ icon: 'stylelint', extensions: ['stylelint.config.js'], special: 'js', contribType: ctype.filename },
{ icon: 'stylus', extensions: ['styl'] },
{ icon: 'storyboard', extensions: ['storyboard'] },
{ icon: 'svg', extensions: ['svg'] },
{ icon: 'swift', extensions: ['swift'] },
{ icon: 'tcl', extensions: ['tcl'] },
Expand All @@ -180,6 +181,7 @@ exports.extensions = {
{ icon: 'vscode', extensions: ['vscodeignore.json', 'launch.json', 'tasks.json', 'jsconfig.json', 'tsconfig.json'], special: 'json', contribType: ctype.filename },
{ icon: 'vscode', extensions: ['vscodeignore'] },
{ icon: 'webpack', extensions: ['webpack.config.js', 'webpack.config.babel.js', 'webpack.config.dev.js', 'webpack.config.staging.js', 'webpack.config.production.js'], special: 'js', contribType: ctype.filename },
{ icon: 'xib', extensions: ['xib'] },
{ icon: 'xliff', extensions: ['xliff', 'xlf'] },
{ icon: 'xml', extensions: ['xml', 'axml', 'xaml', 'pex'] },
{ icon: 'yaml', extensions: ['yml', 'yaml'] },
Expand Down

0 comments on commit b6658b1

Please sign in to comment.