diff --git a/CHANGELOG.md b/CHANGELOG.md index 309b50a..f942665 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,22 +4,26 @@ 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/). -## [Unreleased] +## [9.9.0] - 2019-07-21 ### Added +- Adds guided (step-by-step) access to common Git commands (and their flags) via the all-new _Git Commands_ command (`gitlens.gitCommands`) + - Quickly navigate and execute Git commands through easy-to-use menus where each command requires an explicit confirm step before executing - Adds _Open All Changes_, _Open All Changes with Working Tree_, _Open Files_, and _Open Revisions_ commands to files changed nodes in the views — closes [#760](https://github.com/eamodio/vscode-gitlens/issues/760) +- Adds a new `${tips}` format token to show an indicator if the commit is a tip of any branches or tags — closes [#792](https://github.com/eamodio/vscode-gitlens/issues/792) ### Changed - Improves performance and memory consumption - Changes the _Checkout_ command on remote branches to create and checkout a new local branch rather than checkout a detached HEAD — closes [#709](https://github.com/eamodio/vscode-gitlens/issues/709) +- Changes folders in the views to expand by default when using _Tree Layout_ ### Fixed - Fixes [#791](https://github.com/eamodio/vscode-gitlens/issues/791) - Notification of unstashed changes in working directory on failed checkout -- Fixes [#792](https://github.com/eamodio/vscode-gitlens/issues/792) - Show last commit message on repositories view instead of Git reference - Fixes [#795](https://github.com/eamodio/vscode-gitlens/issues/795) - Commit quick access icons replaced with open file actions in File History View +- Fixes issue with the JSON schema of a configuration setting ## [9.8.5] - 2019-07-10 @@ -54,7 +58,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Changed - Changes fetch, pull, and push commands to be executed in parallel, rather than sequentially -- Changes _Search Commits_ (`gitlens.showCommitSearch`) command to prompt for a repository, if there is more than one +- Changes _Search Commits_ command (`gitlens.showCommitSearch`) to prompt for a repository, if there is more than one ### Removed @@ -141,7 +145,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Fixes issues with the _Show More Actions_ button on the _Details_ hover not working with renamed files - Fixes issues with the _Open File_, _Open Files_, _Open All Changes with Working Tree_, and _Apply Changes_ commands in the views not working with renamed files - Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ commands in the quick pick menus not working with renamed files -- Fixes issues with the _Show Stashed Changes_ (`gitlens.showQuickStashList`) command and multiple repositories +- Fixes issues with the _Show Stashed Changes_ command (`gitlens.showQuickStashList`) and multiple repositories ## [9.7.3] - 2019-05-11 @@ -2996,6 +3000,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.9.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.5...eamodio:v9.9.0 [9.8.5]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.4...eamodio:v9.8.5 [9.8.4]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.3...eamodio:v9.8.4 [9.8.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.2...eamodio:v9.8.3 diff --git a/README.md b/README.md index 9c8f8f2..eb5c5a0 100644 --- a/README.md +++ b/README.md @@ -634,6 +634,10 @@ The compare view provides the following features, #### Other Commands (not a complete list) +- Adds a _Git Commands_ command (`gitlens.gitCommands`) to provide a guided (step-by-step) access to common Git commands (and their flags) + + - Quickly navigate and execute Git commands through easy-to-use menus where each command requires an explicit confirm step before executing + - Adds a _Copy Commit ID to Clipboard_ command (`gitlens.copyShaToClipboard`) to copy the commit id (sha) of the current line to the clipboard or from the most recent commit to the current branch, if there is no current editor - Adds a _Copy Commit Message to Clipboard_ command (`gitlens.copyMessageToClipboard`) to copy the commit message of the current line to the clipboard or from the most recent commit to the current branch, if there is no current editor diff --git a/package.json b/package.json index 4bff3ce..2c7eb2a 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.8.5", + "version": "9.9.0", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" diff --git a/src/webviews/apps/welcome/index.html b/src/webviews/apps/welcome/index.html index 3cce405..872d221 100644 --- a/src/webviews/apps/welcome/index.html +++ b/src/webviews/apps/welcome/index.html @@ -105,7 +105,7 @@

- What's New in GitLens 9.8 + What's New in GitLens 9.9

See the @@ -130,52 +130,32 @@