This commit is contained in:
Jonathan Carter 2020-03-15 09:26:20 -07:00
Родитель cb1416b76a
Коммит 731c8a59e2
3 изменённых файлов: 10 добавлений и 2 удалений

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

@ -1,3 +1,9 @@
## v0.0.9 (03/15/2020)
- Added the ability to record a text selection as part of a step
![Selection](https://user-images.githubusercontent.com/116461/76705627-b96cc280-669e-11ea-982a-d754c4f001aa.gif)
## v0.0.8 (03/14/2020)
- Added the ability to associate a tour with a specific Git tag and/or commit, in order to enable it to be resilient to code changes

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

@ -68,7 +68,9 @@ At any time, you can right-click a tour in the `CodeTour` tree and change it's t
### Selection
By default, each step is associated with the line of code that you create the comment on. However, if you want to call out a span of code as part of the step, simply highlight the code before you add the step, and the selection will be captured as part of the step.
By default, each step is associated with the line of code you create the comment on. However, if you want to call out a specific span of code as part of the step, simply highlight the code before you add the step, and the selection will be captured as part of the step.
<img width="800px" src="https://user-images.githubusercontent.com/116461/76705627-b96cc280-669e-11ea-982a-d754c4f001aa.gif" />
### Re-arranging steps

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

@ -3,7 +3,7 @@
"displayName": "CodeTour",
"description": "VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor",
"publisher": "vsls-contrib",
"version": "0.0.8",
"version": "0.0.9",
"repository": {
"type": "git",
"url": "https://github.com/vsls-contrib/codetour"