Skip to content

Commit 92c1de6

Browse files
committed
Preps v9.7.4
1 parent ae5c728 commit 92c1de6

File tree

5 files changed

+148
-1260
lines changed

5 files changed

+148
-1260
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
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]
7+
## [9.7.4] - 2019-05-15
88

99
## Added
1010

@@ -23,7 +23,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
2323

2424
- Fixes issues with the _Show More Actions_ button on the _Details_ hover not working with renamed files
2525
- Fixes issues with the _Open File_, _Open Files_, _Open All Changes with Working Tree_, and _Apply Changes_ commands in the views not working with renamed files
26-
- Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ command in the quick pick menus not working with renamed files
26+
- Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ commands in the quick pick menus not working with renamed files
2727
- Fixes issues with the _Show Stashed Changes_ (`gitlens.showQuickStashList`) command and multiple repositories
2828

2929
## [9.7.3] - 2019-05-11
@@ -2879,6 +2879,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
28792879

28802880
- Initial release but still heavily a work in progress.
28812881

2882+
[9.7.4]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.3...eamodio:v9.7.4
2883+
[9.7.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.2...eamodio:v9.7.3
2884+
[9.7.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.1...eamodio:v9.7.2
2885+
[9.7.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.0...eamodio:v9.7.1
2886+
[9.7.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.3...eamodio:v9.7.0
28822887
[9.6.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.2...eamodio:v9.6.3
28832888
[9.6.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.1...eamodio:v9.6.2
28842889
[9.6.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.0...eamodio:v9.6.1

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ The repositories view provides the following features,
285285
- **Branches** — lists the local branches in the repository
286286

287287
- An inline toolbar provides quick access to the _Open Branches on Remote_ (if available) command
288-
- Provides the name of each branch, an indicator (check-mark) of the branch is the current one, and [optionally](#repositories-view-settings- 'Jump to the Repositories view settings') shows its remote tracking branch and status (if available)
288+
- Provides the name of each branch, an indicator (check-mark) if the branch is the current one, and [optionally](#repositories-view-settings- 'Jump to the Repositories view settings') shows its remote tracking branch and status (if available)
289289
- Indicator dots on each branch icon denote the following:
290290
- _None_ — no upstream or up-to-date with the upstream
291291
- _Green_ — ahead of the upstream
@@ -318,7 +318,7 @@ The repositories view provides the following features,
318318

319319
- **Incoming Activity** — lists the recent incoming activity (merges and pulls) to your local repository (experimental, enabled via `"gitlens.insiders": true`)
320320

321-
- Provides the activity command, branch (if available), and date
321+
- Provides the command, branch (if available), and date of each activity
322322
- A context menu provides access to the _Refresh_ command
323323
- Each activity expands to list the commits added by the command
324324
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open Commit on Remote_ (if available) commands
@@ -329,7 +329,7 @@ The repositories view provides the following features,
329329

330330
- **Remotes** — lists the remotes in the repository
331331

332-
- Provides the name of each remote, an indicator of the direction of the remote (fetch, push, both), remote service (if applicable), and repository path
332+
- Provides the name of each remote, an indicator of the remote's direction (fetch, push, both), remote service (if applicable), and repository path
333333
- An inline toolbar provides quick access to the _Fetch_, and _Open Repository on Remote_ (if available) commands
334334
- A context menu provides access to more common repository and remote commands
335335
- Each remote expands to list its remote branches
@@ -338,7 +338,7 @@ The repositories view provides the following features,
338338
- **Stashes** — lists the stashed changes in the repository
339339

340340
- An inline toolbar provides quick access to the _Stash All Changes_, and _Apply Stash Changes_ commands
341-
- Provides the name of each stashed changes, the date, and an indicator (+x ~x -x) of the changes
341+
- Provides the name of each set of stashed changes, the date, and an indicator (+x ~x -x) of the changes
342342
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Apply Stashed Changes_, and _Delete Stashed Changes_ commands
343343
- A context menu provides access to more common stashed changes commands
344344
- Each stashed changes expands to list the set of stashed files, complete with status indicators for adds, changes, renames, and deletes

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

src/webviews/apps/scss/main.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,8 @@ ul {
404404
}
405405

406406
.about {
407-
font-size: 1em;
407+
font-size: 1.2em;
408+
font-weight: 200;
408409
color: var(--color-foreground--75);
409410
margin: 3em 1em;
410411

0 commit comments

Comments
 (0)