Skip to content

Commit b0c27ca

Browse files
authored
add extension icon (#32)
1 parent 29e32ab commit b0c27ca

File tree

6 files changed

+26
-8
lines changed

6 files changed

+26
-8
lines changed

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
# build files
12
out/
23
dist/
3-
node_modules/
44
*.vsix
55

6-
# Editor files
6+
# editor files
77
*.code-workspace
88
.vscode/
9+
10+
# other
11+
node_modules/

.vscodeignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
# raw images
2+
*.xcf
3+
4+
# other
15
.github/
26
.vscode/
7+
*.code-workspace
38
src/
4-
**/tests/**
9+
**/tests/
510
**/*.map
611
.gitignore
712
tsconfig.json

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
# Visual Basic language support for VS Code
22

3-
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/serkonda7/vscode-vba/CI)
4-
[![Version](https://vsmarketplacebadge.apphb.com/version/serkonda7.vscode-vba.svg)](https://marketplace.visualstudio.com/items?itemName=serkonda7.vscode-vba)
5-
[![Installs](https://vsmarketplacebadge.apphb.com/installs/serkonda7.vscode-vba.svg)](https://marketplace.visualstudio.com/items?itemName=serkonda7.vscode-vba)
3+
![GitHub Workflow Status][workflow-status]
4+
[![Version][version-badge]][marketplace-url]
5+
[![Installs][installs-badge]][marketplace-url]
66

77
## Installation
88
Launch the quick open view (`ctrl`+`P`) and run the following command.
99
```
1010
ext install serkonda7.vscode-vba
1111
```
1212
## License
13-
[MIT](LICENSE.md)
13+
Core extension parts are covered by the [MIT license](LICENSE.md).<br>
14+
The icon ,originally created by [Roberto Huertas][icon-source] with the text added by Lukas Neubert, is licensed under [CC BY 4.0][cc-by-4].
15+
16+
<!-- links -->
17+
[workflow-status]: https://img.shields.io/github/workflow/status/serkonda7/vscode-vba/CI
18+
[version-badge]: https://vsmarketplacebadge.apphb.com/version/serkonda7.vscode-vba.svg
19+
[installs-badge]: https://vsmarketplacebadge.apphb.com/installs/serkonda7.vscode-vba.svg
20+
[marketplace-url]: https://marketplace.visualstudio.com/items?itemName=serkonda7.vscode-vba
21+
[icon-source]: https://icon-icons.com/icon/file-type-vba/130097
22+
[cc-by-4]: https://creativecommons.org/licenses/by/4.0/

images/icon_256x256.png

42.1 KB
Loading

images/icon_256x256.xcf

49.1 KB
Binary file not shown.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "vscode-vba",
33
"displayName": "VBA",
44
"description": "Visual Basic language support for VS Code.",
5-
"version": "0.1.3",
5+
"icon": "images/icon_256x256.png",
6+
"version": "0.1.4-dev",
67
"license": "MIT",
78
"repository": {
89
"type": "git",

0 commit comments

Comments
 (0)