@ -4,13 +4,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [9.6.2] - 2019-04-017
## [9.6.3] - 2019-04-22
## Added
- Adds a `gitlens.hovers.changesDiff` setting to specify whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover
## Changes
- Improves the maintaining of the line context when opening changes from the hovers
- Improves the accuracy of the _changes (diff)_ hover
- Improves the rendering of the diff in the _changes (diff)_ hover
## Fixed
- Fixes [#697](https://github.com/eamodio/vscode-gitlens/issues/697) - fixes git error handling for some linux OS'
## [9.6.2] - 2019-04-17
### Fixed
- Fixes [#718](https://github.com/eamodio/vscode-gitlens/issues/718) - Can't see changed files when comparing branches
## [9.6.1] - 2019-04-017
## [9.6.1] - 2019-04-17
### Added
@ -2764,6 +2780,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Initial release but still heavily a work in progress.
@ -695,7 +695,7 @@ GitLens is highly customizable and provides many configuration settings to allow
| `gitlens.hovers.annotations.enabled` | Specifies whether to provide any hovers when showing blame annotations |
| `gitlens.hovers.annotations.over` | Specifies when to trigger hovers when showing blame annotations<br/><br/>`annotation` - only shown when hovering over the line annotation<br/>`line` - shown when hovering anywhere over the line |
| `gitlens.hovers.avatars` | Specifies whether to show avatar images in hovers |
| `gitlens.hovers.changesDiff` | Specifies whether to show just the changes to the line or the full set of related changes in the _changes (diff)_ hover<br/><br/>`line` - Shows only the changes to the line<br/><br/>`hunk` - Shows the full set of related changes |
| `gitlens.hovers.changesDiff` | Specifies whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover<br/><br/>`line` - Shows only the changes to the line<br/><br/>`hunk` - Shows the set of related changes |
| `gitlens.hovers.currentLine.changes` | Specifies whether to provide a _changes (diff)_ hover for the current line |
| `gitlens.hovers.currentLine.details` | Specifies whether to provide a _commit details_ hover for the current line |
| `gitlens.hovers.currentLine.enabled` | Specifies whether to provide any hovers for the current line |
"description":"Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
"version":"9.6.2",
"version":"9.6.3",
"author":{
"name":"Eric Amodio",
"email":"eamodio@gmail.com"
@ -572,9 +572,9 @@
],
"enumDescriptions":[
"Shows only the changes to the line",
"Shows the full set of related changes"
"Shows the set of related changes"
],
"markdownDescription":"Specifies whether to show just the changes to the line or the full set of related changes in the _changes (diff)_ hover",
"markdownDescription":"Specifies whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover",