Skip to content

Commit

Permalink
Preps v9.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Apr 22, 2019
1 parent 2bce0e5 commit 5020fe1
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 7 deletions.
21 changes: 19 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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

Expand Down Expand Up @@ -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.

[9.6.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.2...eamodio:v9.6.3
[9.6.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.1...eamodio:v9.6.2
[9.6.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.0...eamodio:v9.6.1
[9.6.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.5.1...eamodio:v9.6.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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 |
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"name": "gitlens",
"displayName": "GitLens — Git supercharged",
"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"
Expand Down Expand Up @@ -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",
"scope": "window"
},
"gitlens.hovers.detailsMarkdownFormat": {
Expand Down
33 changes: 32 additions & 1 deletion src/webviews/apps/welcome/index.html
Expand Up @@ -194,7 +194,7 @@ <h2 class="changelog__title">
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a prompt to
enable the view to the <i>Show * View</i> commands when the specified view is
disabled &mdash; &mdash; closes
disabled &mdash; closes
<a
title="Open Issue #710"
href="https://github.com/eamodio/vscode-gitlens/issues/710"
Expand All @@ -207,6 +207,12 @@ <h2 class="changelog__title">
>
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
<code>gitlens.hovers.changesDiff</code> setting to specify whether to show just the
changes to the line or the set of related changes in the <i>changes (diff)</i> hover
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Removes the
automatic suspension of the current line blame annotations while debugging &mdash;
Expand Down Expand Up @@ -250,6 +256,21 @@ <h2 class="changelog__title">
no longer loses the context of the last selected item before showing more
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Improves the
maintaining of the line context when opening changes from the hovers
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Improves the
accuracy of the <i>changes (diff)</i> hover
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Improves the
rendering of the diff in the <i>changes (diff)</i> hover
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Improves the
behavior of the
Expand Down Expand Up @@ -366,6 +387,16 @@ <h2 class="changelog__title">
&mdash; Contributors shows no commits for mailmapped committer name
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #697"
href="https://github.com/eamodio/vscode-gitlens/issues/697"
>#697</a
>
&mdash; fixes git error handling for some linux OS'
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes the
behavior of the <i>Open Line Changes with Previous Revision</i>
Expand Down

0 comments on commit 5020fe1

Please sign in to comment.