mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-17 02:51:47 -05:00
Preps 0.2.0 release
This commit is contained in:
20
README.md
20
README.md
@@ -19,7 +19,17 @@ Must be using Git and it must be in your path.
|
|||||||
|
|
||||||
## Extension Settings
|
## Extension Settings
|
||||||
|
|
||||||
See the Contributions tab above
|
|Name | Description
|
||||||
|
|-----|------------
|
||||||
|
|_gitlens.blame.annotation.style_|Specifies the style of the blame annotations. Compact - groups annotations to limit the repetition and also adds author and date when possible. Expanded - shows an annotation on every line
|
||||||
|
|_gitlens.blame.annotation.sha_|Specifies whether the commit sha will be shown in the blame annotations. Applies only to the Expanded annotation style
|
||||||
|
|_gitlens.blame.annotation.author_|Specifies whether the committer will be shown in the blame annotations. Applies only to the Expanded annotation style
|
||||||
|
|_gitlens.blame.annotation.date_|Specifies whether the commit date will be shown in the blame annotations. Applies only to the Expanded annotation style
|
||||||
|
|_gitlens.blame.annotation.useCodeActions_|Specifies whether code actions (Diff with Working, Diff with Previous) will be provided for the selected line, when annotating. Not required as context menu options are always provided
|
||||||
|
|_gitlens.codeLens.recentChange.enabled_|Specifies whether the recent change CodeLens is shown
|
||||||
|
|_gitlens.codeLens.recentChange.command_|Specifies the command executed when the recent change CodeLens is clicked. Annotate - toggles blame annotations. Explorer - opens the blame explorer. History - opens a file history picker, which requires the Git History (git log) extension
|
||||||
|
|_gitlens.codeLens.authors.enabled_|Specifies whether the authors CodeLens is shown
|
||||||
|
|_gitlens.codeLens.authors.command_|Specifies the command executed when the authors CodeLens is clicked. Annotate - toggles blame annotations. Explorer - opens the blame explorer. History - opens a file history picker, which requires the Git History (git log) extension
|
||||||
|
|
||||||
## Known Issues
|
## Known Issues
|
||||||
|
|
||||||
@@ -30,6 +40,14 @@ See the Contributions tab above
|
|||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### 0.2.0
|
||||||
|
|
||||||
|
- Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository
|
||||||
|
- Replaces blame regex parsing with a more robust parser
|
||||||
|
- Fixes failures with Diff with Previous command
|
||||||
|
- Fixes issues with blame explorer CodeLens when dealing with previous commits
|
||||||
|
- Fixes display issues with compact blame annotations (now skips blank lines)
|
||||||
|
|
||||||
### 0.1.3
|
### 0.1.3
|
||||||
|
|
||||||
- Improved blame annotations, now with sha and author by default
|
- Improved blame annotations, now with sha and author by default
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "0.1.3",
|
"version": "0.2.0",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
@@ -162,10 +162,10 @@
|
|||||||
"lodash": "^4.15.0",
|
"lodash": "^4.15.0",
|
||||||
"moment": "^2.15.0",
|
"moment": "^2.15.0",
|
||||||
"spawn-rx": "^2.0.1",
|
"spawn-rx": "^2.0.1",
|
||||||
"tmp": "^0.0.28"
|
"tmp": "^0.0.29"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"typescript": "^2.0.0",
|
"typescript": "^2.0.2",
|
||||||
"vscode": "^0.11.17"
|
"vscode": "^0.11.17"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user