Browse Source

Fixes issue with file history working tree compare

Would occur when the filename had changed
main
Eric Amodio 7 years ago
parent
commit
ff8b184bef
3 changed files with 5 additions and 2 deletions
  1. +3
    -0
      CHANGELOG.md
  2. +1
    -1
      package.json
  3. +1
    -1
      src/commands/showQuickFileHistory.ts

+ 3
- 0
CHANGELOG.md View File

@ -1,6 +1,9 @@
--- ---
## Release Notes ## Release Notes
### 1.4.2
- Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
### 1.4.1 ### 1.4.1
- Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo - Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo

+ 1
- 1
package.json View File

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

+ 1
- 1
src/commands/showQuickFileHistory.ts View File

@ -76,7 +76,7 @@ export default class ShowQuickFileHistoryCommand extends EditorCommand {
} }
if (command) { if (command) {
return commands.executeCommand(command, commit.uri, commit);
return commands.executeCommand(command, uri, commit);
} }
} }
catch (ex) { catch (ex) {

Loading…
Cancel
Save