Bladeren bron

Changes Git Commands to Git Command Palette

main
Eric Amodio 4 jaren geleden
bovenliggende
commit
10f7254032
2 gewijzigde bestanden met toevoegingen van 19 en 19 verwijderingen
  1. +7
    -7
      CHANGELOG.md
  2. +12
    -12
      package.json

+ 7
- 7
CHANGELOG.md Bestand weergeven

@ -38,7 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Provides indicators of local changes, if any, or recent commit changes, and distinguishes between added, changed, and removed lines
- Similar to the built-in Git gutter changes for un-staged changes, but shows all local (un-pushed) changes
- Shows a changes hover with the full set of changes (diff hunk) and even with unsaved changes
- Adds new _Git Commands_
- Adds new commands to the _Git Command Palette_
- Adds a new _history_ (log) command to show the commit history of a branch or tag
- Adds a _Reveal in Side Bar_ button to the quick pick menu toolbar
- Adds keyboard navigation
@ -91,12 +91,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Integrates the _Line History_ view into the _File History_ view, although the old _Line History_ view can be re-enabled by setting `"gitlens.views.lineHistory.enabled": true` or via the GitLens Interactive Settings
- File vs Line History can be toggled via the _Toggle File/Line History_ command in the view's toolbar
- Renames _Pause/Resume File Tracking_ toggle to be _Pin/Unpin the Current File History_
- Overhauls the _Git Commands_ (`gitlens.gitCommands`) quick pick menus
- Overhauls the newly renamed _Git Command Palette_ (`gitlens.gitCommands`) quick pick menus
- Adds many more options
- Adds improved titles for better clarity, context, and flow
- Removes the _Keep Open_ toggle button to the quick pick menu toolbar — the behavior is now automatically determined (unless overridden by the `gitlens.gitCommands.closeOnFocusOut` setting)
- Changes avatars in the blame file annotations to new be displayed as part of the annotations rather than in the gutter
- Changes the _Git Commands' push_ command to honor and reflect the `git.useForcePushWithLease` setting
- Changes the _Git Command Palette_span>'s _push_ command to honor and reflect the `git.useForcePushWithLease` setting
- Changes to use VS Code's built-in icons (codicons) where possible — closes [#985](https://github.com/eamodio/vscode-gitlens/issues/985)
- Changes all _Open \* on Remote_ command icons to use the _globe_ codicon
- Changes to use codicons in hovers — closes [#954](https://github.com/eamodio/vscode-gitlens/issues/954)
@ -125,10 +125,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes delete of remote branches on the _Git Commands' branch_ command
- Fixes _Git Commands_ back tracking in certain cases
- Fixes delete of remote branches on the _Git Command Palette_span>'s _branch_ command
- Fixes _Git Command Palette_'s back tracking in certain cases
- Fixes issue to ensure that dropping a stash drops the correct item even if the view is out of date
- Fixes the _Push Stash & Keep Staged_ option on the _Git Commands' stash_ command
- Fixes the _Push Stash & Keep Staged_ option on the _Git Command Palette_span>'s _stash_ command
- Fixes issues with stashes and untracked files
- Fixes the wrong icon on the _Unstage All Changes_ command
- Fixes issue where a selection change wouldn't always trigger a Line History refresh
@ -136,7 +136,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixes _Incomplete string escaping or encoding_ code scan warning — https://github.com/eamodio/vscode-gitlens/security/code-scanning/1
- Fixes _Inefficient regular expression_ code scan warning — https://github.com/eamodio/vscode-gitlens/security/code-scanning/2
- Fixes [#1072](https://github.com/eamodio/vscode-gitlens/issues/1072) - Add whitespace to tree item tooltip — thanks to [PR #1073](https://github.com/eamodio/vscode-gitlens/pull/1073) by Alex ([@deadmeu](https://github.com/deadmeu))
- Fixes _Git Commands' stash drop_ command not working
- Fixes _Git Command Palette_span>'s _stash drop_ command not working
- Fixes [#1033](https://github.com/eamodio/vscode-gitlens/issues/1033) - Adopt VS Code's 'asWebviewUri' API
- Fixes issues with _Open Changes with Previous Revision_ and diff editors
- Fixes issues with _Open Changes with Working File_ and diff editors

+ 12
- 12
package.json Bestand weergeven

@ -573,7 +573,7 @@
"gitlens.gitCommands.closeOnFocusOut": {
"type": "boolean",
"default": true,
"markdownDescription": "Specifies whether to dismiss the Git Commands menu when focus is lost (if not, press `ESC` to dismiss)",
"markdownDescription": "Specifies whether to dismiss the _Git Command Palette_ when focus is lost (if not, press `ESC` to dismiss)",
"scope": "window"
},
"gitlens.gitCommands.search.matchAll": {
@ -640,25 +640,25 @@
],
"enumDescriptions": [
"Skips branch create confirmations when run from a command, e.g. a view action",
"Skips branch create confirmations when run from the `Git Commands` menu",
"Skips branch create confirmations when run from the Git Command Palette",
"Skips co-author confirmations when run from a command, e.g. a view action",
"Skips co-author confirmations when run from the `Git Commands` menu",
"Skips co-author confirmations when run from the Git Command Palette",
"Skips fetch confirmations when run from a command, e.g. a view action",
"Skips fetch confirmations when run from the `Git Commands` menu",
"Skips fetch confirmations when run from the Git Command Palette",
"Skips pull confirmations when run from a command, e.g. a view action",
"Skips pull confirmations when run from the `Git Commands` menu",
"Skips pull confirmations when run from the Git Command Palette",
"Skips push confirmations when run from a command, e.g. a view action",
"Skips push confirmations when run from the `Git Commands` menu",
"Skips push confirmations when run from the Git Command Palette",
"Skips stash apply confirmations when run from a command, e.g. a view action",
"Skips stash apply confirmations when run from the `Git Commands` menu",
"Skips stash apply confirmations when run from the Git Command Palette",
"Skips stash pop confirmations when run from a command, e.g. a view action",
"Skips stash pop confirmations when run from the `Git Commands` menu",
"Skips stash pop confirmations when run from the Git Command Palette",
"Skips stash push confirmations when run from a command, e.g. a view action",
"Skips stash push confirmations when run from the `Git Commands` menu",
"Skips stash push confirmations when run from the Git Command Palette",
"Skips switch confirmations when run from a command, e.g. a view action",
"Skips switch confirmations when run from the `Git Commands` menu",
"Skips switch confirmations when run from the Git Command Palette",
"Skips tag create confirmations when run from a command, e.g. a view action",
"Skips tag create confirmations when run from the `Git Commands` menu"
"Skips tag create confirmations when run from the Git Command Palette"
]
},
"minItems": 0,
@ -2745,7 +2745,7 @@
},
{
"command": "gitlens.gitCommands",
"title": "Git Commands",
"title": "Git Command Palette",
"category": "GitLens"
},
{

Laden…
Annuleren
Opslaan