mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-12 02:58:32 -05:00
Preparing for a 1.0 release
Fixes #10 vscode/#11485 makes gitlens unusable with whitespace rendering Fixes #11 Not showing details of commits Fixes #12 command 'gitlens.XXX' not found Fixes #13 Handle exception when you open a file that does not exist in a git repository Fixes #14 Remove logs from production build
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### 0.9.0
|
### 1.0.0
|
||||||
|
|
||||||
- Adds support for git history (log)!
|
- Adds support for git history (log)!
|
||||||
- Adds support for blame annotations and git commands on file revisions
|
- Adds support for blame annotations and git commands on file revisions
|
||||||
@@ -15,6 +15,7 @@
|
|||||||
- Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
|
- Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
|
||||||
- Switches on-demand CodeLens to be a global toggle (rather than per file)
|
- Switches on-demand CodeLens to be a global toggle (rather than per file)
|
||||||
- Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
|
- Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
|
||||||
|
- Improves performance of the CodeLens support
|
||||||
- Improves performance (significantly) when only showing CodeLens at the document level
|
- Improves performance (significantly) when only showing CodeLens at the document level
|
||||||
- Improves performance of status bar blame support
|
- Improves performance of status bar blame support
|
||||||
- Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
|
- Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# GitLens
|
# GitLens
|
||||||
|
|
||||||
Provides Git information (most recent commit, # of authors) in CodeLens, on-demand inline blame annotations, status bar blame information, a blame explorer, and commands to compare changes with the working tree or previous versions.
|
Provides Git information (most recent commit, # of authors) in CodeLens, on-demand inline blame annotations, status bar blame information, a file and blame history explorer, and commands to compare changes with the working tree or previous versions.
|
||||||
|
|
||||||
---
|
---
|
||||||
## Features
|
## Features
|
||||||
@@ -12,7 +12,7 @@ Provides Git information (most recent commit, # of authors) in CodeLens, on-dema
|
|||||||
> Clicking on the CodeLens toggles Git blame annotations on/off
|
> Clicking on the CodeLens toggles Git blame annotations on/off
|
||||||
- Provides on-demand **inline blame annotations** with multiple styles
|
- Provides on-demand **inline blame annotations** with multiple styles
|
||||||
- Provides Git blame information about the selected line in the **status bar**
|
- Provides Git blame information about the selected line in the **status bar**
|
||||||
- Provides a Git **history explorer** to visualize the history of a file or block
|
- Provides a Git **file history explorer** to visualize the history of a file
|
||||||
- Provides a Git **blame history explorer** to visualize the blame history of a file or block
|
- Provides a Git **blame history explorer** to visualize the blame history of a file or block
|
||||||
- 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 many configuration settings to allow the **customization** of almost all features
|
- Provides many configuration settings to allow the **customization** of almost all features
|
||||||
@@ -53,6 +53,5 @@ Must be using Git and it must be in your path.
|
|||||||
## Known Issues
|
## Known Issues
|
||||||
|
|
||||||
- Content in the **history explorers** disappears after a bit: [vscode issue](https://github.com/Microsoft/vscode/issues/11360)
|
- Content in the **history explorers** disappears after a bit: [vscode issue](https://github.com/Microsoft/vscode/issues/11360)
|
||||||
- Highlighted lines disappear in **Blame explorer** after changing selection and returning to a previous selection: [vscode issue](https://github.com/Microsoft/vscode/issues/11360)
|
|
||||||
- CodeLens aren't updated properly after a file is saved: [vscode issue](https://github.com/Microsoft/vscode/issues/11546)
|
- CodeLens aren't updated properly after a file is saved: [vscode issue](https://github.com/Microsoft/vscode/issues/11546)
|
||||||
- Visible whitespace causes issue with blame overlay (currently fixed with a hack, but fails randomly): [vscode issue](https://github.com/Microsoft/vscode/issues/11485)
|
- Visible whitespace causes issue with blame overlay (currently fixed with a hack, but infrequently and randomly fails): [vscode issue](https://github.com/Microsoft/vscode/issues/11485)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "0.9.0",
|
"version": "1.0.0",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
},
|
},
|
||||||
"license": "SEE LICENSE IN LICENSE",
|
"license": "SEE LICENSE IN LICENSE",
|
||||||
"displayName": "GitLens",
|
"displayName": "GitLens",
|
||||||
"description": "Provides Git information (most recent commit, # of authors) in CodeLens, on-demand inline blame annotations, a blame explorer, and commands to compare changes w/ the working tree or previous versions",
|
"description": "Provides Git information (most recent commit, # of authors) in CodeLens, on-demand inline blame annotations, a file and blame history explorer, and commands to compare changes w/ the working tree or previous versions",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user