Skip to content

Commit

Permalink
Preps v8.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Aug 18, 2018
1 parent 6f76796 commit 14e2aa6
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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] - 2018-08-16
## [8.5.5] - 2018-08-18
### Added
- Adds *Copy Remote File Url to Clipboard* (`gitlens.copyRemoteFileUrlToClipboard`) command — copies the remote url of the current file and line to the clipboard — closes [#467](https://github.com/eamodio/vscode-gitlens/issues/467)

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- Adds `gitlens.historyExplorer.avatars` setting to specify whether to show avatar images instead of status icons in the *GitLens File History* explorer — allows for an independent value from the other explorers
- 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 *Copy Remote File Url to Clipboard* (`gitlens.copyRemoteFileUrlToClipboard`) command — copies the remote url of the current file and line to the clipboard — closes [#467](https://github.com/eamodio/vscode-gitlens/issues/467)
- Improves performance of providing blame annotations, especially for large files (a ~33% improvement on some files)
- Changes commit search by sha to jump directly to the commit (if one is found), rather than having to click through to the commit
- Renames the *GitLens History* explorer to *GitLens File History* explorer for better clarity
Expand All @@ -47,6 +48,9 @@
- Fixes [#462](https://github.com/eamodio/vscode-gitlens/issues/462) - Source Control shortcut on macOS (⌃⇧G) shouldn't be overridden
- Fixes [#457](https://github.com/eamodio/vscode-gitlens/issues/457) - Displays the wrong username (You) — thanks to [PR #460](https://github.com/eamodio/vscode-gitlens/pull/460) by Zyck ([@qzyse2017](https://github.com/qzyse2017))
- Fixes [#459](https://github.com/eamodio/vscode-gitlens/issues/459) - File blame annotation text overflow with letter spacing setting
- Fixes [#471](https://github.com/eamodio/vscode-gitlens/issues/471) - Don't use Ctrl+Alt+[character] as a shortcut
- Fixes [#478](https://github.com/eamodio/vscode-gitlens/issues/478) - `suppressShowKeyBindingsNotice` gets saved even when it is not required
- Fixes [#468](https://github.com/eamodio/vscode-gitlens/issues/468) - Commit history for detached HEAD doesn't work properly
- Fixes issues with GitLens Welcome and the interactive settings editor with light themes
- 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
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "8.5.4",
"version": "8.5.5",
"author": {
"name": "Eric Amodio",
"email": "[email protected]"
Expand Down
9 changes: 5 additions & 4 deletions src/ui/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ b {

code,
.shortcut-key {
border-radius: 3px;
padding: 1px 5px;
vertical-align: bottom;
border-radius: 4px;
color: var(--color);
padding: 2px 6px 0 6px;
vertical-align: baseline;

.vscode-dark & {
background-color: var(--background-color--lighten-15);
Expand Down Expand Up @@ -476,7 +477,7 @@ ul {
}

& code {
font-size: 0.9em;
font-size: 0.8em;
}
}

Expand Down
32 changes: 30 additions & 2 deletions src/ui/welcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,13 @@ <h2 class="changelog__title">What's New in
<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>Copy Remote File Url to Clipboard</i> (<code>gitlens.copyRemoteFileUrlToClipboard</code>)
command &mdash; copies the remote url of the current file and line to the clipboard &mdash; closes
<a title="Open Issue #467" href="https://github.com/eamodio/vscode-gitlens/issues/467">#467</a>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
Improves performance of providing blame annotations, especially for large files (a ~33% improvement on some files)
Expand Down Expand Up @@ -290,6 +297,27 @@ <h2 class="changelog__title">What's New in
&mdash; File blame annotation text overflow with letter spacing setting
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #471" href="https://github.com/eamodio/vscode-gitlens/issues/471">#471</a>
&mdash; Don't use Ctrl+Alt+[character] as a shortcut
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #478" href="https://github.com/eamodio/vscode-gitlens/issues/478">#478</a>
&mdash; <code>suppressShowKeyBindingsNotice</code> gets saved even when it is not required
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #468" href="https://github.com/eamodio/vscode-gitlens/issues/468">#468</a>
&mdash; Commit history for detached HEAD doesn't work properly
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issues with GitLens Welcome and the interactive settings editor with light themes
Expand Down Expand Up @@ -1011,8 +1039,8 @@ <h2 class="changelog__title">What's New in
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>
Adds a tree layout option to branches in the
<i>GitLens</i> explorer &mdash; thanks to Yukai Huang (
<a href="https://github.com/Yukaii">@Yukaii</a>)!
<i>GitLens</i> explorer &mdash; thanks to
<a title="Yukai Huang (@Yukaii)" href="https://github.com/Yukaii">Yukai Huang</a>!
<div class="changelog__details"></div>
</li>
<li>
Expand Down

0 comments on commit 14e2aa6

Please sign in to comment.