Preps v3.6.0

This commit is contained in:
Eric Amodio
2017-06-02 15:27:10 -04:00
parent 4400ab1da9
commit 5298511bb9
3 changed files with 655 additions and 340 deletions

View File

@@ -4,7 +4,7 @@ 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/). The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [3.6.0-beta] - 2017-05-27 ## [3.6.0] - 2017-06-02
### Added ### Added
- Adds diff information (the line's previous version) into the active line hover - Adds diff information (the line's previous version) into the active line hover
- Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree - Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree
@@ -21,6 +21,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous` - Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous`
- Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree` - Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree`
### Fixed
- Fixes [#79](https://github.com/eamodio/vscode-gitlens/issues/79) - Application insights package breaks GitLens + eslint
## [3.5.1] - 2017-05-25 ## [3.5.1] - 2017-05-25
### Changed ### Changed
- Changes certain code lens actions to be unavailable (unclickable) when the commit referenced is uncommitted - avoids unwanted error messages - Changes certain code lens actions to be unavailable (unclickable) when the commit referenced is uncommitted - avoids unwanted error messages

972
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "gitlens", "name": "gitlens",
"version": "3.6.0-beta", "version": "3.6.0",
"author": { "author": {
"name": "Eric Amodio", "name": "Eric Amodio",
"email": "eamodio@gmail.com" "email": "eamodio@gmail.com"
@@ -892,12 +892,14 @@
"*" "*"
], ],
"scripts": { "scripts": {
"compile": "npm run lint && tsc -p ./", "clean": "git clean -xdf",
"compile": "tslint --project tslint.json && tsc -p ./",
"watch": "tsc -watch -p ./", "watch": "tsc -watch -p ./",
"lint": "tslint --project tslint.json", "lint": "tslint --project tslint.json",
"pack": "git clean -xdf --exclude=node_modules/ && vsce package", "pack": "git clean -xdf && vsce package",
"postinstall": "node ./node_modules/vscode/bin/install", "postinstall": "node ./node_modules/vscode/bin/install",
"pub": "git clean -xdf && vsce publish", "pub": "git clean -xdf && vsce publish",
"reset": "git clean -xdf && npm install",
"vscode:prepublish": "npm install && npm run compile" "vscode:prepublish": "npm install && npm run compile"
}, },
"dependencies": { "dependencies": {