瀏覽代碼

Preps v8.5.0

main
Eric Amodio 6 年之前
父節點
當前提交
806a9f312b
共有 5 個檔案被更改,包括 189 行新增25 行删除
  1. +7
    -7
      CHANGELOG.md
  2. +23
    -14
      README.md
  3. +1
    -1
      package-lock.json
  4. +1
    -1
      package.json
  5. +157
    -2
      src/ui/welcome/index.html

+ 7
- 7
CHANGELOG.md 查看文件

@ -4,14 +4,14 @@ 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/).
## [Unreleased]
## [8.5.0] - 2018-07-16
### Added
- Adds an all-new *GitLens* sidebar view to contain the *GitLens*, *GitLens File History*, and *GitLens Results* explorers
- The new view is enabled by default, but can easily be configured back to the existing locations via the *GitLen* interactive settings editor
- The new view is enabled by default, but can easily be configured back to the existing locations via the *GitLens* interactive settings editor
- Adds tag annotations to the tag tooltips in the *GitLens* explorer — closes [#431](https://github.com/eamodio/vscode-gitlens/issues/431)
- Adds `gitlens.hovers.avatars` setting to specify whether to show avatar images in hovers — closes [#432](https://github.com/eamodio/vscode-gitlens/issues/432) thanks to [PR #441](https://github.com/eamodio/vscode-gitlens/pull/441) by Segev Finer ([@segevfiner](https://github.com/segevfiner))
- Adds `gitlens.hovers.avatars` setting to the interactive settings editor to specify whether to show avatar images in hovers
- Adds *Choose from Branch or Tag History...* to the quick pick menu shown by the *Show File History...* command (`gitlens.showQuickFileHistory`) — closes [#316](https://github.com/eamodio/vscode-gitlens/issues/316)
- Adds a `gitlens.hovers.avatars` setting to specify whether to show avatar images in hovers — closes [#432](https://github.com/eamodio/vscode-gitlens/issues/432) thanks to [PR #441](https://github.com/eamodio/vscode-gitlens/pull/441) by Segev Finer ([@segevfiner](https://github.com/segevfiner))
- Adds the `gitlens.hovers.avatars` setting to the *GitLens* interactive settings editor to specify whether to show avatar images in hovers
- Adds *Choose from Branch or Tag History...* command to the quick pick menu shown by the *Show File History...* command (`gitlens.showQuickFileHistory`) — closes [#316](https://github.com/eamodio/vscode-gitlens/issues/316)
- Adds the *Compare File with Revision...* command (`gitlens.diffWithRevision`) as an alternate (`alt+click`) for the *Compare File with Previous Revision* command in the editor toolbar
### Changed
@ -25,8 +25,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#436](https://github.com/eamodio/vscode-gitlens/issues/436) - Copy to clipboard not working
- Fixes [#442](https://github.com/eamodio/vscode-gitlens/issues/442) - GitLens File History fails if name (or path) starts with -
- Fixes [#440](https://github.com/eamodio/vscode-gitlens/issues/436) - Searching for commits with an empty query yields to no results anymore
- Fixes [#442](https://github.com/eamodio/vscode-gitlens/issues/442) - GitLens File History fails if name (or path) starts with `-`
- Fixes [#440](https://github.com/eamodio/vscode-gitlens/issues/440) - Searching for commits with an empty query yields to no results anymore
- Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
- Fixes issue where the *Compare File with Previous Revision* command wouldn't work properly when the file had been renamed in some cases
- Fixes issue where the *Compare File with Next Revision* command wouldn't work properly when the file had been renamed in some cases

+ 23
- 14
README.md 查看文件

@ -13,20 +13,29 @@
<br />
# What's new in GitLens 8
## 8.4 &mdash; June 2018
- Adds completely revamped heatmap annotations
![cold heatmap](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/cl-heatmap-cold.png)
- The indicator's color, now customizable, will either be hot or cold based on the age of the most recent change (cold after 90 days by default) &mdash; closes [#419](https://github.com/eamodio/vscode-gitlens/issues/419)
- The indicator's brightness ranges from bright (newer) to dim (older) based on the relative age, which is calculated from the median age of all the changes in the file
- Adds `gitlens.heatmap.ageThreshold` setting to specify the age of the most recent change (in days) after which the gutter heatmap annotations will be cold rather than hot (i.e. will use `gitlens.heatmap.coldColor` instead of `gitlens.heatmap.hotColor`)
- Adds `gitlens.heatmap.coldColor` setting to specify the base color of the gutter heatmap annotations when the most recent change is older (cold) than the `gitlens.heatmap.ageThreshold` setting
- Adds `gitlens.heatmap.hotColor` setting to specify the base color of the gutter heatmap annotations when the most recent change is newer (hot) than the `gitlens.heatmap.ageThreshold` setting
- Adds new branch history node under the *Repository Status* node in the *GitLens* explorer
- Adds GitLab and Visual Studio Team Services icons to the remote nodes in the *GitLens* explorer &mdash; thanks to [PR #421](https://github.com/eamodio/vscode-gitlens/pull/421) by Maxim Pekurin ([@pmaxim25](https://github.com/pmaxim25))
- Fixes [#400](https://github.com/eamodio/vscode-gitlens/issues/412) - GitLens logging to debug console when debugging different extension
- Fixes [#409](https://github.com/eamodio/vscode-gitlens/issues/409) - Literal $(ellipsis) inserted into commit QuickPick menu entry placeholder text
- Fixes [#415](https://github.com/eamodio/vscode-gitlens/issues/415) - Branch names get mangled by color escapes &mdash; thanks to [PR #416](https://github.com/eamodio/vscode-gitlens/pull/416) by Roy Ivy III ([@rivy](https://github.com/rivy))
- Fixes issue with insiders builds because of the new `SymbolInformation` API changes (see [Microsoft/vscode#34968](https://github.com/Microsoft/vscode/issues/34968))
## 8.5 &mdash; July 2018
- Adds an all-new *GitLens* sidebar view to contain the *GitLens*, *GitLens File History*, and *GitLens Results* explorers
- The new view is enabled by default, but can easily be configured back to the existing locations via the *GitLens* interactive settings editor
- Adds tag annotations to the tag tooltips in the *GitLens* explorer &mdash; closes [#431](https://github.com/eamodio/vscode-gitlens/issues/431)
- Adds a `gitlens.hovers.avatars` setting to specify whether to show avatar images in hovers &mdash; closes [#432](https://github.com/eamodio/vscode-gitlens/issues/432) thanks to [PR #441](https://github.com/eamodio/vscode-gitlens/pull/441) by Segev Finer ([@segevfiner](https://github.com/segevfiner))
- Adds the `gitlens.hovers.avatars` setting to the *GitLens* interactive settings editor to specify whether to show avatar images in hovers
- Adds *Choose from Branch or Tag History...* to the quick pick menu shown by the *Show File History...* command (`gitlens.showQuickFileHistory`) &mdash; closes [#316](https://github.com/eamodio/vscode-gitlens/issues/316)
- Adds the *Compare File with Revision...* command (`gitlens.diffWithRevision`) as an alternate (`alt+click`) for the *Compare File with Previous Revision* command in the editor toolbar
- Renames the *GitLens History* explorer to *GitLens File History* explorer for better clarity
- Changes the *GitLens File History* explorer to always show the full file history even when reviewing revisions
- Changes the behavior of and renames the *Show Branches and Tags* command and on the quick pick menu shown by the *Compare File with Revision...* command (`gitlens.diffWithRevision`) to *Choose from Branch or Tag History...*
- Changes the behavior of and renames the *Show Branches and Tags* command on the quick pick menu shown by the *Open Revision...* command (`gitlens.openFileRevision`) to *Choose from Branch or Tag History...*
- Removes `gitlens:activeIsTracked`, `gitlens:activeIsBlameable`, `gitlens:activeIsRevision`, and `gitlens:activeHasRemotes` contexts and consolidates them into `gitlens:activeFileStatus` for better performance and UX
- Fixes [#436](https://github.com/eamodio/vscode-gitlens/issues/436) - Copy to clipboard not working
- Fixes [#442](https://github.com/eamodio/vscode-gitlens/issues/442) - GitLens File History fails if name (or path) starts with `-`
- Fixes [#440](https://github.com/eamodio/vscode-gitlens/issues/440) - Searching for commits with an empty query yields to no results anymore
- Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
- Fixes issue where the *Compare File with Previous Revision* command wouldn't work properly when the file had been renamed in some cases
- Fixes issue where the *Compare File with Next Revision* command wouldn't work properly when the file had been renamed in some cases
- Fixes issue where changed files count was wrong when the branch was behind the upstream
- Fixes issue where the *GitLens File History* explorer wasn't being updated automatically for working changes
- Fixes issue where the *Compare File with * Revision* commands in the editor toolbar would show and hide too often because of insignificant focus changes
- Fixes issue where the scope box would be empty when there was no workspace open in the interactive settings editor
See the [release notes](https://github.com/eamodio/vscode-gitlens/blob/master/CHANGELOG.md "Open Release Notes") for the full set of changes

+ 1
- 1
package-lock.json 查看文件

@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "8.4.1",
"version": "8.5.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

+ 1
- 1
package.json 查看文件

@ -2,7 +2,7 @@
"name": "gitlens",
"displayName": "GitLens \u2014 Git supercharged",
"description": "Supercharge the Git capabilities built into Visual Studio Code \u2014 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": "8.4.1",
"version": "8.5.0",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

+ 157
- 2
src/ui/welcome/index.html 查看文件

@ -43,14 +43,169 @@
<div class="changelog__scroller">
<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">8.5</span>
<span class="changelog__date">JULY &nbsp;2018</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds an all-new
<i>GitLens</i> sidebar view to contain the
<i>GitLens</i>,
<i>GitLens File History</i>, and
<i>GitLens Results</i> explorers
<div class="changelog__details changelog__details--list">
<p>The new view is enabled by default, but can easily be configured back to the existing locations
via the
<i>GitLens</i> interactive settings editor
</p>
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds tag annotations to the tag tooltips in the
<i>GitLens</i> explorer &mdash; closes
<a title="Open Issue #431" href="https://github.com/eamodio/vscode-gitlens/issues/431">#431</a>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds a
<code>gitlens.hovers.avatars</code> setting to specify whether to show avatar images in hovers &mdash; closes
<a title="Open Issue #432" href="https://github.com/eamodio/vscode-gitlens/issues/432">#432</a> thanks to
<a title="Pull Request #441" href="https://github.com/eamodio/vscode-gitlens/pull/441">PR #441</a> by
<a title="Segev Finer (@segevfiner)" href="https://github.com/segevfiner">Segev Finer</a>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds the
<code>gitlens.hovers.avatars</code> setting to the
<i>GitLens</i> interactive settings editor to specify whether to show avatar images in hovers
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds
<i>Choose from Branch or Tag History...</i> command to the quick pick menu shown by the
<i>Show File History...</i> command (
<code>gitlens.showQuickFileHistory</code>) &mdash; closes
<a title="Open Issue #316" href="https://github.com/eamodio/vscode-gitlens/issues/316">#316</a>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds the
<i>Compare File with Revision...
</i> command (
<code>gitlens.diffWithRevision</code>) as an alternate (
<code>alt+click</code>) for the
<i>Compare File with Previous Revision</i> command in the editor toolbar
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
Renames the
<i>GitLens History</i> explorer to
<i>GitLens File History </i> explorer for better clarity
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
Changes the
<i>GitLens File History</i> explorer to always show the full file history even when reviewing revisions
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
Changes the behavior of and renames the
<i>Show Branches and Tags</i> command and on the quick pick menu shown by the
<i>Compare File with Revision...</i> command (
<code>gitlens.diffWithRevision</code>) to
<i>Choose from Branch or Tag History...</i>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
Removes
<code>gitlens:activeIsTracked</code>,
<code>gitlens:activeIsBlameable</code>,
<code>gitlens:activeIsRevision</code>, and
<code>gitlens:activeHasRemotes</code> contexts and consolidates them into
<code>gitlens:activeFileStatus</code> for better performance and UX
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #436" href="https://github.com/eamodio/vscode-gitlens/issues/436">#436</a> &mdash; Copy to clipboard not working
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #442" href="https://github.com/eamodio/vscode-gitlens/issues/442">#442</a> &mdash; GitLens File History fails if name (or path) starts with
<code>-</code>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #440" href="https://github.com/eamodio/vscode-gitlens/issues/440">#440</a> &mdash; Searching for commits with an empty query yields to no results anymore
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where the
<i>Compare File with Previous Revision </i> command wouldn't work properly when the file had been
renamed in some cases
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where the
<i>Compare File with Next Revision </i> command wouldn't work properly when the file had been renamed
in some cases
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where changed files count was wrong when the branch was behind the upstream
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where the
<i>GitLens File History</i> explorer wasn't being updated automatically for working changes
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where the
<i>Compare File with * Revision</i> commands in the editor toolbar would show and hide too often
because of insignificant focus changes
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where the scope box would be empty when there was no workspace open in the interactive settings editor
<div class="changelog__details"></div>
</li>
<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">8.4</span>
<span class="changelog__date">JUNE &nbsp;2018</span>
<span class="changelog__date">MAY &nbsp;2018</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds completely revamped heatmap annotations
<div class="changelog__details changelog__details--list ">
<div class="changelog__details changelog__details--list">
<p>The indicator's color, now customizable, will either be hot or cold based on the age of the
most recent change (cold after 90 days by default) &mdash; closes
<a title="Open Issue #419" href="https://github.com/eamodio/vscode-gitlens/issues/419">#419</a>

Loading…
取消
儲存