This commit is contained in:
Daniel Griffen 2018-10-04 22:39:03 -07:00
Родитель c9a3a24a04
Коммит e8b4777adb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 315FB75FAC745B68
3 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -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/) 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). 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 ## [1.0] - 2018-3-5
### Added ### Added
- Service API - 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 # 0.2.0 - 2017-7-25
- Initial MVP release - 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 [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.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.7]:https://github.com/Microsoft/WhackWhackTerminal/compare/v0.2.6...v0.2.7

Просмотреть файл

@ -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. Once you have the prerequisites you can begin setting up your project to build.
1. Open a terminal window. 1. Open a terminal window.
2. Run `npm config set msvs_version 2015` 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` 4. Run `npm install`
After this you can simply open the solution file in Visual Studio and hit f5 to start debugging. After this you can simply open the solution file in Visual Studio and hit f5 to start debugging.

Просмотреть файл

@ -1,6 +1,6 @@
{ {
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.1", "version": "1.2",
"publicReleaseRefSpec": [ "publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master "^refs/heads/master$", // we release out of master
"^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N "^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N