Skip to content

Commit 980eb42

Browse files
committed
Preps v9.8.5
1 parent 325324a commit 980eb42

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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+
## [9.8.5] - 2019-07-10
8+
9+
### Changed
10+
11+
- Cleans up the layout and formatting of many quick pick menus
12+
13+
### Fixed
14+
15+
- Fixes issue where _Search Commits_ from repositories in the _Repositories_ view would incorrectly show a repository picker
16+
717
## [9.8.4] - 2019-07-10
818

919
### Added

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

src/commands/searchCommits.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,12 @@ export class SearchCommitsCommand extends ActiveEditorCachedCommand {
8282
async execute(editor?: TextEditor, uri?: Uri, args: SearchCommitsCommandArgs = {}) {
8383
uri = getCommandUri(uri, editor);
8484

85-
const repoPath = args.repoPath || await getRepoPathOrPrompt(
86-
`Search for commits in which repository${GlyphChars.Ellipsis}`,
87-
args.goBackCommand
88-
);
85+
const repoPath =
86+
args.repoPath ||
87+
(await getRepoPathOrPrompt(
88+
`Search for commits in which repository${GlyphChars.Ellipsis}`,
89+
args.goBackCommand
90+
));
8991
if (!repoPath) return undefined;
9092

9193
args = { ...args };
@@ -117,7 +119,9 @@ export class SearchCommitsCommand extends ActiveEditorCachedCommand {
117119
const opts: InputBoxOptions = {
118120
value: args.search,
119121
prompt: 'Please enter a search string',
120-
placeHolder: `Search${repo === undefined ? '' : ` ${repo.formattedName}`} for commits by message, author (@<pattern>), files (:<path/glob>), commit id (#<sha>), or changes (~<pattern>)`,
122+
placeHolder: `Search${
123+
repo === undefined ? '' : ` ${repo.formattedName}`
124+
} for commits by message, author (@<pattern>), files (:<path/glob>), commit id (#<sha>), or changes (~<pattern>)`,
121125
valueSelection: selection
122126
};
123127
args.search = await window.showInputBox(opts);

src/webviews/apps/welcome/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,24 @@ <h2 class="changelog__title">
130130

131131
<ul class="changelog__list">
132132
<li>
133+
<span class="changelog__badge changelog__badge--version">9.8.5</span>
134+
<span class="changelog__date">JULY &nbsp;2019</span>
135+
<div class="changelog__details"></div>
136+
</li>
137+
138+
<li>
139+
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Cleans up
140+
the layout and formatting of many quick pick menus
141+
<div class="changelog__details changelog__details--list"></div>
142+
</li>
143+
<li>
144+
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes issue where
145+
<i>Search Commits</i> from repositories in the <i>Repositories</i> view would
146+
incorrectly show a repository picker
147+
<div class="changelog__details changelog__details--list"></div>
148+
</li>
149+
150+
<li class="changelog__list-item--version">
133151
<span class="changelog__badge changelog__badge--version">9.8.4</span>
134152
<span class="changelog__date">JULY &nbsp;2019</span>
135153
<div class="changelog__details"></div>

0 commit comments

Comments
 (0)