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
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ 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.1.0] - 2018-12-12
8
8
9
9
### Added
10
10
@@ -13,18 +13,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
13
13
- Only provided if the current branch is tracking a remote branch and is behind it
14
14
-**\* Commits Ahead**— quickly see and explore the specific commits ahead of the upstream (i.e. commits that haven't been pushed)
15
15
- Only provided if the current branch is tracking a remote branch and is ahead of it
16
-
- Adds control over the contributed menu commands to the Source Control side bar to the GitLens interactive settings editor (via the `gitlens.menus` setting)
17
-
- Adds Git extended regex support to commit searches
18
-
- Adds the date and a changes indicator (+x ~x -x) to stashes in GitLens views (uses the new `${changes}` token in the `gitlens.views.stashFormat` setting)
16
+
- Adds the date and a changes indicator (+x ~x -x) to stashed changes in GitLens views (uses the new `${changes}` token in the `gitlens.views.stashFormat` setting)
19
17
- Adds the changed file status (added, modified, renamed, deleted, etc) to the tooltip of each revision in the _File History_ and _Line History_ views
18
+
- Adds Git extended regex support to commit searches
19
+
- Adds control over the menu commands contributed to the Source Control side bar to the GitLens interactive settings editor (via the `gitlens.menus` setting)
20
20
21
21
### Changed
22
22
23
23
- Changes the _Show Revision Details_ command (`gitlens.showQuickRevisionDetails`) to show file commit details
24
-
- Changes the `alt`-command of the _Toggle File Blame Annotations_ command (`gitlens.toggleFileBlame`) to _Toggle File Heatmap Annotations_ command (`gitlens.toggleFileHeatmap`)
24
+
- Changes the `alt`-command of the _Toggle File Blame Annotations_ command (`gitlens.toggleFileBlame`) to be the _Toggle File Heatmap Annotations_ command (`gitlens.toggleFileHeatmap`)
25
25
- Changes searching for commits by message to be case-insensitive
26
26
- Renames the _Explore the Repository from Here_ command (`gitlens.views.exploreRepoRevision`) to _Explore Repository from Here_
27
-
- Reworks the layout of some contributed menu command
27
+
- Reworks the layout of some contributed menu commands
28
28
29
29
### Fixed
30
30
@@ -34,7 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
34
34
- Fixes [#523](https://github.com/eamodio/vscode-gitlens/issues/523)— File History doesn't show all commits on file
35
35
- Fixes [#552](https://github.com/eamodio/vscode-gitlens/issues/552)— "Open Line Changes with..." doesn't work for renamed files
36
36
- Fixes [#566](https://github.com/eamodio/vscode-gitlens/issues/566)— History error with UNC
37
-
- Fixes [#572](https://github.com/eamodio/vscode-gitlens/issues/572)— Explorer cant expand some branch folders
37
+
- Fixes [#572](https://github.com/eamodio/vscode-gitlens/issues/572)— Explorer can't expand some branch folders
38
38
- Fixes [#584](https://github.com/eamodio/vscode-gitlens/issues/584)— Unexpected results when opening diff from file history
39
39
- Fixes [#588](https://github.com/eamodio/vscode-gitlens/issues/588)— Output channel doesn't exist with `gitlens.outputLevel` default
40
40
- Fixes an issue where comparing a file with its staged revision doesn't show any content
Copy file name to clipboardExpand all lines: README.md
+2-22Lines changed: 2 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,8 +31,6 @@ Also please [write a review](https://marketplace.visualstudio.com/items?itemName
31
31
32
32
# What's new in GitLens 9
33
33
34
-
## 9.0 — December 2018
35
-
36
34
- Adds GitLens over Visual Studio Live Share
37
35
- Live Share guests will now have read-only access to GitLens' features
38
36
- Adds a new Git virtual file system provider for the `gitlens:` scheme — closes [#430](https://github.com/eamodio/vscode-gitlens/issues/430)
@@ -48,33 +46,15 @@ Also please [write a review](https://marketplace.visualstudio.com/items?itemName
48
46
- Provides somewhat similar features to the former _Results_ view as well as it is now a persistent view, makes it easier to start a commit search, and [more](https://github.com/eamodio/vscode-gitlens/tree/master/#search-commits-view-'Jump to the Search Commits view docs')
49
47
- Adds an all-new [_Compare_ view](https://github.com/eamodio/vscode-gitlens/tree/master/#compare-view-'Jump to the Compare view docs') to visualize comparisons between branches, tags, commits, and more
50
48
- Provides somewhat similar and powerful features to the former _Results_ view as well as it is now a persistent view, makes it easier to start a comparison, and [more](https://github.com/eamodio/vscode-gitlens/tree/master/#compare-view-'Jump to the Compare view docs')
51
-
- Reduces the overhead of all GitLens views — GitLens now only tracks changes and updates the views if they are visible, collapsed or hidden views should have almost zero overhead
52
-
- Adds relative date markers (_Less than a week ago_, _Over a week ago_, _Over a month ago_, etc) to revision (commit) histories in GitLens views
53
-
- Adds branch and tag tip markers to revision (commit) histories in GitLens views — closes [#560](https://github.com/eamodio/vscode-gitlens/issues/560)
54
-
- Adds a changes indicator (+x ~x -x) to commits in GitLens views (uses the new `${changes}` token in the `gitlens.views.commitFormat` setting) — closes [#493](https://github.com/eamodio/vscode-gitlens/issues/493)
55
-
- Adds comparisions to commit ids, by prefixing with a `#`, in addition to branches and tags — closes [#535](https://github.com/eamodio/vscode-gitlens/issues/535)
56
-
- Adds support for git mailmap — closes [#388](https://github.com/eamodio/vscode-gitlens/issues/388)
57
-
- Adds support for Azure DevOps (formerly VSTS) remotes — closes [#501](https://github.com/eamodio/vscode-gitlens/issues/501)
58
-
- Adds better detection of on-prem BitBucket and GitLab remotes — closes [#214](https://github.com/eamodio/vscode-gitlens/issues/214)
59
-
- Adds some missing gitmojis — thanks to [PR #510](https://github.com/eamodio/vscode-gitlens/pull/510) by Loris Bettazza ([@Pustur](https://github.com/Pustur))
60
-
- Changes the sorting of branch, tags, and files in GitLens views to be a natural sort — closes [#547](https://github.com/eamodio/vscode-gitlens/issues/547)
61
-
- Changes the _Apply Changes_ command to truly apply only the patch of the specified change — closes [#539](https://github.com/eamodio/vscode-gitlens/issues/539)
- Fixes [#430](https://github.com/eamodio/vscode-gitlens/issues/430) - File revisions can end up being parsed by language servers (causing errors and warnings, etc)
64
-
- Fixes [#496](https://github.com/eamodio/vscode-gitlens/issues/496) - Short hash length doesn't match git's default length
65
-
- Fixes [#503](https://github.com/eamodio/vscode-gitlens/issues/503) - Open Changes (with difftool) opens one difftool window per changed file
- Fixes [#527](https://github.com/eamodio/vscode-gitlens/issues/527) - GitLens icon flashes on startup
68
-
- Fixes [#533](https://github.com/eamodio/vscode-gitlens/issues/533) - Some descriptions not using markdown properly in Settings GUI
69
-
- Fixes [#544](https://github.com/eamodio/vscode-gitlens/issues/544) - Some commit messages have one letter missing
49
+
- And much more
70
50
71
51
See the [release notes](https://github.com/eamodio/vscode-gitlens/blob/master/CHANGELOG.md'Open Release Notes') for the full set of changes
72
52
73
53
# GitLens
74
54
75
55
[GitLens](https://gitlens.amod.io'Learn more about GitLens') is an [open-source](https://github.com/eamodio/vscode-gitlens'Open GitLens on GitHub') extension for [Visual Studio Code](https://code.visualstudio.com) created by [Eric Amodio](https://www.amod.io'Learn more about Eric').
76
56
77
-
GitLens simply helps you **better understand code**. Quickly glimpse into whom, why, and when a line or code block was changed. Jump back through history to **gain further insights** as to how and why the code evolved. Explore the history and evolution of a codebase.
57
+
GitLens simply helps you **better understand code**. Quickly glimpse into whom, why, and when a line or code block was changed. Jump back through history to **gain further insights** as to how and why the code evolved. Effortlessly explore the history and evolution of a codebase.
78
58
79
59
While GitLens is **powerful and feature rich**, it is also [highly customizable](#gitlens-settings-'Jump to the GitLens settings docs') to meet your specific needs — find code lens intrusive or the current line blame annotation distracting — no problem, it is quick and easy to turn them off or change how they behave via the built-in [_GitLens Settings_ editor](#configuration'Jump to Configuration'), an **interactive editor** covering many of GitLens' powerful settings. While for more advanced customizations, refer to the [GitLens settings docs](#gitlens-settings-'Jump to the GitLens settings docs') and edit your vscode [user settings](https://code.visualstudio.com/docs/getstarted/settings'Open User settings').
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
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",
0 commit comments