mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-15 18:48:28 -05:00
Better marketplace presence
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# GitLens
|
# GitLens
|
||||||
|
|
||||||
Provides Git blame and blame history CodeLens for many supported Visual Studio Code languages (in theory -- the language must support symbol searching).
|
Provides Git information (most recent commit, number of authors) in CodeLens, on-demand inline blame annotations, a blame history explorer, and commands to compare changes with the working tree and/or previous versions.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|||||||
BIN
images/gitlens-icon.png
Normal file
BIN
images/gitlens-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
14
package.json
14
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"author": "Eric Amodio",
|
"author": "Eric Amodio",
|
||||||
"publisher": "eamodio",
|
"publisher": "eamodio",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -8,19 +8,21 @@
|
|||||||
},
|
},
|
||||||
"license": "SEE LICENSE IN LICENSE",
|
"license": "SEE LICENSE IN LICENSE",
|
||||||
"displayName": "GitLens",
|
"displayName": "GitLens",
|
||||||
"description": "Provides Git information in CodeLens",
|
"description": "Provides Git information (most recent commit, number of authors) in CodeLens, on-demand inline blame annotations, a blame history explorer, and commands to compare changes with the working tree and/or previous versions",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"git", "blame", "history", "log", "codelens"
|
"git", "blame", "gitblame", "log", "gitlog", "history", "codelens", "annotation"
|
||||||
],
|
],
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#0000FF",
|
"color": "#f0efe7",
|
||||||
"theme": "dark"
|
"theme": "light"
|
||||||
},
|
},
|
||||||
|
"icon": "images/gitlens-icon.png",
|
||||||
"preview": false,
|
"preview": false,
|
||||||
"bugs": {
|
"homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
|
||||||
|
"bugs": {
|
||||||
"url": "https://github.com/eamodio/vscode-gitlens/issues"
|
"url": "https://github.com/eamodio/vscode-gitlens/issues"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
Reference in New Issue
Block a user