Skip to content

Commit

Permalink
Adds color to unpushed/unpulled changes & commits
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Nov 5, 2020
1 parent 294df1d commit afa47fb
Show file tree
Hide file tree
Showing 9 changed files with 12,143 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist/*
@types/*
src/@types/*
emojis.json
tsconfig.tsbuildinfo
30 changes: 28 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"url": "https://github.com/eamodio/vscode-gitlens.git"
},
"engines": {
"vscode": "^1.50.0"
"vscode": "^1.51.0"
},
"main": "./dist/gitlens",
"icon": "images/gitlens-icon.png",
Expand Down Expand Up @@ -2479,6 +2479,33 @@
"light": "#00BCF299",
"highContrast": "#00BCF299"
}
},
{
"id": "gitlens.viewCommitToPushIconColor",
"description": "Specifies the icon color of un-pushed commits in the GitLens views",
"defaults": {
"dark": "#35B15E",
"light": "#35B15E",
"highContrast": "#35B15E"
}
},
{
"id": "gitlens.viewChangesToPushIconColor",
"description": "Specifies the icon color of the _Changes to push_ node in the GitLens views",
"defaults": {
"dark": "#35B15E",
"light": "#35B15E",
"highContrast": "#35B15E"
}
},
{
"id": "gitlens.viewChangesToPullIconColor",
"description": "Specifies the icon color of the _Changes to pull_ node in the GitLens views",
"defaults": {
"dark": "#B15E35",
"light": "#B15E35",
"highContrast": "#B15E35"
}
}
],
"commands": [
Expand Down Expand Up @@ -8119,7 +8146,6 @@
"@types/lodash-es": "4.17.3",
"@types/node": "12.12.70",
"@types/sortablejs": "1.10.6",
"@types/vscode": "1.50.0",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"circular-dependency-plugin": "5.2.2",
Expand Down

0 comments on commit afa47fb

Please sign in to comment.