diff --git a/CHANGELOG.md b/CHANGELOG.md index 89d3a32..87b140f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ --- ## Release Notes -### 0.9.0 +### 1.0.0 - Adds support for git history (log)! - 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 - 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 + - Improves performance of the CodeLens support - Improves performance (significantly) when only showing CodeLens at the document level - Improves performance of status bar blame support - Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs diff --git a/README.md b/README.md index fa5afe9..ed14885 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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 @@ -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 - Provides on-demand **inline blame annotations** with multiple styles - 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 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 @@ -53,6 +53,5 @@ Must be using Git and it must be in your path. ## Known Issues - 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) -- Visible whitespace causes issue with blame overlay (currently fixed with a hack, but fails randomly): [vscode issue](https://github.com/Microsoft/vscode/issues/11485) \ No newline at end of file +- 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) \ No newline at end of file diff --git a/package.json b/package.json index 49da485..5f64ebe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "0.9.0", + "version": "1.0.0", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" @@ -11,7 +11,7 @@ }, "license": "SEE LICENSE IN LICENSE", "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": [ "Other" ],