From 5020fe18f0972f060a247976530b6e91fb97099d Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 22 Apr 2019 00:52:14 -0400 Subject: [PATCH] Preps v9.6.3 --- CHANGELOG.md | 21 +++++++++++++++++++-- README.md | 2 +- package.json | 6 +++--- src/webviews/apps/welcome/index.html | 33 ++++++++++++++++++++++++++++++++- 4 files changed, 55 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97fe6f0..46ffcd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,29 @@ 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/). -## [9.6.2] - 2019-04-017 +## [9.6.3] - 2019-04-22 + +## Added + +- Adds a `gitlens.hovers.changesDiff` setting to specify whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover + +## Changes + +- Improves the maintaining of the line context when opening changes from the hovers +- Improves the accuracy of the _changes (diff)_ hover +- Improves the rendering of the diff in the _changes (diff)_ hover + +## Fixed + +- Fixes [#697](https://github.com/eamodio/vscode-gitlens/issues/697) - fixes git error handling for some linux OS' + +## [9.6.2] - 2019-04-17 ### Fixed - Fixes [#718](https://github.com/eamodio/vscode-gitlens/issues/718) - Can't see changed files when comparing branches -## [9.6.1] - 2019-04-017 +## [9.6.1] - 2019-04-17 ### Added @@ -2764,6 +2780,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Initial release but still heavily a work in progress. +[9.6.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.2...eamodio:v9.6.3 [9.6.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.1...eamodio:v9.6.2 [9.6.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.0...eamodio:v9.6.1 [9.6.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.5.1...eamodio:v9.6.0 diff --git a/README.md b/README.md index cc45f40..32decbc 100644 --- a/README.md +++ b/README.md @@ -695,7 +695,7 @@ GitLens is highly customizable and provides many configuration settings to allow | `gitlens.hovers.annotations.enabled` | Specifies whether to provide any hovers when showing blame annotations | | `gitlens.hovers.annotations.over` | Specifies when to trigger hovers when showing blame annotations

`annotation` - only shown when hovering over the line annotation
`line` - shown when hovering anywhere over the line | | `gitlens.hovers.avatars` | Specifies whether to show avatar images in hovers | -| `gitlens.hovers.changesDiff` | Specifies whether to show just the changes to the line or the full set of related changes in the _changes (diff)_ hover

`line` - Shows only the changes to the line

`hunk` - Shows the full set of related changes | +| `gitlens.hovers.changesDiff` | Specifies whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover

`line` - Shows only the changes to the line

`hunk` - Shows the set of related changes | | `gitlens.hovers.currentLine.changes` | Specifies whether to provide a _changes (diff)_ hover for the current line | | `gitlens.hovers.currentLine.details` | Specifies whether to provide a _commit details_ hover for the current line | | `gitlens.hovers.currentLine.enabled` | Specifies whether to provide any hovers for the current line | diff --git a/package.json b/package.json index d857565..e9b364d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "gitlens", "displayName": "GitLens — Git supercharged", "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", - "version": "9.6.2", + "version": "9.6.3", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" @@ -572,9 +572,9 @@ ], "enumDescriptions": [ "Shows only the changes to the line", - "Shows the full set of related changes" + "Shows the set of related changes" ], - "markdownDescription": "Specifies whether to show just the changes to the line or the full set of related changes in the _changes (diff)_ hover", + "markdownDescription": "Specifies whether to show just the changes to the line or the set of related changes in the _changes (diff)_ hover", "scope": "window" }, "gitlens.hovers.detailsMarkdownFormat": { diff --git a/src/webviews/apps/welcome/index.html b/src/webviews/apps/welcome/index.html index 9ea9e48..f9626ee 100644 --- a/src/webviews/apps/welcome/index.html +++ b/src/webviews/apps/welcome/index.html @@ -194,7 +194,7 @@
  • NEWAdds a prompt to enable the view to the Show * View commands when the specified view is - disabled — — closes + disabled — closes
  • + NEWAdds a + gitlens.hovers.changesDiff setting to specify whether to show just the + changes to the line or the set of related changes in the changes (diff) hover +
    +
  • +
  • IMPROVEDRemoves the automatic suspension of the current line blame annotations while debugging — closes @@ -252,6 +258,21 @@
  • IMPROVEDImproves the + maintaining of the line context when opening changes from the hovers +
    +
  • +
  • + IMPROVEDImproves the + accuracy of the changes (diff) hover +
    +
  • +
  • + IMPROVEDImproves the + rendering of the diff in the changes (diff) hover +
    +
  • +
  • + IMPROVEDImproves the behavior of the Open Changes with Next Revision (gitlens.diffWithNext) command when in the diff editor @@ -367,6 +388,16 @@
  • + FIXEDFixes + #697 + — fixes git error handling for some linux OS' +
    +
  • +
  • FIXEDFixes the behavior of the Open Line Changes with Previous Revision (gitlens.diffLineWithPrevious) command to follow the line history much