Skip to content

Commit 7f2ec30

Browse files
committed
Preps v4.1-beta
1 parent 48a1ca7 commit 7f2ec30

File tree

2 files changed

+44
-41
lines changed

2 files changed

+44
-41
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ 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-
## [4.0.2-beta] - 2017-06-10
7+
## [4.1.0-beta] - 2017-06-10
88
### Added
9+
- Adds all-new recent changes annotations of the whole-file - annotates and highlights all of lines changed in the most recent commit
10+
- Can customize the [layout](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#file-recent-changes-annotation-settings), as well as the [theme](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#theme-settings)
11+
- Adds `Toggle Recent File Changes Annotations` command (`gitlens.toggleFileRecentChanges`) - toggles the recent changes annotations on and off
912
- Improves performance
1013
- Optimized git output parsing to increase speed and reduce memory usage
1114
- Defers diff chunk parsing until it is actually required

package.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitlens",
3-
"version": "4.0.2-beta",
3+
"version": "4.1.0-beta",
44
"author": {
55
"name": "Eric Amodio",
66
"email": "[email protected]"
@@ -122,16 +122,16 @@
122122
"default": true,
123123
"description": "Specifies whether or not to trigger hover annotations over the whole line"
124124
},
125-
"gitlens.annotations.file.recentChanges.hover.changes": {
126-
"type": "boolean",
127-
"default": true,
128-
"description": "Specifies whether or not to provide a changes (diff) hover annotations"
129-
},
130-
"gitlens.annotations.file.recentChanges.hover.wholeLine": {
131-
"type": "boolean",
132-
"default": true,
133-
"description": "Specifies whether or not to trigger hover annotations over the whole line"
134-
},
125+
"gitlens.annotations.file.recentChanges.hover.changes": {
126+
"type": "boolean",
127+
"default": true,
128+
"description": "Specifies whether or not to provide a changes (diff) hover annotations"
129+
},
130+
"gitlens.annotations.file.recentChanges.hover.wholeLine": {
131+
"type": "boolean",
132+
"default": true,
133+
"description": "Specifies whether or not to trigger hover annotations over the whole line"
134+
},
135135
"gitlens.annotations.line.hover.details": {
136136
"type": "boolean",
137137
"default": true,
@@ -215,26 +215,26 @@
215215
],
216216
"description": "Specifies the type of blame annotations that will be shown for the current line\n `trailing` - adds an annotation to the end of the current line\n `hover` - shows annotations when hovering over the current line"
217217
},
218-
"gitlens.recentChanges.file.lineHighlight.locations": {
219-
"type": "array",
220-
"default": [
221-
"gutter",
222-
"line",
223-
"overviewRuler"
224-
],
225-
"items": {
226-
"type": "string",
227-
"enum": [
228-
"gutter",
229-
"line",
230-
"overviewRuler"
231-
]
232-
},
233-
"minItems": 1,
234-
"maxItems": 3,
235-
"uniqueItems": true,
236-
"description": "Specifies where the highlights of the recently changed lines will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
237-
},
218+
"gitlens.recentChanges.file.lineHighlight.locations": {
219+
"type": "array",
220+
"default": [
221+
"gutter",
222+
"line",
223+
"overviewRuler"
224+
],
225+
"items": {
226+
"type": "string",
227+
"enum": [
228+
"gutter",
229+
"line",
230+
"overviewRuler"
231+
]
232+
},
233+
"minItems": 1,
234+
"maxItems": 3,
235+
"uniqueItems": true,
236+
"description": "Specifies where the highlights of the recently changed lines will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
237+
},
238238
"gitlens.codeLens.enabled": {
239239
"type": "boolean",
240240
"default": true,
@@ -787,11 +787,11 @@
787787
"dark": "images/git-icon-dark.svg",
788788
"light": "images/git-icon-light.svg"
789789
}
790-
},
791-
{
792-
"command": "gitlens.toggleFileRecentChanges",
793-
"title": "Toggle Recent File Changes Annotations",
794-
"category": "GitLens"
790+
},
791+
{
792+
"command": "gitlens.toggleFileRecentChanges",
793+
"title": "Toggle Recent File Changes Annotations",
794+
"category": "GitLens"
795795
},
796796
{
797797
"command": "gitlens.toggleLineBlame",
@@ -955,10 +955,10 @@
955955
{
956956
"command": "gitlens.toggleFileBlame",
957957
"when": "gitlens:isBlameable"
958-
},
959-
{
960-
"command": "gitlens.toggleFileRecentChanges",
961-
"when": "gitlens:isTracked"
958+
},
959+
{
960+
"command": "gitlens.toggleFileRecentChanges",
961+
"when": "gitlens:isTracked"
962962
},
963963
{
964964
"command": "gitlens.toggleLineBlame",

0 commit comments

Comments
 (0)