@ -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/).
## [Unreleased]
### Added
- Adds `gitlens.advanced.messages` setting to specify which messages should be suppressed
### Changed
- Changes from using `globalState` to use `gitlens.advanced.messages` setting for message suppression - provides more control and avoids strange intermittent with `globalState`
## [6.1.2] - 2017-11-21
### Fixed
- Fixes [#207](https://github.com/eamodio/vscode-gitlens/issues/207) - Applying and deleting stashes suddenly stopped working
if(commit===undefined)returnMessages.showMessage('info',`Commit has no previous commit`,SuppressedKeys.CommitHasNoPreviousCommitWarning);
returnMessages.showMessage('info',`Commit ${commit.shortSha} (${commit.author}, ${commit.fromNow()}) has no previous commit`,SuppressedKeys.CommitHasNoPreviousCommitWarning);
if(commit===undefined)returnMessages.showMessage('info',`Commit has no previous commit`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
returnMessages.showMessage('info',`Commit ${commit.shortSha} (${commit.author}, ${commit.fromNow()}) has no previous commit`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
returnMessages.showMessage('error',`GitLens requires a newer version of Git (>= 2.2.0) than is currently installed (${version}). Please install a more recent version of Git.`,SuppressedKeys.GitVersionWarning);
returnMessages.showMessage('error',`GitLens requires a newer version of Git (>= 2.2.0) than is currently installed (${version}). Please install a more recent version of Git.`,SuppressedMessages.GitVersionWarning);
constresult=awaitMessages.showMessage('info',`Thank you for choosing GitLens! GitLens is powerful, feature rich, and highly configurable, so please be sure to view the docs and tailor it to suit your needs.`,SuppressedKeys.WelcomeNotice,null,viewDocs);
constresult=awaitMessages.showMessage('info',`Thank you for choosing GitLens! GitLens is powerful, feature rich, and highly configurable, so please be sure to view the docs and tailor it to suit your needs.`,SuppressedMessages.WelcomeNotice,null,viewDocs);