You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

181 lines
10 KiB

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