mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 10:58:34 -05:00
Preps v4.1.1
This commit is contained in:
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
|
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [4.1.1] - 2017-06-13
|
||||||
|
### Added
|
||||||
|
- Adds an `alt` command to the `Toggle File Blame Annotations` command button, which when you hold down `alt` and click it will execute the `Toggle Recent File Changes Annotations` command instead
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixes missing `Toggle File Blame Annotations` command icon
|
||||||
|
|
||||||
## [4.1.0] - 2017-06-13
|
## [4.1.0] - 2017-06-13
|
||||||
### Added
|
### Added
|
||||||
- Adds all-new recent changes annotations of the whole-file - annotates and highlights all of lines changed in the most recent commit
|
- Adds all-new recent changes annotations of the whole-file - annotates and highlights all of lines changed in the most recent commit
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "4.1.0",
|
"version": "4.1.1",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
@@ -801,7 +801,11 @@
|
|||||||
{
|
{
|
||||||
"command": "gitlens.toggleFileRecentChanges",
|
"command": "gitlens.toggleFileRecentChanges",
|
||||||
"title": "Toggle Recent File Changes Annotations",
|
"title": "Toggle Recent File Changes Annotations",
|
||||||
"category": "GitLens"
|
"category": "GitLens",
|
||||||
|
"icon": {
|
||||||
|
"dark": "images/dark/git-icon.svg",
|
||||||
|
"light": "images/light/git-icon.svg"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.toggleLineBlame",
|
"command": "gitlens.toggleLineBlame",
|
||||||
@@ -1118,6 +1122,7 @@
|
|||||||
"editor/title": [
|
"editor/title": [
|
||||||
{
|
{
|
||||||
"command": "gitlens.toggleFileBlame",
|
"command": "gitlens.toggleFileBlame",
|
||||||
|
"alt": "gitlens.toggleFileRecentChanges",
|
||||||
"when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
|
"when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
|
||||||
"group": "navigation@100"
|
"group": "navigation@100"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user