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
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,23 @@ 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
+
## [3.6.0-beta] - 2017-05-27
8
+
### Added
9
+
- Adds diff information (the line's previous version) into the active line hover
10
+
- Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree
11
+
12
+
### Changed
13
+
- Changes the behavior of the `Compare File with Working Tree` command (`gitlens.diffWithWorking`) - always does what it says :)
14
+
- Compares the current file with the working tree -- if the current file *is* the working file, it will show a `File matches the working tree` message
15
+
- Changes the behavior of the `Compare File with Previous` command (`gitlens.diffWithPrevious`) - always does what it says :)
16
+
- Compares the current file with the previous commit to that file
17
+
- Changes the behavior of the `gitlens.diffWithPrevious` status bar command option - compares the current line commit with the previous
18
+
- Renames `Compare File with Previous Commit` command to `Compare File with Previous`
19
+
- Renames `Compare Line with Previous Commit` command to `Compare Line Commit with Previous`
20
+
- Renames `Compare Line with Working Tree` command to `Compare Line Commit with Working Tree`
21
+
- Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous`
22
+
- Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree`
23
+
7
24
## [3.5.1] - 2017-05-25
8
25
### Changed
9
26
- Changes certain code lens actions to be unavailable (unclickable) when the commit referenced is uncommitted - avoids unwanted error messages
@@ -19,7 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
19
36
- Reduces the number of git calls on known "untrackables"
20
37
- Caches many more git commands to reduce git command roundtrips and parsing
21
38
- Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file
22
-
- Adds diff information (previous line's code) into the active line hover when the current line is uncommitted
39
+
- Adds diff information (the line's previous version) into the active line hover when the current line is uncommitted
23
40
- Adds `gitlens.statusBar.alignment` settings to control the alignment of the status bar -- thanks to [PR #72](https://github.com/eamodio/vscode-gitlens/pull/72) by Zack Schuster ([@zackschuster](https://github.com/zackschuster))!
24
41
- Adds `Open Branch in Remote` command (`gitlens.openBranchInRemote`) - opens the current branch commits in the supported remote service
25
42
- Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) - opens the repository in the supported remote service
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ GitLens provides an unobtrusive blame annotation at the end of the selected line
20
20
21
21
#### Git Blame Annotations
22
22
23
-
- Adds a **blame annotation** to the end of the selected line showing the commit id and message, with more details in a hover popup ([optional](#extension-settings), on by default)
23
+
- Adds a **blame annotation** to the end of the selected line showing the commit id and message, with more details (including the line's previous version) in a hover popup ([optional](#extension-settings), on by default)
24
24
25
25
- Adds a `Toggle Blame Annotations` command (`gitlens.toggleBlame`) with a shortcut of `alt+b` to toggle **inline Git blame annotations** for a whole file with multiple styles — compact, expanded, and trailing
26
26
- Also adds a `Show Blame Annotations` command (`gitlens.showBlame`)
0 commit comments