Browse Source

Renames explore repo command

main
Eric Amodio 5 years ago
parent
commit
c4af488ac2
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      CHANGELOG.md
  2. +2
    -2
      package.json

+ 2
- 2
CHANGELOG.md View File

@ -17,7 +17,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Adds last commit date to branches in quick pick menus and views
- Adds ability to copy the selected item's details to the clipboard using the standard copy shortcut key when focused on a GitLens view
- Adds an _Open Revision_ command to the editor toolbar and tabs context menu when a revision file is active in the diff editor
- Adds an _Explore Repository from Here_ command to the editor toolbar and tabs context menu when a revision file is active
- Adds an _Explore Repository from Revision_ command to the editor toolbar and tabs context menu when a revision file is active
- Adds a _Prune_ command to remotes in the _Repositories_ view to prune remote references — closes [#556](https://github.com/eamodio/vscode-gitlens/issues/556) thanks to [PR #815](https://github.com/eamodio/vscode-gitlens/pull/815) by Zach Boyle ([@zaboyle](https://github.com/zaboyle))
- Adds support to use the GitHub avatar (if available) for authors with `@users.noreply.github.com` email addresses — partially addresses [#281](https://github.com/eamodio/vscode-gitlens/issues/281) thanks to [PR #814](https://github.com/eamodio/vscode-gitlens/pull/814) by bolte-17 ([@bolte-17](https://github.com/bolte-17))
@ -67,7 +67,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixes [#738](https://github.com/eamodio/vscode-gitlens/issues/738) - Disable showWhatsNewAfterUpgrades notification
- Fixes typo of "workbench.colorCustomization" in README — thanks to [PR #823](https://github.com/eamodio/vscode-gitlens/pull/823) by Kwok ([@mankwok](https://github.com/mankwok))
- Fixes an issue with branch sorting when the current branch was tree'd
- Fixes an issue with the _Explore Repository from Here_ command in the latest VS Code Insiders
- Fixes an issue with the _Explore Repository from Revision_ command in the latest VS Code Insiders
## [9.9.3] - 2019-08-06

+ 2
- 2
package.json View File

@ -2440,7 +2440,7 @@
},
{
"command": "gitlens.exploreRepoAtRevision",
"title": "Explore Repository from Here",
"title": "Explore Repository from Revision",
"category": "GitLens",
"icon": {
"dark": "images/dark/icon-open-folder.svg",
@ -2449,7 +2449,7 @@
},
{
"command": "gitlens.views.exploreRepoAtRevision",
"title": "Explore Repository from Here",
"title": "Explore Repository from Revision",
"category": "GitLens",
"icon": {
"dark": "images/dark/icon-open-folder.svg",

Loading…
Cancel
Save