Skip to content

Commit

Permalink
Preps v9.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jun 11, 2019
1 parent cdd6693 commit 1d2c2ce
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ 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.8.2] - 2019-06-10

## Added

- Adds a changes indicator (+x -x) to the _File History_ view to quickly show the number of added and/or deleted lines

## Changed

- Preserve _Show More_ expansions during file system or repository changes — avoids losing view expansion and selection
- Changes to match authors exactly in the Contributors view

## Fixed

- Fixes [#734](https://github.com/eamodio/vscode-gitlens/issues/734) - Not working with VS Code Remote - SSH extension (fixes the broken hover image)
- Fixes [#751](https://github.com/eamodio/vscode-gitlens/issues/751) - Git Command failed
- Fixes [#756](https://github.com/eamodio/vscode-gitlens/issues/756) - Merge commit shows only the changes from the last commit on those files
- Fixes issue with the _Open Changes with Previous Revision_ command when run from the diff editor and the file has unstaged changes
- Fixes an issue where view expansion and selection was getting lost with search and compare nodes
- Fixes the _Show More_ command in the _File History_ and _Line History_ views
- Fixes a caching issue with file histories

## [9.8.1] - 2019-05-23

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
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.8.1",
"version": "9.8.2",
"author": {
"name": "Eric Amodio",
"email": "[email protected]"
Expand Down
76 changes: 76 additions & 0 deletions src/webviews/apps/welcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,86 @@ <h2 class="changelog__title">

<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">9.8.2</span>
<span class="changelog__date">JUNE &nbsp;2019</span>
<div class="changelog__details"></div>
</li>

<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a changes
indicator (+x -x) to the <i>File History</i> view to quickly show the number of
added and/or deleted lines
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Preserve
<i>Show More</i> expansions during file system or repository changes &mdash; avoids
losing view expansion and selection
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes to
match authors exactly in the Contributors view
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #734"
href="https://github.com/eamodio/vscode-gitlens/issues/734"
>#734</a
>
&mdash; Not working with VS Code Remote - SSH extension (fixes the broken hover
image)
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #751"
href="https://github.com/eamodio/vscode-gitlens/issues/751"
>#751</a
>
&mdash; Git Command failed
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #756"
href="https://github.com/eamodio/vscode-gitlens/issues/756"
>#756</a
>
&mdash; Merge commit shows only the changes from the last commit on those files
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes issue with
the <i>Open Changes with Previous Revision</i> command when run from the diff editor
and the file has unstaged changes
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes an issue
where view expansion and selection was getting lost with search and compare nodes
<div class="changelog__details changelog__details--list"></div>
</li>

<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">9.8.1</span>
<span class="changelog__date">MAY &nbsp;2019</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes the
<i>Show More</i> command in the <i>File History</i> and <i>Line History</i> views
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes a caching
issue with file histories
<div class="changelog__details changelog__details--list"></div>
</li>

<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes a
Expand Down

0 comments on commit 1d2c2ce

Please sign in to comment.