diff --git a/.gitignore b/.gitignore index 10686ce..7fc85ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules .vscode-test/ *.vsix +azureToken diff --git a/.vscodeignore b/.vscodeignore index 2f361b0..208b528 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -6,3 +6,5 @@ vsc-extension-quickstart.md **/jsconfig.json **/*.map **/.eslintrc.json +images/** +azureToken diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000..c0d83e3 Binary files /dev/null and b/assets/icon.png differ diff --git a/extension.js b/extension.js index f9bd584..a2dc0b8 100644 --- a/extension.js +++ b/extension.js @@ -42,3 +42,4 @@ module.exports = { activate, deactivate } + \ No newline at end of file diff --git a/package.json b/package.json index 030a94e..c34fe5c 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,20 @@ "vscode": "^1.43.0" }, "publisher": "shawtung", + "repository": { + "type": "git", + "url": "https://github.com/shawtung/vscode-commentlinedown.git" + }, + "icon": "assets/icon.png", + "galleryBanner": { + "color": "#C80000", + "theme": "dark" + }, "categories": [ "Other" ], "keywords": ["line comment", "next line"], + "homepage": "https://github.com/shawtung/vscode-commentlinedown/blob/master/README.md", "activationEvents": [ "*" ],