Browse Source

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
main
Eric Amodio 8 years ago
parent
commit
354b823d7d
3 changed files with 7 additions and 7 deletions
  1. +2
    -1
      CHANGELOG.md
  2. +3
    -4
      README.md
  3. +2
    -2
      package.json

+ 2
- 1
CHANGELOG.md View File

@ -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

+ 3
- 4
README.md View File

@ -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)
- 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)

+ 2
- 2
package.json View File

@ -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"
],

Loading…
Cancel
Save