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.

154 lines
7.8 KiB

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