diff --git a/CHANGELOG.md b/CHANGELOG.md index 9596756..81de57d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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). +## [1.2] - 2018-10-5 +### Fixed +- Terminal now behaves mostly correctly on HiDPI displays. + +## [1.1.3] - 2018-6-27 +### Added +- Terminal renderer API + ## [1.0] - 2018-3-5 ### Added - Service API @@ -75,7 +83,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. # 0.2.0 - 2017-7-25 - Initial MVP release - +[1.1.3]: https://github.com/Microsoft/WhackWhackTerminal/compare/v1,0...v1.1.3 [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 diff --git a/README.md b/README.md index 0b4553b..67e8333 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ You need the following components installed in order to build WhackWhackTerminal Once you have the prerequisites you can begin setting up your project to build. 1. Open a terminal window. 2. Run `npm config set msvs_version 2015` -3. Navigate to the EmbbededTerminal project directory +3. Navigate to the Microsoft.VisualStudio.Terminal project directory 4. Run `npm install` After this you can simply open the solution file in Visual Studio and hit f5 to start debugging. diff --git a/version.json b/version.json index 7d75ccc..55cab8a 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.1", + "version": "1.2", "publicReleaseRefSpec": [ "^refs/heads/master$", // we release out of master "^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N