September Release (#499)

* [Security] Bump elliptic from 6.5.0 to 6.5.3 (#488)

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.0 to 6.5.3. **This update includes a security fix.**
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.0...v6.5.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>

* feat: add color support for debug console messages. 

Close #498

* feat: add color support for debug console messages. 

Close #487

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This commit is contained in:
Mattia Astorino 2020-08-30 12:43:12 +02:00 committed by GitHub
parent 3c202e3b6f
commit 783119e249
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -471,7 +471,13 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
*/ */
'listFilterWidget.background': theme.scheme.inactiveSelectionBackground, 'listFilterWidget.background': theme.scheme.inactiveSelectionBackground,
'listFilterWidget.outline': theme.scheme.inactiveSelectionBackground, 'listFilterWidget.outline': theme.scheme.inactiveSelectionBackground,
'listFilterWidget.noMatchesOutline': theme.scheme.inactiveSelectionBackground 'listFilterWidget.noMatchesOutline': theme.scheme.inactiveSelectionBackground,
/**
* Debug Console
*/
'debugConsole.errorForeground': theme.scheme.base.red,
'debugConsole.infoForeground': theme.scheme.base.cyan,
'debugConsole.warningForeground': theme.scheme.base.yellow
}, },
/** /**
* Define the integrated shell * Define the integrated shell