Skip to content

Commit fbaed2c

Browse files
committed
Preps v9.2.0
1 parent 1e73e13 commit fbaed2c

File tree

3 files changed

+93
-10
lines changed

3 files changed

+93
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,28 @@ 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.2.0] - 2018-12-13
88

99
### Added
1010

1111
- Improves the commit search experience
1212
- Remembers and restores the last commit search string
13-
- Adds the _Search Commits_ command to the search results inline toolbar
13+
- Adds a _Search Commits_ command to the search results inline toolbar
1414
- Reopens the commit search when clicking on a search results without results
15-
- Adds a _Collapse_ command to the toolbars of the _Compare_ and _Search Commits_ views
16-
- Adds a `gitlens.views.commitFileDescriptionFormat` setting to specify the description format of a committed file in the views
17-
- Adds a `gitlens.views.commitDescriptionFormat` setting to specify the description format of committed changes in the views
18-
- Adds a `gitlens.views.stashFileDescriptionFormat` setting to specify the description format of a stashed file in the views
19-
- Adds a `gitlens.views.stashDescriptionFormat` setting to specify the description format of stashed changes in the views
20-
- Adds a `gitlens.views.statusFileDescriptionFormat` setting to specify the description format of the status of a working or committed file in the views
15+
- Adds a _Collapse_ command to the toolbars of the _Compare_ and _Search Commits_ views — closes [#383](https://github.com/eamodio/vscode-gitlens/issues/383)
16+
- Adds support for the [new ability](https://code.visualstudio.com/updates/v1_30#_custom-views) to have descriptions on view nodes — provides a much cleaner layout
17+
- Adds a `gitlens.views.commitFileDescriptionFormat` setting to specify the description format of a committed file in the views
18+
- Adds a `gitlens.views.commitDescriptionFormat` setting to specify the description format of committed changes in the views
19+
- Adds a `gitlens.views.stashFileDescriptionFormat` setting to specify the description format of a stashed file in the views
20+
- Adds a `gitlens.views.stashDescriptionFormat` setting to specify the description format of stashed changes in the views
21+
- Adds a `gitlens.views.statusFileDescriptionFormat` setting to specify the description format of the status of a working or committed file in the views
2122
- Adds a `gitlens.views.repositories.compact` setting to specify whether to show the _Repositories_ view in a compact display density — closes [#571](https://github.com/eamodio/vscode-gitlens/issues/571)
2223

2324
### Fixed
2425

26+
- Fixes [#559](https://github.com/eamodio/vscode-gitlens/issues/559) — Html encoding issues with the empty state of the _Compare_ and _Search Commits_ views
2527
- Fixes [#574](https://github.com/eamodio/vscode-gitlens/issues/574) — Apply Changes not working because of whitespace conflicts
26-
- Fixes html encoding issues with the empty state of the _Compare_ and _Search Commits_ views
28+
- Fixes [#589](https://github.com/eamodio/vscode-gitlens/issues/589) — Bad revision for stash
2729

2830
## [9.1.0] - 2018-12-12
2931

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

src/ui/welcome/index.html

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,87 @@ <h2 class="changelog__title">
116116

117117
<ul class="changelog__list">
118118
<li>
119+
<span class="changelog__badge changelog__badge--version">9.2</span>
120+
<span class="changelog__date">DEC &nbsp;2018</span>
121+
<div class="changelog__details"></div>
122+
</li>
123+
<li>
124+
<span class="changelog__badge changelog__badge--added">NEW</span>Improves the commit
125+
search experience
126+
<div class="changelog__details changelog__details--list">
127+
<p>
128+
Remembers and restores the last commit search string. Adds a
129+
<i>Search Commits</i> command to the search results inline toolbar. Reopens
130+
the commit search when clicking on a search results without results
131+
</p>
132+
</div>
133+
</li>
134+
<li>
135+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
136+
<i>Collapse</i> command to the toolbars of the <i>Compare</i> and
137+
<i>Search Commits</i> views &mdash; closes
138+
<a
139+
title="Open Issue #383"
140+
href="https://github.com/eamodio/vscode-gitlens/issues/383"
141+
>#383</a
142+
>
143+
<div class="changelog__details changelog__details--list"></div>
144+
</li>
145+
<li>
146+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds support for
147+
the
148+
<a
149+
title="Open VS Code 1.30 Release Notes"
150+
href="https://code.visualstudio.com/updates/v1_30#_custom-views"
151+
>new ability</a
152+
>
153+
to have descriptions on view nodes &mdash; provides a much cleaner layout
154+
<div class="changelog__details changelog__details--list"></div>
155+
</li>
156+
<li>
157+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
158+
<code>gitlens.views.repositories.compact</code> setting to specify whether to show
159+
the <i>Repositories</i> view in a compact display density &mdash; closes
160+
<a
161+
title="Open Issue #571"
162+
href="https://github.com/eamodio/vscode-gitlens/issues/571"
163+
>#571</a
164+
>
165+
<div class="changelog__details changelog__details--list"></div>
166+
</li>
167+
<li>
168+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
169+
<a
170+
title="Open Issue #559"
171+
href="https://github.com/eamodio/vscode-gitlens/issues/559"
172+
>#559</a
173+
>
174+
&mdash; Html encoding issues with the empty state of the <i>Compare</i> and
175+
<i>Search Commits</i> views
176+
<div class="changelog__details changelog__details--list"></div>
177+
</li>
178+
<li>
179+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
180+
<a
181+
title="Open Issue #574"
182+
href="https://github.com/eamodio/vscode-gitlens/issues/574"
183+
>#574</a
184+
>
185+
&mdash; Apply Changes not working because of whitespace conflicts
186+
<div class="changelog__details changelog__details--list"></div>
187+
</li>
188+
<li>
189+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
190+
<a
191+
title="Open Issue #589"
192+
href="https://github.com/eamodio/vscode-gitlens/issues/589"
193+
>#589</a
194+
>
195+
&mdash; Bad revision for stash
196+
<div class="changelog__details changelog__details--list"></div>
197+
</li>
198+
199+
<li class="changelog__list-item--version">
119200
<span class="changelog__badge changelog__badge--version">9.1</span>
120201
<span class="changelog__date">DEC &nbsp;2018</span>
121202
<div class="changelog__details"></div>

0 commit comments

Comments
 (0)