瀏覽代碼

Fixes issue with file history working tree compare

Would occur when the filename had changed
main
Eric Amodio 7 年之前
父節點
當前提交
ff8b184bef
共有 3 個檔案被更改,包括 5 行新增2 行删除
  1. +3
    -0
      CHANGELOG.md
  2. +1
    -1
      package.json
  3. +1
    -1
      src/commands/showQuickFileHistory.ts

+ 3
- 0
CHANGELOG.md 查看文件

@ -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
- 1
package.json 查看文件

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

+ 1
- 1
src/commands/showQuickFileHistory.ts 查看文件

@ -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) {

Loading…
取消
儲存