您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

176 行
9.6 KiB

7 年前
  1. ## Release Notes
  2. ### 2.0.1
  3. - Fixes [#26](https://github.com/eamodio/vscode-gitlens/issues/26) - Active line annotation doesn't disappear properly after delete
  4. ### 2.0.0
  5. - Adds `gitlens.blame.annotation.activeLine` to specify whether and how to show blame annotations on the active line
  6. - Adds full commit message (rather than just summary) to active line hover if `gitlens.blame.annotation.activeLine` is not `off`
  7. - Adds new `trailing` blame annotation style -- adds annotations after the code lines rather than before
  8. - Adds `gitlens.blame.annotation.message` to show the commit message in `expanded` and `trailing` blame annotaion styles
  9. - Adds support for relative dates in blame annotations. Use `gitlens.blame.annotation.date`
  10. - Changes the design of hover annotations -- much cleaner now
  11. - Disables automatic whitespace toggling by default as it is seemingly no longer needed as [vscode issue](https://github.com/Microsoft/vscode/issues/11485) seems fixed. It can be re-enabled with `gitlens.advanced.toggleWhitespace.enabled`
  12. - Fixes issue where the statusBar blame would get stuck switching between editors
  13. - Fixes issue where CodeLens aren't updated properly after a file is saved
  14. - Re-adds context menu for `gitlens.diffLineWithPrevious` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  15. - Re-adds context menu for `gitlens.diffLineWithWorking` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  16. ### 1.4.3
  17. - Adds some logging to hopefully trap [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  18. - Fixes issue with the latest insiders build (1.9.0-insider f67f87c5498d9361c0b29781c341fd032815314b) where there is a collision of document schemes
  19. ### 1.4.2
  20. - Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
  21. ### 1.4.1
  22. - 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
  23. ### 1.4.0
  24. - Adds `alt+h` shortcut for the `gitlens.showQuickFileHistory` command
  25. - Adds `shift+alt+h` shortcut for the `gitlens.showQuickRepoHistory` command
  26. - Adds `gitlens.advanced.maxQuickHistory` to limit the number of quick history entries to show (for better performance); Defaults to 200
  27. - Adds `gitlens.diffLineWithPrevious` as `alt` context menu item for `gitlens.diffWithPrevious`
  28. - Adds `gitlens.diffLineWithWorking` as `alt` context menu item for `gitlens.diffWithWorking`
  29. - Adds `gitlens.showFileHistory` as `alt` context menu item for `gitlens.showQuickFileHistory`
  30. - Removes context menu for `gitlens.diffLineWithPrevious` -- since it is now the `alt` of `gitlens.diffWithPrevious`
  31. - Removes context menu for `gitlens.diffLineWithWorking` -- since it is now the `alt` of `gitlens.diffWithWorking`
  32. - Replaces `gitlens.menus.fileDiff.enabled` and `gitlens.menus.lineDiff.enabled` with `gitlens.menus.diff.enabled` -- since the switch between file and line diff is now controlled by the `alt` key
  33. ### 1.3.1
  34. - Renames `Diff` commands for better clarity
  35. - Removes `Git` from the commands as it feels unnecessary
  36. - Reorders the context menu commands
  37. - Adds `Diff Commit with Working Tree` to the explorer context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  38. - Adds `Diff Commit with Working Tree` & `Diff Commit with Previous` to the editor title context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  39. ### 1.3.0
  40. - Adds support for blame and history (log) on files opened via compare commands -- allows for deep navigation through git history
  41. ### 1.2.0
  42. - Adds compare (working vs previous) options to repository history
  43. - Adds compare (working vs previous) options to file history
  44. - Fixes issue with repository history compare with commits with multiple files
  45. ### 1.1.1
  46. - Allows `gitlens.showQuickRepoHistory` command to run without an open editor (falls back to the folder repository)
  47. - Adds logging for tracking [#18](https://github.com/eamodio/vscode-gitlens/issues/18) - GitLens only displayed for some files
  48. ### 1.1.0
  49. - Adds new `gitlens.showQuickFileHistory` command to show the file history in a quick-pick list (palette)
  50. - Adds new `gitlens.showQuickRepoHistory` command to show the repository history in a quick-pick list (palette)
  51. - Adds `gitlens.showQuickFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  52. - Removes `git.viewFileHistory` option from the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  53. - Changes the `gitlens.statusBar.command` settings default to `gitlens.showQuickFileHistory` instead of `gitlens.toggleBlame`
  54. ### 1.0.2
  55. - Fixes [#16](https://github.com/eamodio/vscode-gitlens/issues/16) - incorrect 'Unable to find Git' message
  56. ### 1.0.0
  57. - Adds support for git history (log)!
  58. - Adds support for blame annotations and git commands on file revisions
  59. - Adds ability to show multiple blame annotation at the same time (one per vscode editor)
  60. - Adds new `gitlens.showFileHistory` command to open the history explorer
  61. - Adds new `gitlens.showFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  62. - Adds per-language CodeLens location customization using the `gitlens.codeLens.languageLocations` setting
  63. - Adds new `gitlens.diffLineWithPrevious` command for line sensitive diffs
  64. - Adds new `gitlens.diffLineWithWorking` command for line sensitive diffs
  65. - Adds `gitlens.diffWithPrevious` command to the explorer context menu
  66. - Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
  67. - Switches on-demand CodeLens to be a global toggle (rather than per file)
  68. - Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
  69. - Improves performance of the CodeLens support
  70. - Improves performance (significantly) when only showing CodeLens at the document level
  71. - Improves performance of status bar blame support
  72. - Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
  73. - Changes `gitlens.diffWithWorking` command to always be file sensitive diffs
  74. - Removes all debug logging, unless the `gitlens.advanced.debug` settings it on
  75. - Fixes many (most?) issues with whitespace toggling (required because of https://github.com/Microsoft/vscode/issues/11485)
  76. - Fixes issue where blame annotations would not be cleared properly when switching between open files
  77. ### 0.5.5
  78. - Fixes another off-by-one issue when diffing with caching
  79. ### 0.5.4
  80. - Fixes off-by-one issues with blame annotations without caching and when diffing with a previous version
  81. ### 0.5.3
  82. - Adds better uncommitted hover message in blame annotations
  83. - Adds more protection for dealing with uncommitted lines
  84. ### 0.5.2
  85. - Fixes loading issue on Linux
  86. ### 0.5.1
  87. - Adds blame information in the StatusBar
  88. - Add new StatusBar settings -- see **Extension Settings** above for details
  89. - Renames the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings options (to align with command names)
  90. - Adds new `gitlens.diffWithPrevious` option to the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings
  91. - Fixes Diff with Previous when the selection is uncommitted
  92. - Removes `gitlens.blame.annotation.useCodeActions` setting and behavior
  93. ### 0.3.3
  94. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing spawn-rx dependency (argh!)
  95. ### 0.3.2
  96. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing lodash dependency
  97. ### 0.3.1
  98. - Adds new CodeLens visibility & location settings -- see **Extension Settings** above for details
  99. - Adds new command to toggle CodeLens on and off when `gitlens.codeLens.visibility` is set to `ondemand`
  100. ### 0.2.0
  101. - Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository
  102. - Replaces blame regex parsing with a more robust parser
  103. - Fixes failures with Diff with Previous command
  104. - Fixes issues with blame explorer CodeLens when dealing with previous commits
  105. - Fixes display issues with compact blame annotations (now skips blank lines)
  106. ### 0.1.3
  107. - Improved blame annotations, now with sha and author by default
  108. - Add new blame annotation styles -- compact and expanded (default)
  109. - Adds many new configuration settings; see **Extension Settings** above for details
  110. ### 0.0.7
  111. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash (Really!)
  112. - Fixes [#5](https://github.com/eamodio/vscode-gitlens/issues/5) - Finding first non-white-space fails sometimes
  113. - Adds .gitignore checks to reduce the number of blame calls
  114. ### 0.0.6
  115. - Fixes [#2](https://github.com/eamodio/vscode-gitlens/issues/2) - [request] Provide some debug info when things fail
  116. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash
  117. - Attempts to scroll to the correct position when opening a diff
  118. ### 0.0.5
  119. - Fixes issues where filename changes in history would cause diffs to fails
  120. - Fixes some issues with uncommitted blames
  121. - Removes CodeLens from fields and single-line properties to reduce visual noise
  122. - Automatically turns off blame only when required now
  123. ### 0.0.4
  124. Candidate for preview release on the vscode marketplace.
  125. ### 0.0.1
  126. Initial release but still heavily a work in progress.