Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Commit a975ba5

Browse files
committed
Add icon and marketplace metadata
1 parent 1831efa commit a975ba5

File tree

5 files changed

+99
-3
lines changed

5 files changed

+99
-3
lines changed

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ vsc-extension-quickstart.md
77
**/tsconfig.json
88
**/tslint.json
99
**/*.map
10-
**/*.ts
10+
**/*.ts
11+
**/*.svg

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ settings:
4040

4141
Preview release. May contain bugs; if you encounter any issues or have feature
4242
requests, please submit an issue on this repository!
43+
44+
### 0.5.1
45+
46+
Adds icon.

icon.png

1.33 KB
Loading

icon.svg

Lines changed: 80 additions & 0 deletions
Loading

package.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,22 @@
33
"displayName": "Python Docstring Formatter",
44
"publisher": "iansan5653",
55
"description": "Format docstrings in Python using PEP 257 standards.",
6-
"version": "0.5.0",
7-
"repository": "https://github.com/iansan5653/vscode-format-python-docstrings",
6+
"version": "0.5.1",
7+
"icon": "icon.png",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/iansan5653/vscode-format-python-docstrings"
11+
},
12+
"issues": {
13+
"url": "https://github.com/iansan5653/vscode-format-python-docstrings/issues"
14+
},
815
"engines": {
916
"vscode": "^1.32.0"
1017
},
18+
"galleryBanner": {
19+
"color": "#646464",
20+
"theme": "light"
21+
},
1122
"categories": [
1223
"Formatters"
1324
],

0 commit comments

Comments
 (0)