From cbb69869d9fdfbfad22d5cc1c545f83bc4ca13d6 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 19 Jun 2018 10:24:35 -0400 Subject: [PATCH] Adds heatmap to features overview and fixes phrasing --- CHANGELOG.md | 2 +- README.md | 4 ++-- src/ui/welcome/index.html | 6 +++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70f941b..897c596 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Added - Adds completely revamped heatmap annotations ![cold heatmap](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/cl-heatmap-cold.png) - - The indicator's, now customizable, color will either be hot or cold based on the age of the most recent change (cold after 90 days by default) — closes [#419](https://github.com/eamodio/vscode-gitlens/issues/419) + - The indicator's color, now customizable, will either be hot or cold based on the age of the most recent change (cold after 90 days by default) — closes [#419](https://github.com/eamodio/vscode-gitlens/issues/419) - The indicator's brightness ranges from bright (newer) to dim (older) based on the relative age, which is calculated from the median age of all the changes in the file - Adds `gitlens.heatmap.ageThreshold` setting to specify the age of the most recent change (in days) after which the gutter heatmap annotations will be cold rather than hot (i.e. will use `gitlens.heatmap.coldColor` instead of `gitlens.heatmap.hotColor`) - Adds `gitlens.heatmap.coldColor` setting to specify the base color of the gutter heatmap annotations when the most recent change is older (cold) than the `gitlens.heatmap.ageThreshold` setting diff --git a/README.md b/README.md index 69de7c9..33718b5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## 8.4 — June 2018 - Adds completely revamped heatmap annotations ![cold heatmap](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/cl-heatmap-cold.png) - - The indicator's, now customizable, color will either be hot or cold based on the age of the most recent change (cold after 90 days by default) — closes [#419](https://github.com/eamodio/vscode-gitlens/issues/419) + - The indicator's color, now customizable, will either be hot or cold based on the age of the most recent change (cold after 90 days by default) — closes [#419](https://github.com/eamodio/vscode-gitlens/issues/419) - The indicator's brightness ranges from bright (newer) to dim (older) based on the relative age, which is calculated from the median age of all the changes in the file - Adds `gitlens.heatmap.ageThreshold` setting to specify the age of the most recent change (in days) after which the gutter heatmap annotations will be cold rather than hot (i.e. will use `gitlens.heatmap.coldColor` instead of `gitlens.heatmap.hotColor`) - Adds `gitlens.heatmap.coldColor` setting to specify the base color of the gutter heatmap annotations when the most recent change is older (cold) than the `gitlens.heatmap.ageThreshold` setting @@ -43,7 +43,7 @@ Here are just some of the features that GitLens provides, - authorship [code lens](#code-lens "Jump to the Code Lens") showing the most recent commit and # of authors to the top of files and/or on code blocks - an unobtrusive [current line blame](#current-line-blame "Jump to the Current Line Blame") annotation at the end of the line - on-demand [gutter blame](#gutter-blame "Jump to the Gutter Blame") annotations, including a heatmap, for the whole file - - detailed blame information accessible via [hovers](#hovers "Jump to the Hovers") + - on-demand [gutter heatmap](#gutter-heatmap "Jump to the Gutter Heatmap") annotations to show how recently lines were changed, relative to all the other changes in the file and to now (hot vs. cold) - on-demand [recent changes](#recent-changes "Jump to the Recent Changes") annotations to highlight lines changed by the most recent commit - a [status bar blame](#status-bar-blame "Jump to the Status Bar Blame") annotation showing author and date for the current line - [commit search](#commit-search "Jump to the Commit Search") — by message, author, filename, commit id, or code changes diff --git a/src/ui/welcome/index.html b/src/ui/welcome/index.html index d97e0d5..247038b 100644 --- a/src/ui/welcome/index.html +++ b/src/ui/welcome/index.html @@ -51,7 +51,7 @@ NEW Adds completely revamped heatmap annotations
-

The indicator's, now customizable, color will either be hot or cold based on the age of the +

The indicator's color, now customizable, will either be hot or cold based on the age of the most recent change (cold after 90 days by default) — closes #419

@@ -728,6 +728,10 @@
  • on-demand gutter blame annotations, including a heatmap, for the whole file
  • +
  • on-demand + gutter heatmap annotations to show how recently lines were changed, relative to all + the other changes in the file and to now (hot vs. cold) +
  • detailed blame information accessible via hovers