You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23-3Lines changed: 23 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,31 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
7
-
## [Unreleased]
7
+
## [9.8.3] - 2019-07-09
8
+
9
+
### Added
10
+
11
+
- Adds working tree comparison support to the _Compare Current Branch with <branch, tag, or ref>_ node within each repository in the _Repositories_ view
12
+
- Changes `gitlens.views.repositories.showBranchComparison` to also specify the type of comparison — either with the current branch or the working tree
13
+
- Adds a _Switch to Working Tree Comparison_ command or _Switch to Branch Comparison_ command to the _Compare Current Branch with <branch, tag, or ref>_ node
14
+
- Adds the _Open Revision_ command as an `alt-click` of the _Open File_ command on files in the views
15
+
- Adds the _Open File_ command as an `alt-click` of the _Open Revision_ command on files in the views
16
+
17
+
### Changed
18
+
19
+
- Changes fetch, pull, and push commands to be executed in parallel, rather than sequentially
20
+
- Changes _Search Commits_ (`gitlens.showCommitSearch`) command to prompt for a repository, if there is more than one
21
+
22
+
### Removed
23
+
24
+
- Removes `gitlens.settings.mode` setting as the interactive settings editor (via the _GitLens: Open Settings_ command) will always show all settings now
8
25
9
26
### Fixed
10
27
28
+
- Fixes [#776](https://github.com/eamodio/vscode-gitlens/issues/776) - File history sidebar having "Open file" instead of "Open revision"
11
29
- Fixes [#692](https://github.com/eamodio/vscode-gitlens/issues/692) - Can't open remote on bitbucket — thanks to [PR #767](https://github.com/eamodio/vscode-gitlens/pull/767) by grozan ([@grozan](https://github.com/grozan))
30
+
- Fixes a parsing issue with certain renamed files
31
+
- Fixes some issues with emoji rendering
12
32
13
33
## [9.8.2] - 2019-06-10
14
34
@@ -50,7 +70,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
50
70
- A context menu provides access to more common file revision commands
51
71
-**\* Files Changed**— lists all of the files changed between the compared revisions
52
72
- Adds a _Show a comparison of the current branch to a user-selected reference_ (`gitlens.views.repositories.showBranchComparison`) setting to specify whether to show a comparison of the current branch to a user-selected reference in the _Repositories_ view
53
-
- Adds a `gitlens.advanced.useSymmetricDifferenceNotation` setting to specify whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisions— closes [#330](https://github.com/eamodio/vscode-gitlens/issues/330)
73
+
- Adds a `gitlens.advanced.useSymmetricDifferenceNotation` setting to specify whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisons— closes [#330](https://github.com/eamodio/vscode-gitlens/issues/330)
54
74
- Adds a _Copy Remote Url to Clipboard_ command to commit quick pick menus
55
75
56
76
### Changed
@@ -129,7 +149,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
129
149
- Adds support to the _Details_ and _Changes (diff)_ hovers to differentiate between staged and unstaged changed
130
150
- Adds a _Show All_ command to the _Show More_ nodes in the views
131
151
- Adds _Show More_ support (i.e. paging) to the _File_ and _Line History_ views
132
-
- Adds an improved experience when starting a new commit search or comparision
152
+
- Adds an improved experience when starting a new commit search or comparison
133
153
- Adds the renamed path to the description and tooltip of file nodes in the views
134
154
- Adds a `gitlens.advanced.maxSearchItems` setting to specify the maximum number of items to show in a search — closes [#728](https://github.com/eamodio/vscode-gitlens/issues/728)
135
155
- Adds a `gitlens.defaultDateSource` setting to specify whether commit dates should use the authored or committed date — closes [#537](https://github.com/eamodio/vscode-gitlens/issues/537) thanks to [PR #707](https://github.com/eamodio/vscode-gitlens/pull/707) by Mathew King ([@MathewKing](https://github.com/MathewKing))
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -289,6 +289,7 @@ The repositories view provides the following features,
289
289
- An inline toolbar provides quick access to the _Open File_, _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open File on Remote_ (if available) commands
290
290
- A context menu provides access to more common file revision commands
291
291
-**\* Files Changed**— lists all of the files changed between the compared revisions
292
+
- An inline toolbar provides quick access to the _Switch to Working Tree Comparison_ or _Switch to Branch Comparison_, and _Refresh_ commands
292
293
293
294
-**Branches**— lists the local branches in the repository
294
295
@@ -872,7 +873,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
872
873
|`gitlens.advanced.repositorySearchDepth`| Specifies how many folders deep to search for repositories |
873
874
|`gitlens.advanced.similarityThreshold`| Specifies the amount (percent) of similarity a deleted and added file pair must have to be considered a rename |
874
875
|`gitlens.advanced.telemetry.enabled`| Specifies whether to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting |
875
-
|`gitlens.advanced.useSymmetricDifferenceNotation`| Specifies whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisions. See the [Git docs](https://git-scm.com/docs/gitrevisions#_dotted_range_notations)|
876
+
|`gitlens.advanced.useSymmetricDifferenceNotation`| Specifies whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisons. See the [Git docs](https://git-scm.com/docs/gitrevisions#_dotted_range_notations)|
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "gitlens",
3
3
"displayName": "GitLens — Git supercharged",
4
4
"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",
"markdownDescription": "Specifies whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisions. See the [Git docs](https://git-scm.com/docs/gitrevisions#_dotted_range_notations)",
1762
+
"markdownDescription": "Specifies whether to use the symmetric difference (three-dot) notation or the range (two-dot) notation for comparisons. See the [Git docs](https://git-scm.com/docs/gitrevisions#_dotted_range_notations)",
0 commit comments