Skip to content

Commit 14e2aa6

Browse files
committed
Preps v8.5.5
1 parent 6f76796 commit 14e2aa6

File tree

6 files changed

+42
-9
lines changed

6 files changed

+42
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased] - 2018-08-16
7+
## [8.5.5] - 2018-08-18
88
### Added
99
- 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)
1010

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
- 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
2626
- 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))
2727
- Adds the `gitlens.hovers.avatars` setting to the *GitLens* interactive settings editor to specify whether to show avatar images in hovers
28+
- 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)
2829
- Improves performance of providing blame annotations, especially for large files (a ~33% improvement on some files)
2930
- Changes commit search by sha to jump directly to the commit (if one is found), rather than having to click through to the commit
3031
- Renames the *GitLens History* explorer to *GitLens File History* explorer for better clarity
@@ -47,6 +48,9 @@
4748
- Fixes [#462](https://github.com/eamodio/vscode-gitlens/issues/462) - Source Control shortcut on macOS (⌃⇧G) shouldn't be overridden
4849
- 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))
4950
- Fixes [#459](https://github.com/eamodio/vscode-gitlens/issues/459) - File blame annotation text overflow with letter spacing setting
51+
- Fixes [#471](https://github.com/eamodio/vscode-gitlens/issues/471) - Don't use Ctrl+Alt+[character] as a shortcut
52+
- Fixes [#478](https://github.com/eamodio/vscode-gitlens/issues/478) - `suppressShowKeyBindingsNotice` gets saved even when it is not required
53+
- Fixes [#468](https://github.com/eamodio/vscode-gitlens/issues/468) - Commit history for detached HEAD doesn't work properly
5054
- Fixes issues with GitLens Welcome and the interactive settings editor with light themes
5155
- Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
5256
- Fixes issue where the *Compare File with Previous Revision* command wouldn't work properly when the file had been renamed in some cases

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitlens",
33
"displayName": "GitLens — Git supercharged",
44
"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",
5-
"version": "8.5.4",
5+
"version": "8.5.5",
66
"author": {
77
"name": "Eric Amodio",
88
"email": "[email protected]"

src/ui/scss/main.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ b {
3434

3535
code,
3636
.shortcut-key {
37-
border-radius: 3px;
38-
padding: 1px 5px;
39-
vertical-align: bottom;
37+
border-radius: 4px;
38+
color: var(--color);
39+
padding: 2px 6px 0 6px;
40+
vertical-align: baseline;
4041

4142
.vscode-dark & {
4243
background-color: var(--background-color--lighten-15);
@@ -476,7 +477,7 @@ ul {
476477
}
477478

478479
& code {
479-
font-size: 0.9em;
480+
font-size: 0.8em;
480481
}
481482
}
482483

src/ui/welcome/index.html

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ <h2 class="changelog__title">What's New in
144144
<i>GitLens</i> interactive settings editor to specify whether to show avatar images in hovers
145145
<div class="changelog__details"></div>
146146
</li>
147+
<li>
148+
<span class="changelog__badge changelog__badge--added">NEW</span>
149+
Adds <i>Copy Remote File Url to Clipboard</i> (<code>gitlens.copyRemoteFileUrlToClipboard</code>)
150+
command &mdash; copies the remote url of the current file and line to the clipboard &mdash; closes
151+
<a title="Open Issue #467" href="https://github.com/eamodio/vscode-gitlens/issues/467">#467</a>
152+
<div class="changelog__details"></div>
153+
</li>
147154
<li>
148155
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>
149156
Improves performance of providing blame annotations, especially for large files (a ~33% improvement on some files)
@@ -290,6 +297,27 @@ <h2 class="changelog__title">What's New in
290297
&mdash; File blame annotation text overflow with letter spacing setting
291298
<div class="changelog__details"></div>
292299
</li>
300+
<li>
301+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
302+
Fixes
303+
<a title="Open Issue #471" href="https://github.com/eamodio/vscode-gitlens/issues/471">#471</a>
304+
&mdash; Don't use Ctrl+Alt+[character] as a shortcut
305+
<div class="changelog__details"></div>
306+
</li>
307+
<li>
308+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
309+
Fixes
310+
<a title="Open Issue #478" href="https://github.com/eamodio/vscode-gitlens/issues/478">#478</a>
311+
&mdash; <code>suppressShowKeyBindingsNotice</code> gets saved even when it is not required
312+
<div class="changelog__details"></div>
313+
</li>
314+
<li>
315+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
316+
Fixes
317+
<a title="Open Issue #468" href="https://github.com/eamodio/vscode-gitlens/issues/468">#468</a>
318+
&mdash; Commit history for detached HEAD doesn't work properly
319+
<div class="changelog__details"></div>
320+
</li>
293321
<li>
294322
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
295323
Fixes issues with GitLens Welcome and the interactive settings editor with light themes
@@ -1011,8 +1039,8 @@ <h2 class="changelog__title">What's New in
10111039
<li>
10121040
<span class="changelog__badge changelog__badge--added">NEW</span>
10131041
Adds a tree layout option to branches in the
1014-
<i>GitLens</i> explorer &mdash; thanks to Yukai Huang (
1015-
<a href="https://github.com/Yukaii">@Yukaii</a>)!
1042+
<i>GitLens</i> explorer &mdash; thanks to
1043+
<a title="Yukai Huang (@Yukaii)" href="https://github.com/Yukaii">Yukai Huang</a>!
10161044
<div class="changelog__details"></div>
10171045
</li>
10181046
<li>

0 commit comments

Comments
 (0)