mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
Fixes issue with file history working tree compare
Would occur when the filename had changed
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
---
|
||||
## 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
|
||||
- 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,6 +1,6 @@
|
||||
{
|
||||
"name": "gitlens",
|
||||
"version": "1.4.1",
|
||||
"version": "1.4.2",
|
||||
"author": {
|
||||
"name": "Eric Amodio",
|
||||
"email": "eamodio@gmail.com"
|
||||
|
||||
@@ -76,7 +76,7 @@ export default class ShowQuickFileHistoryCommand extends EditorCommand {
|
||||
}
|
||||
|
||||
if (command) {
|
||||
return commands.executeCommand(command, commit.uri, commit);
|
||||
return commands.executeCommand(command, uri, commit);
|
||||
}
|
||||
}
|
||||
catch (ex) {
|
||||
|
||||
Reference in New Issue
Block a user