Skip to content

Commit b91f015

Browse files
committed
Preps v9.5
1 parent 6658285 commit b91f015

File tree

3 files changed

+168
-6
lines changed

3 files changed

+168
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,27 @@ 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]
7+
## [9.5.0] - 2019-02-06
88

99
### Added
1010

1111
- Adds a `mailto:` link to the author on the _commit details_ hover — closes [#642](https://github.com/eamodio/vscode-gitlens/issues/642)
1212
- Adds support for customizing the layout of the _commit details_ hover
1313
- Adds a `gitlens.hovers.detailsMarkdownFormat` setting to specify the format (in markdown) of the _commit details_ hover
1414
- Adds the author's e-mail to the tooltip of commits in the views — closes [#642](https://github.com/eamodio/vscode-gitlens/issues/642)
15-
- Adds an `${email}` token (author e-mail) to `gitlens.blame.format`, `gitlens.currentLine.format`, `gitlens.hovers.detailsMarkdownFormat`, `gitlens.views.commitFormat`, `gitlens.views.commitDescriptionFormat`, `gitlens.views.stashFormat`, `gitlens.views.stashDescriptionFormat`, and `gitlens.statusBar.format` settings — closes [#642](https://github.com/eamodio/vscode-gitlens/issues/642)
15+
- Adds a new author e-mail format token (`${email}`) — closes [#642](https://github.com/eamodio/vscode-gitlens/issues/642)
16+
- Supported in the following settings: `gitlens.blame.format`, `gitlens.currentLine.format`, `gitlens.hovers.detailsMarkdownFormat`, `gitlens.views.commitFormat`, `gitlens.views.commitDescriptionFormat`, `gitlens.views.stashFormat`, `gitlens.views.stashDescriptionFormat`, and `gitlens.statusBar.format`
1617

1718
### Changed
1819

1920
- Changes the sorting of remotes in the _Repositories_ view to sort the default remote first
20-
- Changes relative date formatting of the last fetched date of repositories in the _Repositories_ view to instead use an absolute format and will additionally add the time of day if less than a day has passed. This avoids having to periodically refresh the repository (which causes all of its children to re-render) in order to update the relative time
21+
- Changes relative date formatting of the last fetched date of repositories in the _Repositories_ view to instead use an absolute format and will additionally add the time of day if less than a day has passed
22+
- This avoids having to periodically refresh the repository (which causes all of its children to re-render) in order to update the relative time
2123

2224
### Fixed
2325

2426
- Fixes [#591](https://github.com/eamodio/vscode-gitlens/issues/591) - GitLens Error: Unable to open
25-
- Fixes [#620](https://github.com/eamodio/vscode-gitlens/issues/620) - Branch names with only digits always appear first — thanks to [PR #621](https://github.com/eamodio/vscode-gitlens/pull/621) by Yan Zhang ([@Eskibear](https://github.com/Eskibear))
27+
- Fixes [#620](https://github.com/eamodio/vscode-gitlens/issues/620) - Wrong URL to open commit on Azure DevOps if cloned via SSH — thanks to [PR #621](https://github.com/eamodio/vscode-gitlens/pull/621) by Yan Zhang ([@Eskibear](https://github.com/Eskibear))
2628
- Fixes [#626](https://github.com/eamodio/vscode-gitlens/issues/626) - Branch names with only digits always appear first — thanks to [PR #627](https://github.com/eamodio/vscode-gitlens/pull/627) by Marc Lasson ([@mlasson](https://github.com/mlasson))
2729
- Fixes [#631](https://github.com/eamodio/vscode-gitlens/issues/631) - Remotes fail to show in gui
2830
- Fixes [#633](https://github.com/eamodio/vscode-gitlens/issues/633) - Compare File with Previous Revision doesn't work if path contains '#'

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": "9.4.1",
5+
"version": "9.5.0",
66
"author": {
77
"name": "Eric Amodio",
88
"email": "[email protected]"

src/ui/welcome/index.html

Lines changed: 161 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,165 @@ <h2 class="changelog__title">
130130

131131
<ul class="changelog__list">
132132
<li>
133+
<span class="changelog__badge changelog__badge--version">9.5</span>
134+
<span class="changelog__date">FEB &nbsp;2019</span>
135+
<div class="changelog__details"></div>
136+
</li>
137+
<li>
138+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
139+
<code>mailto:</code> link to the author on the <i>commit details</i> hover &mdash;
140+
closes
141+
<a
142+
title="Open Issue #642"
143+
href="https://github.com/eamodio/vscode-gitlens/issues/642"
144+
>#642</a
145+
>
146+
<div class="changelog__details changelog__details--list"></div>
147+
</li>
148+
<li>
149+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds support for
150+
customizing the layout of the <i>commit details</i> hover
151+
<div class="changelog__details changelog__details--list">
152+
<p>
153+
Adds a <code>gitlens.hovers.detailsMarkdownFormat</code> setting to specify
154+
the format (in markdown) of the <i>commit details</i> hover
155+
</p>
156+
</div>
157+
</li>
158+
<li>
159+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the author's
160+
e-mail to the tooltip of commits in the views &mdash; closes
161+
<a
162+
title="Open Issue #642"
163+
href="https://github.com/eamodio/vscode-gitlens/issues/642"
164+
>#642</a
165+
>
166+
<div class="changelog__details changelog__details--list"></div>
167+
</li>
168+
<li>
169+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a new author
170+
e-mail format token (<code>&#36;{email}</code>) &mdash; closes
171+
<a
172+
title="Open Issue #642"
173+
href="https://github.com/eamodio/vscode-gitlens/issues/642"
174+
>#642</a
175+
>
176+
<div class="changelog__details changelog__details--list">
177+
<p>
178+
Supported in the following settings: <code>gitlens.blame.format</code>,
179+
<code>gitlens.currentLine.format</code>,
180+
<code>gitlens.hovers.detailsMarkdownFormat</code>,
181+
<code>gitlens.views.commitFormat</code>,
182+
<code>gitlens.views.commitDescriptionFormat</code>,
183+
<code>gitlens.views.stashFormat</code>,
184+
<code>gitlens.views.stashDescriptionFormat</code>, and
185+
<code>gitlens.statusBar.format</code>
186+
</p>
187+
</div>
188+
</li>
189+
<li>
190+
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes the
191+
sorting of remotes in the <i>Repositories</i> view to sort the default remote first
192+
<div class="changelog__details changelog__details--list"></div>
193+
</li>
194+
<li>
195+
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes
196+
relative date formatting of the last fetched date of repositories in the
197+
<i>Repositories</i> view to instead use an absolute format and will additionally add
198+
the time of day if less than a day has passed
199+
<div class="changelog__details changelog__details--list">
200+
<p>
201+
This avoids having to periodically refresh the repository (which causes all
202+
of its children to re-render) in order to update the relative time
203+
</p>
204+
</div>
205+
</li>
206+
<li>
207+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
208+
<a
209+
title="Open Issue #591"
210+
href="https://github.com/eamodio/vscode-gitlens/issues/591"
211+
>#591</a
212+
>
213+
&mdash; GitLens Error: Unable to opens
214+
<div class="changelog__details changelog__details--list"></div>
215+
</li>
216+
<li>
217+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
218+
<a
219+
title="Open Issue #620"
220+
href="https://github.com/eamodio/vscode-gitlens/issues/620"
221+
>#620</a
222+
>
223+
&mdash; Wrong URL to open commit on Azure DevOps if cloned via SSH &mdash; thanks to
224+
<a
225+
title="Open Pull Request #621"
226+
href="https://github.com/eamodio/vscode-gitlens/pull/621"
227+
>PR #621</a
228+
>
229+
by Yan Zhang (<a title="@Eskibear" href="https://github.com/Eskibear">@Eskibear</a>)
230+
<div class="changelog__details changelog__details--list"></div>
231+
</li>
232+
<li>
233+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
234+
<a
235+
title="Open Issue #626"
236+
href="https://github.com/eamodio/vscode-gitlens/issues/626"
237+
>#626</a
238+
>
239+
&mdash; Branch names with only digits always appear first &mdash; thanks to
240+
<a
241+
title="Open Pull Request #627"
242+
href="https://github.com/eamodio/vscode-gitlens/pull/627"
243+
>PR #627</a
244+
>
245+
by Marc Lasson (<a title="@mlasson" href="https://github.com/mlasson">@mlasson</a>)
246+
<div class="changelog__details changelog__details--list"></div>
247+
</li>
248+
<li>
249+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
250+
<a
251+
title="Open Issue #631"
252+
href="https://github.com/eamodio/vscode-gitlens/issues/631"
253+
>#631</a
254+
>
255+
&mdash; Remotes fail to show in gui
256+
<div class="changelog__details changelog__details--list"></div>
257+
</li>
258+
<li>
259+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
260+
<a
261+
title="Open Issue #633"
262+
href="https://github.com/eamodio/vscode-gitlens/issues/633"
263+
>#633</a
264+
>
265+
&mdash; Compare File with Previous Revision doesn't work if path contains '#'
266+
<div class="changelog__details changelog__details--list"></div>
267+
</li>
268+
<li>
269+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
270+
<a
271+
title="Open Issue #635"
272+
href="https://github.com/eamodio/vscode-gitlens/issues/635"
273+
>#635</a
274+
>
275+
&mdash; Show more commit not working properly
276+
<div class="changelog__details changelog__details--list"></div>
277+
</li>
278+
<li>
279+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes an issue
280+
where the <i>Open File</i>, <i>Open File on Remote</i>, and
281+
<i>Copy Remote Url to Clipboard</i> commands didn't always work on changed files in
282+
the <i>Repositories</i> view
283+
<div class="changelog__details changelog__details--list"></div>
284+
</li>
285+
<li>
286+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes an issue
287+
where the default remote wasn't used first to provide automatic issue linking
288+
<div class="changelog__details changelog__details--list"></div>
289+
</li>
290+
291+
<li class="changelog__list-item--version">
133292
<span class="changelog__badge changelog__badge--version">9.4</span>
134293
<span class="changelog__date">JAN &nbsp;2019</span>
135294
<div class="changelog__details"></div>
@@ -932,7 +1091,8 @@ <h2>Sponsored by</h2>
9321091
/>
9331092
</a>
9341093
<p class="sponsor__tag">
935-
Discuss, review, and share code with your team in VS Code. Links discussions about code to your code. Integrates w/ Slack, Jira, Trello, and Live Share.
1094+
Discuss, review, and share code with your team in VS Code. Links discussions about code
1095+
to your code. Integrates w/ Slack, Jira, Trello, and Live Share.
9361096
</p>
9371097

9381098
<h2 name="#support-gitlens">Show Your Support &nbsp;&#x2764;</h2>

0 commit comments

Comments
 (0)