浏览代码

Preps v9.4.0

main
Eric Amodio 5 年前
父节点
当前提交
47902937ee
共有 5 个文件被更改,包括 733 次插入2941 次删除
  1. +5
    -1
      CHANGELOG.md
  2. +3
    -3
      README.md
  3. +653
    -2931
      package-lock.json
  4. +4
    -4
      package.json
  5. +68
    -2
      src/ui/welcome/index.html

+ 5
- 1
CHANGELOG.md 查看文件

@ -4,13 +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/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [9.4.0] - 2019-01-08
### Added
- Adds pinning of comparisons in the _Compare_ view — pinned comparisons will persist across reloads
- Adds an _Open in Terminal_ command to repositories in the _Repositories_ view
### Changed
- Renames the _Copy Remote File URL to Clipboard_ command (`gitlens.copyRemoteFileUrlToClipboard`) to _Copy Remote URL to Clipboard_ for brevity
### Fixed
- Fixes [#606](https://github.com/eamodio/vscode-gitlens/issues/606) - ID for xxx is already registered?!

+ 3
- 3
README.md 查看文件

@ -370,7 +370,7 @@ The file history view provides the following features,
- Automatically tracks the current editor and lists the revision (commit) history of the current file
- An inline toolbar provides quick access to the _Open File_, and _Open File on Remote_ (if available) commands
- A context menu provides _Open File_, _Open File on Remote_ (if available), _Copy Remote File Url to Clipboard_ (if available), and _Refresh_ commands
- A context menu provides _Open File_, _Open File on Remote_ (if available), _Copy Remote Url to Clipboard_ (if available), and _Refresh_ commands
- Provides the message, author, and date of each revision (commit) — fully [customizable](#view-settings- 'Jump to the View settings')
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open Commit on Remote_ (if available) commands
- A context menu provides access to more common revision (commit) commands
@ -395,7 +395,7 @@ The line history view provides the following features,
- Automatically tracks the current editor selection and lists the revision (commit) history of the selection in current file
- An inline toolbar provides quick access to the _Open File_, and _Open File on Remote_ (if available) commands
- A context menu provides _Open File_, _Open File on Remote_ (if available), _Copy Remote File Url to Clipboard_ (if available), and _Refresh_ commands
- A context menu provides _Open File_, _Open File on Remote_ (if available), _Copy Remote Url to Clipboard_ (if available), and _Refresh_ commands
- Provides the message, author, and date of each revision (commit) — fully [customizable](#view-settings- 'Jump to the View settings')
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open Commit on Remote_ (if available) commands
- A context menu provides access to more common revision (commit) commands
@ -626,7 +626,7 @@ The compare view provides the following features,
- Adds a _Copy Commit Message to Clipboard_ command (`gitlens.copyMessageToClipboard`) to copy the commit message of the current line to the clipboard or from the most recent commit to the current branch, if there is no current editor
- Adds a _Copy Remote File Url to Clipboard_ command (`gitlens.copyRemoteFileUrlToClipboard`) to copy the remote url of the current file and line to the clipboard
- Adds a _Copy Remote Url to Clipboard_ command (`gitlens.copyRemoteFileUrlToClipboard`) to copy the remote url of the current file and line to the clipboard
- Adds an _Open Working File"_ command (`gitlens.openWorkingFile`) to open the working file for the current file revision

+ 653
- 2931
package-lock.json
文件差异内容过多而无法显示
查看文件


+ 4
- 4
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.3.0",
"version": "9.4.0",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"
@ -4870,7 +4870,7 @@
"css-loader": "2.1.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "3.2.0",
"imagemin-webpack-plugin": "2.3.0",
"imagemin-webpack-plugin": "2.4.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"prettier": "1.15.3",
@ -4880,11 +4880,11 @@
"tslint": "5.12.0",
"tslint-loader": "3.5.4",
"tslint-prettiest": "0.0.1",
"ts-loader": "5.3.2",
"ts-loader": "5.3.3",
"typescript": "3.2.2",
"vsce": "1.54.0",
"vscode": "1.1.26",
"webpack": "4.28.3",
"webpack-cli": "3.2.0"
"webpack-cli": "3.2.1"
}
}

+ 68
- 2
src/ui/welcome/index.html 查看文件

@ -130,6 +130,72 @@
<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">9.4</span>
<span class="changelog__date">JAN &nbsp;2019</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds pinning of
comparisons in the <i>Compare</i> view &mdash; pinned comparisons will persist
across reloads
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds an
<i>Open in Terminal</i> command to repositories in the <i>Repositories</i> view
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #606"
href="https://github.com/eamodio/vscode-gitlens/issues/606"
>#606</a
>
&mdash; ID for xxx is already registered?!
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #607"
href="https://github.com/eamodio/vscode-gitlens/issues/607"
>#607</a
>
&mdash; Open file in Remote Doesn't URL encode
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #608"
href="https://github.com/eamodio/vscode-gitlens/issues/608"
>#608</a
>
&mdash; Add an option to change the abbreviated commit SHA length &mdash; thanks to
<a
title="Open Issue #611"
href="https://github.com/eamodio/vscode-gitlens/issues/611"
>PR #611</a
>
by Skybbles // L5474 (<a title="@Luxray5474" href="https://github.com/Luxray5474"
>@Luxray5474</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 #613"
href="https://github.com/eamodio/vscode-gitlens/issues/613"
>#613</a
>
&mdash; Change Copy Remote URL to Clipboard to always copy a permalink (e.g.
revision link)
<div class="changelog__details changelog__details--list"></div>
</li>
<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">9.3</span>
<span class="changelog__date">JAN &nbsp;2019</span>
<div class="changelog__details"></div>
@ -679,8 +745,8 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds comparisons
to commit ids, by prefixing with a <code>#</code>, in addition to branches and tags
<span class="changelog__badge changelog__badge--added">NEW</span>Adds comparisons to
commit ids, by prefixing with a <code>#</code>, in addition to branches and tags
&mdash; closes
<a
title="Open Issue #535"

正在加载...
取消
保存