Browse Source

Preps v9.8.2

main
Eric Amodio 5 years ago
parent
commit
1d2c2ce5f7
3 changed files with 98 additions and 1 deletions
  1. +21
    -0
      CHANGELOG.md
  2. +1
    -1
      package.json
  3. +76
    -0
      src/webviews/apps/welcome/index.html

+ 21
- 0
CHANGELOG.md View File

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

+ 1
- 1
package.json View File

@ -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": "eamodio@gmail.com"

+ 76
- 0
src/webviews/apps/welcome/index.html View File

@ -130,10 +130,86 @@
<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

Loading…
Cancel
Save