소스 검색

Preps v9.2.0

main
Eric Amodio 6 년 전
부모
커밋
fbaed2c9c9
3개의 변경된 파일93개의 추가작업 그리고 10개의 파일을 삭제
  1. +11
    -9
      CHANGELOG.md
  2. +1
    -1
      package.json
  3. +81
    -0
      src/ui/welcome/index.html

+ 11
- 9
CHANGELOG.md 파일 보기

@ -4,26 +4,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [9.2.0] - 2018-12-13
### Added
- Improves the commit search experience
- Remembers and restores the last commit search string
- Adds the _Search Commits_ command to the search results inline toolbar
- Adds a _Search Commits_ command to the search results inline toolbar
- Reopens the commit search when clicking on a search results without results
- Adds a _Collapse_ command to the toolbars of the _Compare_ and _Search Commits_ views
- Adds a `gitlens.views.commitFileDescriptionFormat` setting to specify the description format of a committed file in the views
- Adds a `gitlens.views.commitDescriptionFormat` setting to specify the description format of committed changes in the views
- Adds a `gitlens.views.stashFileDescriptionFormat` setting to specify the description format of a stashed file in the views
- Adds a `gitlens.views.stashDescriptionFormat` setting to specify the description format of stashed changes in the views
- Adds a `gitlens.views.statusFileDescriptionFormat` setting to specify the description format of the status of a working or committed file in the views
- Adds a _Collapse_ command to the toolbars of the _Compare_ and _Search Commits_ views — closes [#383](https://github.com/eamodio/vscode-gitlens/issues/383)
- Adds support for the [new ability](https://code.visualstudio.com/updates/v1_30#_custom-views) to have descriptions on view nodes — provides a much cleaner layout
- Adds a `gitlens.views.commitFileDescriptionFormat` setting to specify the description format of a committed file in the views
- Adds a `gitlens.views.commitDescriptionFormat` setting to specify the description format of committed changes in the views
- Adds a `gitlens.views.stashFileDescriptionFormat` setting to specify the description format of a stashed file in the views
- Adds a `gitlens.views.stashDescriptionFormat` setting to specify the description format of stashed changes in the views
- Adds a `gitlens.views.statusFileDescriptionFormat` setting to specify the description format of the status of a working or committed file in the views
- Adds a `gitlens.views.repositories.compact` setting to specify whether to show the _Repositories_ view in a compact display density — closes [#571](https://github.com/eamodio/vscode-gitlens/issues/571)
### Fixed
- Fixes [#559](https://github.com/eamodio/vscode-gitlens/issues/559) — Html encoding issues with the empty state of the _Compare_ and _Search Commits_ views
- Fixes [#574](https://github.com/eamodio/vscode-gitlens/issues/574) — Apply Changes not working because of whitespace conflicts
- Fixes html encoding issues with the empty state of the _Compare_ and _Search Commits_ views
- Fixes [#589](https://github.com/eamodio/vscode-gitlens/issues/589) — Bad revision for stash
## [9.1.0] - 2018-12-12

+ 1
- 1
package.json 파일 보기

@ -2,7 +2,7 @@
"name": "gitlens",
"displayName": "GitLens — Git supercharged",
"description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
"version": "9.1.0",
"version": "9.2.0",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

+ 81
- 0
src/ui/welcome/index.html 파일 보기

@ -116,6 +116,87 @@
<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">9.2</span>
<span class="changelog__date">DEC &nbsp;2018</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Improves the commit
search experience
<div class="changelog__details changelog__details--list">
<p>
Remembers and restores the last commit search string. Adds a
<i>Search Commits</i> command to the search results inline toolbar. Reopens
the commit search when clicking on a search results without results
</p>
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
<i>Collapse</i> command to the toolbars of the <i>Compare</i> and
<i>Search Commits</i> views &mdash; closes
<a
title="Open Issue #383"
href="https://github.com/eamodio/vscode-gitlens/issues/383"
>#383</a
>
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds support for
the
<a
title="Open VS Code 1.30 Release Notes"
href="https://code.visualstudio.com/updates/v1_30#_custom-views"
>new ability</a
>
to have descriptions on view nodes &mdash; provides a much cleaner layout
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
<code>gitlens.views.repositories.compact</code> setting to specify whether to show
the <i>Repositories</i> view in a compact display density &mdash; closes
<a
title="Open Issue #571"
href="https://github.com/eamodio/vscode-gitlens/issues/571"
>#571</a
>
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #559"
href="https://github.com/eamodio/vscode-gitlens/issues/559"
>#559</a
>
&mdash; Html encoding issues with the empty state of the <i>Compare</i> and
<i>Search Commits</i> views
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #574"
href="https://github.com/eamodio/vscode-gitlens/issues/574"
>#574</a
>
&mdash; Apply Changes not working because of whitespace conflicts
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #589"
href="https://github.com/eamodio/vscode-gitlens/issues/589"
>#589</a
>
&mdash; Bad revision for stash
<div class="changelog__details changelog__details--list"></div>
</li>
<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">9.1</span>
<span class="changelog__date">DEC &nbsp;2018</span>
<div class="changelog__details"></div>

불러오는 중...
취소
저장