Skip to content

Commit e929db0

Browse files
author
Eric Amodio
committed
Preps for 0.0.4 release
1 parent b7920f3 commit e929db0

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Provides Git blame and blame history CodeLens for many supported Visual Studio C
44

55
## Features
66

7-
Provides CodeLens with the author and date of the last check-in.
7+
Provides two CodeLens on code blocks :
8+
- **Recent Change** - author and date of the most recent check-in
9+
> Clicking on the CodeLens opens a **Blame explorer** with the commits and changed lines in the right pane and the commit (file) contents on the left
10+
- **Blame** - number of authors of a block and the most prominent author (if there are more than one)
11+
> Clicking on the CodeLens toggles Git blame overlay
812
9-
> ![CodeLens](https://raw.githubusercontent.com/eamodio/vscode-git-codelens/master/images/preview-codelens.png)
10-
11-
Clicking on a CodeLens opens a blame "explorer" with the commits and changed lines in the right pane and the commit (file) contents on the left.
12-
13-
> ![Blame Explorer](https://raw.githubusercontent.com/eamodio/vscode-git-codelens/master/images/preview-blame.png)
13+
> ![GitLens preview](https://raw.githubusercontent.com/eamodio/vscode-git-codelens/master/images/preview-gitlens.gif)
1414
1515
## Requirements
1616

@@ -22,10 +22,17 @@ None yet.
2222

2323
## Known Issues
2424

25-
Too many to count -- this is still very much a work in progress.
25+
- Content in the **Blame explorer** disappears after a bit: [Open vscode issue](https://github.com/Microsoft/vscode/issues/11360)
26+
- Highlighted lines disappear in **Blame explorer** after changing selection and returning to a previous selection: [Open vscode issue](https://github.com/Microsoft/vscode/issues/11360)
27+
- CodeLens aren't updated properly after a file is saved: [Open vscode issue](https://github.com/Microsoft/vscode/issues/11546)
28+
- Visible whitespace causes issue with blame overlay (currently fixed with a hack, but fails randomly): [Open vscode issue](https://github.com/Microsoft/vscode/issues/11485)
2629

2730
## Release Notes
2831

32+
### 0.0.4
33+
34+
Candidate for preview release on the vscode marketplace.
35+
2936
### 0.0.1
3037

3138
Initial release but still heavily a work in progress.

images/preview-gitlens.gif

1.14 MB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitlens",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"author": "Eric Amodio",
55
"publisher": "eamodio",
66
"engines": {

0 commit comments

Comments
 (0)