mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-15 10:58:36 -05:00
Preps v3.3.0
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### 3.3.0
|
||||||
|
- Adds `Search commits` command (`gitlens.showCommitSearch`) to allow commit searching by message, author, file pattern, or sha
|
||||||
|
- Adds `alt+f` shortcut for the `Search commits` command (`gitlens.showCommitSearch`)
|
||||||
|
- Adds `Show Commit Search` command to the branch history quick pick
|
||||||
|
- Adds `Show Stashed Changes` command to the repository status quick pick
|
||||||
|
- Adds a `Don't Show Again` option to the GitLen update notification
|
||||||
|
- Changes `Open x in Remote` commands to be no longer hidden behind the `gitlens.insiders` setting
|
||||||
|
- Fixes [#59](https://github.com/eamodio/vscode-gitlens/issues/59) - Context menu shows gitlens commands even if folder/file is not under git
|
||||||
|
|
||||||
### 3.2.1
|
### 3.2.1
|
||||||
- Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - No more blank message if `diff.tool` is missing
|
- Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - No more blank message if `diff.tool` is missing
|
||||||
|
|
||||||
|
|||||||
12
README.md
12
README.md
@@ -7,20 +7,22 @@ Provides Git CodeLens information (most recent commit, # of authors), on-demand
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Provides (optional) **CodeLens** on code blocks:
|
- Provides **CodeLens** on code blocks (optional, on by default):
|
||||||
- **Recent Change** - author and date of the most recent commit for that block
|
- **Recent Change** - author and date of the most recent commit for that block
|
||||||
- Clicking on the CodeLens opens a **commit details quick pick** ui (by default) with commands for comparing, navigating, and exploring commits
|
- Clicking on the CodeLens opens a **commit details quick pick** ui (by default) with commands for comparing, navigating, and exploring commits
|
||||||
- **Authors** - number of authors of a block and the most prominent author (if there are more than one)
|
- **Authors** - number of authors of a block and the most prominent author (if there are more than one)
|
||||||
- Clicking on the CodeLens toggles Git blame annotations on/off (by default)
|
- Clicking on the CodeLens toggles Git blame annotations on/off (by default)
|
||||||
|
- Provides Git blame information about the selected line to the right of the line with more details in a hover popup (optional, on by default)
|
||||||
- Provides on-demand **inline blame annotations** with multiple styles (compact, expanded, and trailing)
|
- Provides on-demand **inline blame annotations** with multiple styles (compact, expanded, and trailing)
|
||||||
- Provides (optional) Git blame information about the selected line in the **status bar**
|
- Provides Git blame information about the selected line in the **status bar** (optional, on by default)
|
||||||
- Clicking on the status bar toggles Git blame annotations on/off (by default)
|
- Clicking on the status bar opens a **commit details quick pick** ui (by default) with commands for comparing, navigating, and exploring commits
|
||||||
- Provides (optional) Git blame information about the selected line to the right of the line
|
|
||||||
- Provides ability to **compare diffs** with the working tree as well as with previous versions
|
- Provides ability to **compare diffs** with the working tree as well as with previous versions
|
||||||
|
- Provides ability to open files, commits, and branches in remote services (BitBucket, GitHub, GitLab, Visual Studio Team Services)
|
||||||
- Provides a Git **commit details quick pick** ui with detailed information about the commit, complete with commands for comparing, navigating, and exploring commits
|
- Provides a Git **commit details quick pick** ui with detailed information about the commit, complete with commands for comparing, navigating, and exploring commits
|
||||||
- Provides a Git **file history quick pick** ui for exploring the commit history of a file
|
- Provides a Git **file history quick pick** ui for exploring the commit history of a file
|
||||||
- Provides a Git **repository history quick pick** ui for exploring the commit history of a repository
|
- Provides a Git **branch history quick pick** ui for exploring the commit history of a branch
|
||||||
- Provides a Git **repository status quick pick** ui for exploring the status of a repository
|
- Provides a Git **repository status quick pick** ui for exploring the status of a repository
|
||||||
|
- Provides a Git **stashed changes quick pick** ui for exploring the history of your stashed changes
|
||||||
- Provides a Git **file history explorer** (peek style ui) to visualize the history of a file
|
- Provides a Git **file history explorer** (peek style ui) to visualize the history of a file
|
||||||
- Provides a Git **blame history explorer** (peek style ui) to visualize the blame history of a file or block
|
- Provides a Git **blame history explorer** (peek style ui) to visualize the blame history of a file or block
|
||||||
- Provides many configuration settings to allow the **customization** of almost all features
|
- Provides many configuration settings to allow the **customization** of almost all features
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "3.2.1",
|
"version": "3.3.0",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user