Browse Source

Preps v6.0.0-alpha2

main
Eric Amodio 7 years ago
parent
commit
876c35c799
3 changed files with 6 additions and 9 deletions
  1. +4
    -7
      CHANGELOG.md
  2. +1
    -1
      package-lock.json
  3. +1
    -1
      package.json

+ 4
- 7
CHANGELOG.md View File

@ -5,14 +5,8 @@ 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]
### Added
- Adds `Compare File with Branch...` command (`gitlens.diffWithBranch`) to source control resource context menu
- Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) to repository node(s) of the `GitLens` custom view
### Changed
- Optimizes current line hover annotations to only be computed on hover (i.e. lazily evaluated) to reduce the compute required when changing lines
## [6.0.0-alpha1] - 2017-10-24
## [6.0.0-alpha2] - 2017-10-26
ATTENTION! To support multi-root workspaces some underlying fundamentals had to change, so please expect and report issues. Thanks!
@ -23,10 +17,13 @@ ATTENTION! To support multi-root workspaces some underlying fundamentals had to
- Use `~<regex>` to search for commits with differences whose patch text contains added/removed lines that match `<regex>`
- Use `=<regex>` to search for commits with differences that change the number of occurrences of the specified string (i.e. addition/deletion) in a file
- Adds support to the `Compare File with Branch...` command (`gitlens.diffWithBranch`) work with renamed files -- closes [#165](https://github.com/eamodio/vscode-gitlens/issues/165)
- Adds `Compare File with Branch...` command (`gitlens.diffWithBranch`) to source control resource context menu
- Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) to repository node(s) of the `GitLens` custom view
### Changed
- `GitLens` custom view will no longer show if there is no Git repository -- closes [#159](https://github.com/eamodio/vscode-gitlens/issues/159)
- Optimizes event handling, executing git commands, and general processing to improve performance and reduce any lag
- Optimizes current line hover annotations to only be computed on hover (i.e. lazily evaluated) to reduce the compute required when changing lines
- Protects credentials from possibly being affected by poor network conditions via Git Credential Manager (GCM) for Windows environment variables
### Fixed

+ 1
- 1
package-lock.json View File

@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "6.0.0-alpha1",
"version": "6.0.0-alpha2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

+ 1
- 1
package.json View File

@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "6.0.0-alpha1",
"version": "6.0.0-alpha2",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

Loading…
Cancel
Save