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.

1017 lines
61 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Change Log
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
  4. ## [Unreleased]
  5. ### Added
  6. - Adds new `Changed Files` node to the `Repository Status` node of the `GitLens` custom view's `Repository View` -- closes [#139](https://github.com/eamodio/vscode-gitlens/issues/139)
  7. - Provides a file-based view of all the changed files in the working tree and/or files in commits that haven't yet been pushed upstream
  8. - Adds `gitlens.gitExplorer.enabled` setting to specify whether or not to show the `GitLens` custom view - closes [#144](https://github.com/eamodio/vscode-gitlens/issues/144)
  9. ## [5.1.0] - 2017-09-15
  10. ### Added
  11. - Adds full (multi-line) commit message to the `details` hover annotations -- closes [#116](https://github.com/eamodio/vscode-gitlens/issues/116)
  12. - Adds an external link icon to the `details` hover annotations to run the `Open Commit in Remote` command (`gitlens.openCommitInRemote`)
  13. ### Changed
  14. - Optimizes performance of the providing blame annotations, especially for large files (saw a ~78% improvement on some files)
  15. - Optimizes date handling (parsing and formatting) for better performance and reduced memory consumption
  16. ### Removed
  17. - Removes `gitlens.annotations.file.recentChanges.hover.wholeLine` setting as it didn't really make sense
  18. ### Fixed
  19. - Fixes an issue where stashes with only untracked files would not show in the `Stashes` node of the GitLens custom view
  20. - Fixes an issue where stashes with untracked files would not show its untracked files in the GitLens custom view
  21. ## [5.0.0] - 2017-09-12
  22. ### Added
  23. - Adds an all-new `GitLens` custom view to the Explorer activity
  24. - `Repository View` - provides a full repository explorer
  25. ![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-repository.png)
  26. - `Repository Status` node — provides the status of the repository
  27. - Provides the name of the current branch, its upstream tracking branch (if available), and its upstream status (if available)
  28. - Provides indicator dots on the repository icon which denote the following:
  29. - `None` - up-to-date with the upstream
  30. - `Green` - ahead of the upstream
  31. - `Red` - behind the upstream
  32. - `Yellow` - both ahead of and behind the upstream
  33. - Provides additional nodes, if the current branch is not synchronized with the upstream, to quickly see and explore the specific commits ahead and/or behind the upstream
  34. - Provides a context menu with `Open Repository in Remote`, and `Refresh` commands
  35. - `Branches` node — provides a list of the local branches
  36. - Indicates which branch is the current branch and optionally shows the remote tracking branch
  37. - Expand each branch to easily see its revision (commit) history
  38. - Expand each revision (commit) to quickly see the set of files changed, complete with status indicators for adds, changes, renames, and deletes
  39. - Provides a context menu on each changed file with `Open Changes`, `Open Changes with Working Tree`, `Open File`, `Open Revision`, `Open File in Remote`, `Open Revision in Remote`, `Apply Changes`, `Show File History`, and `Show Commit File Details` commands
  40. - Provides a context menu on each revision (commit) with `Open Commit in Remote`, `Open All Changes`, `Open All Changes with Working Tree`, `Open Files`, `Open Revisions`, `Copy Commit ID to Clipboard`, `Copy Commit Message to Clipboard`, `Show Commit Details`, and `Refresh` commands
  41. - Provides a context menu on each branch with `Open Branch in Remote`, and `Refresh` commands
  42. - Provides a context menu with `Open Branches in Remote`, and `Refresh` commands
  43. - `Remotes` node — provides a list of remotes
  44. - Indicates the direction of the remote (fetch, push, both), remote service (if applicable), and repository path
  45. - Expand each remote to see its list of branches
  46. - Expand each branch to easily see its revision (commit) history
  47. - Expand each revision (commit) to quickly see the set of files changed, complete with status indicators for adds, changes, renames, and deletes
  48. - Provides a context menu on each changed file with `Open Changes`, `Open Changes with Working Tree`, `Open File`, `Open Revision`, `Open File in Remote`, `Open Revision in Remote`, `Apply Changes`, and `Show Commit File Details` commands
  49. - Provides a context menu on each revision (commit) with `Open Commit in Remote`, `Open All Changes`, `Open All Changes with Working Tree`, `Open Files`, `Open Revisions`, `Copy Commit ID to Clipboard`, `Copy Commit Message to Clipboard`,`Show Commit Details`, and `Refresh` commands
  50. - Provides a context menu on each remote with `Open Branches in Remote`, `Open Repository in Remote`, and `Refresh` commands
  51. - Provides a context menu with a `Refresh` command
  52. - `Stashes` node — provides a list of stashed changes
  53. - Expand each stash to quickly see the set of files stashed, complete with status indicators for adds, changes, renames, and deletes
  54. - Provides a context menu with `Stash Changes`, and `Refresh` commands
  55. - Provides a context menu on each stash with `Apply Stashed Changes` (confirmation required), `Delete Stashed Changes` (confirmation required), `Open All Changes`, `Open All Changes with Working Tree`, `Open Files`, `Open Revisions`, `Copy Commit Message to Clipboard`, and `Refresh` commands
  56. - Provides a context menu on each stashed file with `Apply Changes`, `Open Changes`, `Open Changes with Working Tree`, `Open File`, `Open Revision`, `Open File in Remote`, and `Show File History` commands
  57. - `History View` - provides the revision history of the active file
  58. ![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-history.png)
  59. - Automatically updates to track the active editor
  60. - Provides a context menu with `Open File`, `Open File in Remote`, and `Refresh` commands
  61. - Provides a context menu on each revision (commit) with `Open Changes`, `Open Changes with Working Tree`, `Open File`, `Open Revision`, `Open File in Remote`, `Open Revision in Remote`, `Apply Changes`, and `Show Commit File Details` commands
  62. - Quickly switch between views using the `Switch to Repository View` or `Switch to History View` commands
  63. - Provides toolbar commands to `Search Commits`, `Switch to Repository View` or `Switch to History View`, and `Refresh`
  64. - Adds all-new interactivity to the hover annotations
  65. ![Hover Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-line-blame-annotations.png)
  66. - Adds the following command-links to the `details` hover annotation
  67. - Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
  68. - Adds the following command-links to the `changes` hover annotation
  69. - Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
  70. - Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
  71. - Adds support for remote services with custom domains -- closes [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
  72. - Adds support for the Bitbucket Server (previously called Stash) remote service -- closes [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
  73. - Adds `gitlens.blame.ignoreWhitespace` setting to specify whether or not to ignore whitespace when comparing revisions during blame operations -- closes [#138](https://github.com/eamodio/vscode-gitlens/issues/138)
  74. - Adds `Compare File Revisions` command (`gitlens.diffWith`) - compares the specified file revisions
  75. - Adds `Open Branches in Remote` command (`gitlens.openBranchesInRemote`) - opens the branches in the supported remote service
  76. - Adds `Stash Changes` command (`gitlens.stashSave`) to the source control group context menu -- can now stash a group of files
  77. - Adds `Stash Changes` command (`gitlens.stashSave`) to the source control resource context menu -- can now stash individual files (works with multi-select too!)
  78. - Adds `gitlens.gitExplorer.view` setting to specify the starting view (mode) of the `GitLens` custom view
  79. - Adds `gitlens.gitExplorer.showTrackingBranch` setting to specify whether or not to show the tracking branch when displaying local branches in the `GitLens` custom view
  80. - Adds `gitlens.gitExplorer.commitFormat` setting to specify the format of committed changes in the `GitLens` custom view
  81. - Adds `gitlens.gitExplorer.commitFileFormat` setting to specify the format of a committed file in the `GitLens` custom view
  82. - Adds `gitlens.gitExplorer.stashFormat` setting to specify the format of stashed changes in the `GitLens` custom view
  83. - Adds `gitlens.gitExplorer.stashFileFormat` setting to specify the format of a stashed file in the `GitLens` custom view
  84. - Adds `${filePath}` token to file formatting settings
  85. ### Changed
  86. - Changes `Show Stashed Changes` option icon in repository status quick pick menu to match the `GitLens` custom view
  87. - Changes `Stash Changes` option icon in stashed changes quick pick menu to a plus (+)
  88. - Renames `Compare File with Previous` command (`gitlens.diffWithPrevious`) to `Compare File with Previous Revision`
  89. - Renames `Compare File with Next Commit` command (`gitlens.diffWithNext`) to `Compare File with Next Revision`
  90. - Renames `Compare File with Working Tree` command (`gitlens.diffWithWorking`) to `Compare File with Working Revision`
  91. - Renames `Compare Line Commit with Previous` command (`gitlens.diffLineWithPrevious`) to `Compare Line Revision with Previous`
  92. - Renames `Compare Line Commit with Working Tree` command (`gitlens.diffLineWithWorking`) to `Compare Line Revision with Working`
  93. ### Removed
  94. - Removes `Git Stashes` custom view view - as it's functionality has been folded into the new `GitLens` custom view
  95. - Removes `gitlens.stashExplorer.stashFormat` setting
  96. - Removes `gitlens.stashExplorer.stashFileFormat` setting
  97. - Removes `Stash Unstaged Changes` option from stashed changes quick pick menu -- didn't work as intended
  98. - Removes the seeding of the commit search command from the clipboard
  99. ### Fixed
  100. - Fixes an issue where double hover annotations could be shown on blank lines
  101. - Fixes an issue where remote branches couldn't be opened properly in their remote service
  102. - Fixes [#130](https://github.com/eamodio/vscode-gitlens/issues/130) - First-run "Thank you for choosing GitLens! [...]" info message shown on every start up
  103. - Fixes an issue where sometimes diffs (via branch name) wouldn't open properly
  104. - Fixes an issue where remotes are queried more than once on startup
  105. ## [4.4.3] - 2017-08-30
  106. ## Fixed
  107. - Fixes [#135](https://github.com/eamodio/vscode-gitlens/issues/135) - Full-width characters break gutter annotations (really this time)
  108. ## [4.4.2] - 2017-08-29
  109. ## Fixed
  110. - Fixes [#135](https://github.com/eamodio/vscode-gitlens/issues/135) - Full-width characters break gutter annotations
  111. ## [4.4.1] - 2017-08-23
  112. ## Fixed
  113. - Fixes [#114](https://github.com/eamodio/vscode-gitlens/issues/114) - Stylus files makes code lens freak out
  114. ## [4.4.0] - 2017-08-18
  115. ## Added
  116. - Adds a progress indicator to the `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) icon -- pulses while annotations are computed
  117. - Adds an active state to the `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) icon -- turns orange while the annotations are visible
  118. - Adds automatic disabling of the current line blame annotations when starting a debug session and will restore them when the debug session ends -- can still be manually toggled via the `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`)
  119. ## Changed
  120. - Changes chat links from Gitter to [Slack](https://join.slack.com/t/vscode-gitlens/shared_invite/MjIxOTgxNDE3NzM0LTE1MDE2Nzk1MTgtMjkwMmZjMzcxNQ)
  121. - Changes the look of the line separators on the gutter blame annotations
  122. - Changes the `gitlens.advanced.toggleWhitespace.enabled` configuration setting to default to `false` -- thanks to the awesome work in vscode by Alexandru Dima ([@alexandrudima](https://github.com/alexandrudima)) this is no longer required!
  123. ## Removed
  124. - Removes unneeded `gitlens.stashExplorer.enabled` configuration setting since users can add or remove custom views natively now
  125. - Removes unneeded `Toggle Git Stashes Explorer` command (`gitlens.stashExplorer.toggle`) since users can add or remove custom views natively now
  126. - Removes the `gitlens.theme.annotations.file.hover.separateLines` configuration setting
  127. ## Fixed
  128. - Fixes jumpiness when opening a diff to a certain line
  129. ## [4.3.3] - 2017-07-28
  130. ## Added
  131. - Adds progress indicator for when computing annotations takes a while
  132. ## Changed
  133. - Optimizes performance of the providing blame annotations, especially for large files (saw a 3.5x improvement on some files)
  134. ## Fixed
  135. - Fixes [#107](https://github.com/eamodio/vscode-gitlens/issues/107) - Double-byte characters break blame layout (still requires proper font support)
  136. ## [4.3.2] - 2017-07-20
  137. ## Fixed
  138. - Fixes [#118](https://github.com/eamodio/vscode-gitlens/issues/118) - GitLens stopped working on latest insiders build -- thanks to [PR #121](https://github.com/eamodio/vscode-gitlens/pull/121) by Johannes Rieken ([@jrieken](https://github.com/jrieken))
  139. ## [4.3.1] - 2017-07-03
  140. ## Added
  141. - Adds `gitlens.stashExplorer.enabled` setting to specify whether or not to show the `Git Stashes` custom view
  142. - Adds `Toggle Git Stashes Explorer` command (`gitlens.stashExplorer.toggle`) - toggles the `Git Stashes` custom view on and off
  143. ## Changed
  144. - Hides the `Git Stashes` custom view by default
  145. ## Fixed
  146. - Fixes [#108](https://github.com/eamodio/vscode-gitlens/issues/108) - Option to remove stash explorer from the main explorer?
  147. ## [4.3.0] - 2017-07-03
  148. ## Added
  149. - Adds `Git Stashes` custom view to the Explorer activity
  150. - Shows all of the stashed changes in the repository
  151. - Provides toolbar buttons to `Stash Changes` and `Refresh`
  152. - Provides a context menu with `Apply Stashed Changes` and `Delete Stashed Changes` commands - both require a confirmation
  153. - Expand each stash to quickly see the set of files changed, complete with status indicators for adds, changes, renames, and deletes
  154. - Provides a context menu with `Open Changes`, `Open File`, `Open Stashed File`, `Open File in Remote`, and `Compare File with Working Tree` commands
  155. ## [4.2.0] - 2017-06-27
  156. ## Added
  157. - Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compares the active file with the selected revision of the same file
  158. - Adds `Open Changed Files` command (`gitlens.openChangedFiles`) to the source control group context menu
  159. - Adds `Close Unchanged Files` command (`gitlens.closeUnchangedFiles`) to the source control group context menu
  160. - Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the source control resource context menu
  161. - Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) to the source control resource context menu
  162. - Adds `Show File History` command (`gitlens.showQuickFileHistory`) to the source control resource context menu
  163. ## Changed
  164. - Renames `Compare File with...` command to `Compare File with Branch...`
  165. - Renames `Open Line Commit in Remote` command to `Open Commit in Remote`
  166. - Renames `Show Line Commit Details` command to `Show Commit File Details`
  167. - Updates the description of `gitlens.blame.line.enabled` to be clearer about its behavior
  168. - Updates the description of `gitlens.codeLens.enabled` to be clearer about its behavior
  169. ### Fixed
  170. - Fixes [#103](https://github.com/eamodio/vscode-gitlens/issues/103) - Toggle file blame annotations disables line blame annotations if line blame annotations are off by default
  171. - Fixes another infinite loop in the `Close Unchanged Files` command
  172. ## [4.1.4] - 2017-06-25
  173. ## Changed
  174. - Optimizes performance of the `Compare with Previous` commands - also avoids trying to focus a line if we don't have one
  175. ### Fixed
  176. - Fixes `changes` (diff) hover not showing the correct previous line (for real this time)
  177. - Attempts to fix [#99](https://github.com/eamodio/vscode-gitlens/issues/99) - undo/redo spawns too many git processes
  178. ## [4.1.3] - 2017-06-20
  179. ### Fixed
  180. - Fixes `changes` (diff) hover not showing the correct previous line when showing recent changes annotations of the whole-file
  181. ## [4.1.2] - 2017-06-15
  182. ### Fixed
  183. - Fixes [#96](https://github.com/eamodio/vscode-gitlens/issues/96) - External diff command can be unintentionally triggered
  184. ## [4.1.1] - 2017-06-13
  185. ### Added
  186. - Adds an `alt` command to the `Toggle File Blame Annotations` command button, which when you hold down `alt` and click it will execute the `Toggle Recent File Changes Annotations` command instead
  187. ### Fixed
  188. - Fixes missing `Toggle File Blame Annotations` command icon
  189. ## [4.1.0] - 2017-06-13
  190. ### Added
  191. - Adds all-new recent changes annotations of the whole-file - annotates and highlights all of lines changed in the most recent commit
  192. - Can customize the [layout](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#file-recent-changes-annotation-settings), as well as the [theme](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#theme-settings)
  193. - Adds `Toggle Recent File Changes Annotations` command (`gitlens.toggleFileRecentChanges`) - toggles the recent changes annotations on and off
  194. - Adds ability to press `Escape` to quickly toggle any whole-file annotations off
  195. - Improves performance
  196. - Optimized git output parsing to increase speed and dramatically reduce memory usage
  197. - Defers diff chunk parsing until it is actually required
  198. - Adds `gitlens.defaultDateFormat` setting to specify how all absolute dates will be formatted by default
  199. ### Fixed
  200. - Fixes excessive memory usage when parsing diffs
  201. - Fixes extra newline in multi-line commit messages
  202. - Fixes (again) [#33](https://github.com/eamodio/vscode-gitlens/issues/33) - Commit messages can causes markdown formatting in hovers
  203. ## [4.0.1] - 2017-06-09
  204. ### Fixed
  205. - Fixes [#87](https://github.com/eamodio/vscode-gitlens/issues/87) - Can't open files in remote when using git@ urls (ssh)
  206. ## [4.0.0] - 2017-06-09
  207. ### Added
  208. - Adds all-new, beautiful, highly customizable and themeable, file blame annotations
  209. - Can now fully customize the [layout and content](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#file-blame-annotation-settings), as well as the [theme](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#theme-settings)
  210. - Adds all-new configurability and themeability to the current line blame annotations
  211. - Can now fully customize the [layout and content](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#line-blame-annotation-settings), as well as the [theme](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#theme-settings)
  212. - Adds all-new configurability to the status bar blame information
  213. - Can now fully customize the [layout and content](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#status-bar-settings)
  214. - Adds all-new [configurability](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#advanced-settings) over which commands are added to which menus via the `gitlens.advanced.menus` setting
  215. - Adds better [configurability](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#code-lens-settings) over where Git code lens will be shown -- both by default and per language
  216. - Adds an all-new `changes` (diff) hover annotation to the current line - provides instant access to the line's previous version
  217. - Adds `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) - toggles the current line blame annotations on and off
  218. - Adds `Show Line Blame Annotations` command (`gitlens.showLineBlame`) - shows the current line blame annotations
  219. - Adds `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) - toggles the file blame annotations on and off
  220. - Adds `Show File Blame Annotations` command (`gitlens.showFileBlame`) - shows the file blame annotations
  221. - Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the `editor/title` context menu
  222. - Adds `Open Repo in Remote` command (`gitlens.openRepoInRemote`) to the `editor/title` context menu
  223. - Adds `gitlens.strings.*` settings to allow for the customization of certain strings displayed
  224. - Adds `gitlens.theme.*` settings to allow for the theming of certain elements
  225. - Adds `gitlens.advanced.telemetry.enabled` settings to explicitly opt-in or out of telemetry, but still ultimately honors the `telemetry.enableTelemetry` setting
  226. - Adds ability to suppress most warning messages - which can be re-enabled using the `Reset Suppressed Warnings` command (`gitlens.resetSuppressedWarnings`)
  227. ### Changed
  228. - (BREAKING) Almost all of the GitLens settings have either been renamed, removed, or otherwise changed - see the [README](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens#extension-settings)`
  229. - Changes the positioning of the Git code lens to try to be at the end of any other code lens on the same line
  230. - Changes the position of the `Open File in Remote` command (`gitlens.openFileInRemote`) in the context menus - now in the `navigation` group
  231. - Changes the `Toggle Git Code Lens` command (`gitlens.toggleCodeLens`) to always toggle the Git code lens on and off
  232. - Changes the default of `gitlens.advanced.toggleWhitespace.enabled` back to `true`, but automatically disables whitespace toggling if whitespace rendering is not on
  233. ### Removed
  234. - Removes the on-demand `trailing` file blame annotations -- didn't work out and just ended up with a ton of visual noise
  235. - Removes `Toggle Blame Annotations` command (`gitlens.toggleBlame`) - replaced by the `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`)
  236. - Removes `Show Blame Annotations` command (`gitlens.showBlame`) - replaced by the `Show File Blame Annotations` command (`gitlens.showFileBlame`)
  237. ### Fixed
  238. - Fixes [#81](https://github.com/eamodio/vscode-gitlens/issues/81) - Current line annotation feels too sticky
  239. - Fixes [#83](https://github.com/eamodio/vscode-gitlens/issues/83) - Calling "close unchanged files" results in no new files being openable
  240. - Fixes issues with the zone.js monkey patching done by application insights (telemetry) - disables all the monkey patching
  241. - Fixes issue with `Open Branch in Remote` & `Open Repository in Remote` not showing when there are no open editors
  242. ## [3.6.1] - 2017-06-07
  243. ### Fixed
  244. - Fixes issues with the zone.js monkey patching done by application insights (telemetry) - disables all the monkey patching
  245. ## [3.6.0] - 2017-06-02
  246. ### Added
  247. - Adds diff information (the line's previous version) into the active line hover
  248. - Adds a `gitlens.diffWithWorking` status bar command option - compares the current line commit with the working tree
  249. ### Changed
  250. - Changes the behavior of the `Compare File with Working Tree` command (`gitlens.diffWithWorking`) - always does what it says :)
  251. - Compares the current file with the working tree -- if the current file *is* the working file, it will show a `File matches the working tree` message
  252. - Changes the behavior of the `Compare File with Previous` command (`gitlens.diffWithPrevious`) - always does what it says :)
  253. - Compares the current file with the previous commit to that file
  254. - Changes the behavior of the `gitlens.diffWithPrevious` status bar command option - compares the current line commit with the previous
  255. - Renames `Compare File with Previous Commit` command to `Compare File with Previous`
  256. - Renames `Compare Line with Previous Commit` command to `Compare Line Commit with Previous`
  257. - Renames `Compare Line with Working Tree` command to `Compare Line Commit with Working Tree`
  258. - Renames `Compare with Previous Commit` in quick pick menus to `Compare File with Previous`
  259. - Renames `Compare with Working Tree` in quick pick menus to `Compare File with Working Tree`
  260. ### Fixed
  261. - Fixes [#79](https://github.com/eamodio/vscode-gitlens/issues/79) - Application insights package breaks GitLens + eslint
  262. ## [3.5.1] - 2017-05-25
  263. ### Changed
  264. - Changes certain code lens actions to be unavailable (unclickable) when the commit referenced is uncommitted - avoids unwanted error messages
  265. - Debounces more events when tracking the active line to further reduce lag
  266. ### Fixed
  267. - Fixes [#71](https://github.com/eamodio/vscode-gitlens/issues/71) - Blame information is invalid when a file has changed outside of vscode
  268. - Fixes issue with showing the incorrect blame for versioned files (i.e. files on the left of a diff, etc)
  269. ## [3.5.0] - 2017-05-24
  270. ### Added
  271. - Improves performance
  272. - Reduces the number of git calls on known "untrackables"
  273. - Caches many more git commands to reduce git command round-trips and parsing
  274. - Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file
  275. - Adds diff information (the line's previous version) into the active line hover when the current line is uncommitted
  276. - Adds `gitlens.statusBar.alignment` settings to control the alignment of the status bar -- thanks to [PR #72](https://github.com/eamodio/vscode-gitlens/pull/72) by Zack Schuster ([@zackschuster](https://github.com/zackschuster))!
  277. - Adds `Open Branch in Remote` command (`gitlens.openBranchInRemote`) - opens the current branch commits in the supported remote service
  278. - Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) - opens the repository in the supported remote service
  279. - Adds `Stash Changes` option to stashed changes quick pick menu -- no longer hidden behind the `"gitlens.insiders": true` setting
  280. - Adds `Stash Unstaged Changes` option to stashed changes quick pick menu -- no longer hidden behind the `"gitlens.insiders": true` setting
  281. - Adds `Apply Stashed Changes` command (`gitlens.stashApply`) to apply the selected stashed changes to the working tree -- no longer hidden behind the `"gitlens.insiders": true` setting
  282. - Adds `Stash Changes` command (`gitlens.stashSave`) to stash any working tree changes -- no longer hidden behind the `"gitlens.insiders": true` setting
  283. - Adds support to the `Search commits` command (`gitlens.showCommitSearch`) to work without any active editor
  284. - Adds commit search pre-population -- if there is an active editor it will use the commit sha of the current line commit, otherwise it will use the current clipboard
  285. ### Changed
  286. - Changes `Open File in Remote` and `Open Line Commit in Remote` commands to actually work for everyone (part of their implementation was still behind the `gitlens.insiders` setting)
  287. - Changes the active line hover to only show at the beginning and end of a line if `gitlens.blame.annotation.activeLine` is `both`
  288. - Changes `alt+f` shortcut to `alt+/` for the `Search commits` command (`gitlens.showCommitSearch`)
  289. - Changes `alt+right` on commit details quick pick menu to execute the `Compare File with Previous Commit` command (`gitlens.diffWithPrevious`) when a file is selected
  290. - Changes `alt+right` on repository status quick pick menu to execute the `Compare File with Previous Commit` command (`gitlens.diffWithPrevious`) when a file is selected
  291. - Refactors command argument passing to allow for future inclusion into the SCM menus
  292. ### Fixed
  293. - Fixes [#73](https://github.com/eamodio/vscode-gitlens/issues/73) - GitLens doesn't work with Chinese filenames
  294. - Fixes [#40](https://github.com/eamodio/vscode-gitlens/issues/40) - Encoding issues
  295. - Given the limitations of the vscode api, I'm unable to fix all the encoding issues, but many of them should now be squashed
  296. - `files.encoding` is now honored for the cases where the encoding cannot currently be gleaned
  297. - Fixes incorrect file selection from the commit details quick pick menu
  298. - Fixes incorrect command execution when using `"gitlens.statusBar.command": "gitlens.showQuickRepoHistory"`
  299. - Fixes a bunch of issues that were revealed by enabling Typescript `strict` mode
  300. ## [3.4.9] - 2017-05-03
  301. ### Added
  302. - Adds better support for deleted files when choosing `Open Changed Files` via in quick pick menus - now opens the file revision from the previous commit
  303. - Adds better support for deleted files when using `alt+right arrow` shortcut on the commit details quick pick menu - now opens the file revision from the previous commit
  304. ### Changed
  305. - Removes deleted files when choosing `Open Working Changed Files` via in quick pick menus
  306. ## [3.4.8] - 2017-05-02
  307. ### Changed
  308. - Changes display name in the marketplace to `Git Lens` because of the marketplace search ranking algorithm
  309. ## [3.4.6] - 2017-05-01
  310. ### Added
  311. - Adds better support for deleted files when choosing `Open File` via in quick pick menus - now opens the file revision from the previous commit
  312. - Adds better support for deleted files when choosing `Open File in Remote` via in quick pick menus - now opens the file revision from the previous commit
  313. - Improves performance by caching the git path to avoid lookups on every git command
  314. ### Changed
  315. - Renames `gitlens.advanced.codeLens.debug` setting to `gitlens.codeLens.debug`
  316. - Renames `gitlens.advanced.debug` setting to `gitlens.debug`
  317. - Renames `gitlens.output.level` setting to `gitlens.outputLevel`
  318. ### Fixed
  319. - Fixes incorrect file selection when showing commit details quick pick menu
  320. - Fixes timing error on startup
  321. ## [3.4.5] - 2017-04-13
  322. ### Added
  323. - Completely overhauls the [GitLens documentation](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens) and messaging -- make sure to check it out to see all the powerful features GitLen provides!
  324. - Adds `gitlens.blame.annotation.activeLineDarkColor` & `gitlens.blame.annotation.activeLineLightColor` settings to control the colors of the active line blame annotation
  325. ### Changed
  326. - Changes `Toggle Git Code Lens` command to work when `gitlens.codeLens.visibility` is set to `auto` (the default)
  327. - Renames `Compare with...` command to `Compare File with...`
  328. - Renames `Compare with Next Commit` command to `Compare File with Next Commit`
  329. - Renames `Compare with Previous Commit` command to `Compare File with Previous Commit`
  330. - Renames `Compare with Previous Commit` command to `Compare File with Previous Commit`
  331. - Renames `Compare with Working Tree` command to `Compare File with Working Tree`
  332. ### Fixed
  333. - Fixes issue with `Open Commit in Remote` not working
  334. - Fixes issue with many commands missing from the `Command Palette`
  335. ## [3.3.3] - 2017-04-10
  336. ### Fixed
  337. - Fixes issue with newlines in commit messages in the file/branch/stash history quick pick menus (truncates and adds an ellipse icon)
  338. ## [3.3.2] - 2017-04-10
  339. ### Removed
  340. - Removes `gitlens.blame.annotation.characters.*` settings since they were added to deal with unicode bugs in a previous version of vscode
  341. ### Fixed
  342. - Closes [#63](https://github.com/eamodio/vscode-gitlens/issues/63) - Switch commit message and author in commit pick list. Also reduces clutter in the commit quick pick menus
  343. ## [3.3.1] - 2017-04-09
  344. ### Changed
  345. - Changes commit search prefixes -- no prefix for message search, `@` for author, `:` for file pattern, `#` for commit id
  346. - Changes `sha` terminology to `commit id` in the UI
  347. ### Fixed
  348. - Fixes issues with author searching
  349. ## [3.3.0] - 2017-04-09
  350. ### Added
  351. - Adds `Search commits` command (`gitlens.showCommitSearch`) to allow commit searching by message, author, file pattern, or sha
  352. - Adds `alt+f` shortcut for the `Search commits` command (`gitlens.showCommitSearch`)
  353. - Adds `Show Commit Search` command to the branch history quick pick menu
  354. - Adds `Show Stashed Changes` command to the repository status quick pick menu
  355. - Adds a `Don't Show Again` option to the GitLen update notification
  356. ### Changed
  357. - Changes `Open x in Remote` commands to be no longer hidden behind the `gitlens.insiders` setting
  358. ### Fixed
  359. - Fixes [#59](https://github.com/eamodio/vscode-gitlens/issues/59) - Context menu shows gitlens commands even if folder/file is not under git
  360. ## [3.2.1]
  361. ### Fixed
  362. - Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - No more blank message if `diff.tool` is missing
  363. ## [3.2.0]
  364. ### Added
  365. - Adds support for single files opened in vscode -- you are no longer required to open a folder for GitLens to work
  366. ### Fixed
  367. - Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - Warn on directory compare when there is no diff tool configured
  368. - Fixes [#58](https://github.com/eamodio/vscode-gitlens/issues/58) - Work with git sub-modules
  369. - Fixes issue with `Open * in Remote` commands with nested repositories and non-git workspace root folder
  370. ## [3.1.0]
  371. ### Added
  372. - Adds `Show Stashed Changes` command (`gitlens.showQuickStashList`) to open a quick pick menu of all the stashed changes
  373. - Adds insiders `Stash Changes` option to stashed changes quick pick menu -- enabled via `"gitlens.insiders": true`
  374. - Adds insiders `Stash Unstaged Changes` option to stashed changes quick pick menu
  375. - Adds insiders `Apply Stashed Changes` command (`gitlens.stashApply`) to apply the selected stashed changes to the working tree
  376. - Adds insiders `Stash Changes` command (`gitlens.stashSave`) to stash any working tree changes
  377. ### Fixed
  378. - Fixes incorrect counts in upstream status
  379. ## [3.0.5]
  380. ### Added
  381. - Adds additional insiders support for GitLab, Bitbucket, and Visual Studio Team Services to the `Open x in Remote` commands and quick pick menus -- enabled via `"gitlens.insiders": true`
  382. - Adds insiders line support to `Open File in Remote` command (`gitlens.openFileInRemote`)
  383. - Adds original file name for renamed files to the repository status and commit details quick pick menu
  384. ### Fixed
  385. - Fixes [#56](https://github.com/eamodio/vscode-gitlens/issues/56) - Handle file names with spaces
  386. ## [3.0.4]
  387. ### Changed
  388. - Changes telemetry a bit to reduce noise
  389. ### Fixed
  390. - Fixes common telemetry error by switching to non-strict iso dates (since they are only available in later git versions)
  391. ## [3.0.3]
  392. ### Added
  393. - Adds a fallback to work with Git version prior to `2.11.0` -- terribly sorry for the inconvenience :(
  394. ### Fixed
  395. - Fixes [#55](https://github.com/eamodio/vscode-gitlens/issues/55) - reverts Git requirement back to `2.2.0`
  396. - Fixes issues with parsing merge commits
  397. ## [3.0.2]
  398. ### Changed
  399. - Changes required Git version to `2.11.0`
  400. ## [3.0.1]
  401. ### Added
  402. - Adds basic telemetry -- honors the vscode telemetry configuration setting
  403. ## [3.0.0]
  404. ### Added
  405. - Adds insiders support for `Open in GitHub` to the relevant quick pick menus -- enabled via `"gitlens.insiders": true`
  406. - Adds insiders `Open Line Commit in Remote` command (`gitlens.openCommitInRemote`) to open the current commit in the remote service (currently only GitHub)
  407. - Adds insiders `Open File in Remote` command (`gitlens.openFileInRemote`) to open the current file in the remote service (currently only GitHub)
  408. - Adds an update notification for feature releases
  409. - Adds `Show Branch History` command (`gitlens.showQuickBranchHistory`) to show the history of the selected branch
  410. - Adds `Show Last Opened Quick Pick` command (`gitlens.showLastQuickPick`) to re-open the previously opened quick pick menu - helps to get back to previous context
  411. - Adds `alt+-` shortcut for the `Show Last Opened Quick Pick` command (`gitlens.showLastQuickPick`)
  412. - Adds upstream status information (if available) to the repository status pick pick
  413. - Adds file status rollup information to the repository status pick pick
  414. - Adds file status rollup information to the commit details quick pick menu
  415. - Adds `Compare with...` (`gitlens.diffWithBranch`) command to compare working file to another branch (via branch quick pick menu)
  416. - Adds branch quick pick menu to `Directory Compare` (`gitlens.diffDirectory`) command
  417. - Adds support for `gitlens.showQuickFileHistory` command execution via code lens to limit results to the code lens block
  418. - Adds current branch to branch quick pick menu placeholder
  419. - Adds `Show Branch History` command to the branch history quick pick menu when showing only limited commits (e.g. starting at a specified commit)
  420. - Adds `Show File History` command to the file history quick pick menu when showing only limited commits (e.g. starting at a specified commit)
  421. - Adds `Don't Show Again` option to the unsupported git version notification
  422. ### Changed
  423. - Changes `Show Repository History` command to `Show Current Branch History`
  424. - Changes `Repository History` terminology to `Branch History`
  425. ### Fixed
  426. - Fixes issue with `gitlens.diffWithPrevious` command execution via code lens when the code lens was not at the document/file level
  427. - Fixes issue where full shas were displayed on the file/blame history explorers
  428. - Fixes [#30](https://github.com/eamodio/vscode-gitlens/issues/30) - Diff with Working Tree fails from repo/commit quick pick list if file was renamed (and the commit was before the rename)
  429. - Fixes various other quick pick menu command issues when a file was renamed
  430. - Fixes various issues when caching is disabled
  431. - Fixes issues with parsing commits history
  432. - Fixes various issues with merge commits
  433. ## [2.12.2]
  434. ### Fixed
  435. - Fixes [#50](https://github.com/eamodio/vscode-gitlens/issues/50) - excludes container-level code lens from `html` and `vue` language files
  436. ## [2.12.1]
  437. ### Added
  438. - Adds `gitlens.advanced.codeLens.debug` setting to control whether or not to show debug information in code lens
  439. ### Fixed
  440. - Fixes issue where `gitlens.showQuickRepoHistory` command fails to open when there is no active editor
  441. ## [2.12.0]
  442. ### Added
  443. - Adds progress indicator for the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  444. - Adds paging support to the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  445. - Adds `Show Previous Commits` command
  446. - Adds `Show Next Commits` command
  447. - Adds keyboard page navigation via `alt+,` (previous) & `alt+.` (next) on the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  448. - Adds keyboard commit navigation via `alt+,` (previous) & `alt+.` (next) on the `gitlens.showQuickCommitDetails` & `gitlens.showQuickCommitFileDetails` quick pick menus
  449. ### Changed
  450. - Changes behavior of `gitlens.showQuickFileHistory` & `gitlens.showFileHistory` to no longer show merge commits
  451. - Changes `gitlens.copyShaToClipboard` to copy the full sha, rather than short sha
  452. - Changes internal tracking to use full sha (rather than short sha)
  453. ## [2.11.2]
  454. ### Added
  455. - Adds `gitlens.diffWithNext` command to open a diff with the next commit
  456. - Adds `alt+.` shortcut for the `gitlens.diffWithNext` command
  457. ### Changed
  458. - Changes `shift+alt+p` shortcut to `alt+,` for the `gitlens.diffWithPrevious` command
  459. - Changes `alt+p` shortcut to `shift+alt+,` for the `gitlens.diffLineWithPrevious` command
  460. ### Removed
  461. - Removes `gitlens.toggleCodeLens` from Command Palette when not available
  462. - Removes `gitlens.toggleCodeLens` shortcut key when not available
  463. ### Fixed
  464. - Fixes (#45)[https://github.com/eamodio/vscode-gitlens/issues/45] - Keyboard Shortcut collision with Project Manager
  465. ## [2.11.1]
  466. ### Added
  467. - Adds blame and active line annotation support to git diff split view (right side)
  468. - Adds command (compare, copy sha/message, etc) support to git diff split view (right side)
  469. ### Fixed
  470. - Fixes intermittent issues when toggling whitespace for blame annotations
  471. ## [2.11.0]
  472. ### Added
  473. - Adds `gitlens.showQuickCommitFileDetails` command to show a quick pick menu of details for a file commit
  474. - Adds `gitlens.showQuickCommitFileDetails` command to code lens
  475. - Adds `gitlens.showQuickCommitFileDetails` command to the status bar
  476. - Adds `gitlens.closeUnchangedFiles` command to close any editors that don't have uncommitted changes
  477. - Adds `gitlens.openChangedFiles` command to open all files that have uncommitted changes
  478. - Adds `Directory Compare` (`gitlens.diffDirectory`) command to open the configured git difftool to compare directory versions
  479. - Adds `Directory Compare with Previous Commit` command on the `gitlens.showQuickCommitDetails` quick pick menu
  480. - Adds `Directory Compare with Working Tree` command on the `gitlens.showQuickCommitDetails` quick pick menu
  481. - Adds a `Changed Files` grouping on the `gitlens.showQuickCommitDetails` quick pick menu
  482. - Adds a `Close Unchanged Files` command on the `gitlens.showQuickRepoStatus` quick pick menu
  483. - Adds a contextual description to the `go back` command in quick pick menus
  484. ### Changed
  485. - Changes layout of the `gitlens.showQuickRepoStatus` quick pick menu for better clarity
  486. - Changes behavior of `gitlens.showQuickCommitDetails` to show commit a quick pick menu of details for a commit
  487. - Changes default of `gitlens.codeLens.recentChange.command` to be `gitlens.showQuickCommitFileDetails` (though there is no visible behavior change)
  488. - Renames `Open Files` to `Open Changed Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  489. - Renames `Open Working Files` to `Open Changed Working Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  490. - Renames `Show Changed Files` to `Show Commit Details` on the `gitlens.showQuickCommitFileDetails` quick pick menu
  491. - Renames `Open Files` to `Open Changed Files` on the `gitlens.showQuickRepoStatus` quick pick menu
  492. ### Fixed
  493. - Fixes [#44](https://github.com/eamodio/vscode-gitlens/issues/43) by adding a warning message about Git version requirements
  494. - Fixes intermittent errors when adding active line annotations
  495. - Fixes intermittent errors when opening multiple files via quick pick menus
  496. ## [2.10.1]
  497. ### Fixed
  498. - Fixes [#43](https://github.com/eamodio/vscode-gitlens/issues/43) - File-level code lens isn't using the blame of the whole file as it should
  499. - Fixes issue with single quotes (') in annotations
  500. - Fixes output channel logging (also adds more debug information to code lens -- when enabled)
  501. ## [2.10.0]
  502. ### Added
  503. - Adds blame and active line annotation support to git diff split view
  504. - Adds command (compare, copy sha/message, etc) support to git diff split view
  505. ### Fixed
  506. - Fixes startup failure if caching was disabled
  507. - Fixes missing `Compare Line with Previous Commit` context menu item
  508. - Fixes [#41](https://github.com/eamodio/vscode-gitlens/issues/41) - Toggle Blame annotations on compare files page
  509. - Fixes issue with undo (to a saved state) not causing annotations to reappear properly
  510. - Attempts to fix [#42](https://github.com/eamodio/vscode-gitlens/issues/42) - Cursor on Uncommitted message
  511. ## [2.9.0]
  512. ### Changed
  513. - To accommodate the realization that blame information is invalid when a file has unsaved changes, the following behavior changes have been made
  514. - Status bar blame information will hide
  515. - Code lens change to a `Cannot determine...` message and become unclickable
  516. - Many menu choices and commands will hide
  517. ### Fixed
  518. - Fixes [#38](https://github.com/eamodio/vscode-gitlens/issues/38) - Toggle Blame Annotation button shows even when it isn't valid
  519. - Fixes [#36](https://github.com/eamodio/vscode-gitlens/issues/36) - Blame information is invalid when a file has unsaved changes
  520. ## [2.8.2]
  521. ### Added
  522. - Adds `gitlens.blame.annotation.dateFormat` to specify how absolute commit dates will be shown in the blame annotations
  523. - Adds `gitlens.statusBar.date` to specify whether and how the commit date will be shown in the blame status bar
  524. - Adds `gitlens.statusBar.dateFormat` to specify how absolute commit dates will be shown in the blame status bar
  525. ### Fixed
  526. - Fixes [#39](https://github.com/eamodio/vscode-gitlens/issues/39) - Add date format options for status bar blame
  527. ## [2.8.1]
  528. ### Fixed
  529. - Fixes issue where `Compare with *` commands fail to open when there is no active editor
  530. ## [2.8.0]
  531. ### Added
  532. - Adds new `Open File` command on the `gitlens.showQuickCommitDetails` quick pick menu to open the commit version of the file
  533. - Adds new `Open File` command on the `gitlens.showQuickCommitDetails` quick pick menu to open the commit version of the files
  534. - Adds `alt+left` keyboard shortcut in quick pick menus to `go back`
  535. - Adds `alt+right` keyboard shortcut in quick pick menus to execute the currently selected item while keeping the quick pick menu open (in most cases)
  536. - `alt+right` keyboard shortcut on commit details file name, will open the commit version of the file
  537. ### Changed
  538. - Indents the file statuses on the `gitlens.showQuickCommitDetails` quick pick menu
  539. - Renames `Open File` to `Open Working File` on the `gitlens.showQuickCommitDetails` quick pick menu
  540. - Renames `Open File` and `Open Working Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  541. - Reorders some quick pick menus
  542. ### Fixed
  543. - Fixes [#34](https://github.com/eamodio/vscode-gitlens/issues/34) - Open file should open the selected version of the file
  544. - Fixes some issue where some editors opened by the quick pick would not be opened in preview tabs
  545. - Fixes issue where copy to clipboard commands would fail if there was no active editor
  546. - Fixes issue where active line annotations would show for opened versioned files
  547. - Fixes issue where code lens compare commands on opened versioned files would fail
  548. ## [2.7.1]
  549. ### Added
  550. - Adds proper support for multi-line commit messages
  551. ### Fixed
  552. - Fixes [#33](https://github.com/eamodio/vscode-gitlens/issues/33) - Commit message styled as title in popup, when message starts with hash symbol
  553. ## [2.7.0]
  554. ### Added
  555. - Adds file status icons (added, modified, deleted, etc) to the `gitlens.showQuickCommitDetails` quick pick menu
  556. - Adds `Copy Commit Sha to Clipboard` command to commit files quick pick menu
  557. - Adds `Copy Commit Message to Clipboard` command to commit files quick pick menu
  558. ### Changed
  559. - Changes `Show Commit History` to `Show File History` on the `gitlens.showQuickCommitDetails` quick pick menu
  560. - Changes `Show Previous Commit History` to `Show Previous File History` on the `gitlens.showQuickCommitDetails` quick pick menu
  561. ### Fixed
  562. - Fixes issue with repository status when there are no changes
  563. - Fixes issue with `.` showing in the path of quick pick menus
  564. - Fixes logging to clean up on extension deactivate
  565. ## [2.6.0]
  566. ### Added
  567. - Adds `gitlens.showQuickRepoStatus` command to show a quick pick menu of files changed including status icons (added, modified, deleted, etc)
  568. - Adds `alt+s` shortcut for the `gitlens.showQuickRepoStatus` command
  569. ## [2.5.6]
  570. ### Fixed
  571. - Fixes [#32](https://github.com/eamodio/vscode-gitlens/issues/32) - 00000000 Uncommitted changes distracting
  572. ## [2.5.5]
  573. ### Fixed
  574. - Fixes [#25](https://github.com/eamodio/vscode-gitlens/issues/25) - Blame information isn't updated after git operations (commit, reset, etc)
  575. ## [2.5.4]
  576. ### Fixed
  577. - Fixes extra spacing in annotations
  578. ## [2.5.3]
  579. ### Fixed
  580. - Fixes [#27](https://github.com/eamodio/vscode-gitlens/issues/27) - Annotations are broken in vscode insider build
  581. ## [2.5.2]
  582. ### Added
  583. - Adds `Open File` command to `gitlens.showQuickCommitDetails` quick pick menu
  584. - Adds `Open Files` command to `gitlens.showQuickCommitDetails` quick pick menu
  585. - Improves performance of git-log operations in `gitlens.diffWithPrevious` and `gitlens.diffWithWorking` commands
  586. ### Changed
  587. - Changes `Not Committed Yet` author for uncommitted changes to `Uncommitted`
  588. ### Fixed
  589. - Fixes showing `gitlens.showQuickCommitDetails` quick pick menu for uncommitted changes -- now shows the previous commit details
  590. ## [2.5.1]
  591. ### Added
  592. - Adds `gitlens.copyMessageToClipboard` command to copy commit message to the clipboard
  593. - Adds `gitlens.copyMessageToClipboard` to the editor content menu
  594. - Adds `Copy Commit Message to Clipboard` command to `gitlens.showQuickCommitDetails` quick pick menu
  595. ### Changed
  596. - Changes behavior of `gitlens.copyShaToClipboard` to copy the sha of the most recent commit to the repository if there is no active editor
  597. - Changes behavior of `gitlens.showQuickFileHistory` to execute `gitlens.showQuickRepoHistory` if there is no active editor
  598. ### Fixed
  599. - Fixes issue where shortcut keys weren't disabled if GitLens was disabled
  600. ## [2.5.0]
  601. ### Added
  602. - Overhauls the `gitlens.showQuickRepoHistory`, `gitlens.showQuickFileHistory`, and `gitlens.showQuickCommitDetails` quick pick menus
  603. - Adds `Show Repository History` command to `gitlens.showQuickFileHistory` quick pick menu
  604. - Adds `Show Previous Commits History` command to `gitlens.showQuickCommitDetails` quick pick menu
  605. - Adds `Show Commits History` command to `gitlens.showQuickCommitDetails` quick pick menu
  606. - Adds `Copy Commit Sha to Clipboard` command to `gitlens.showQuickCommitDetails` quick pick menu
  607. - Adds `Show Changed Files` command to `gitlens.showQuickCommitDetails` quick pick menu
  608. - Adds more robust `go back` navigation in quick pick menus
  609. - Adds commit message to placeholder text of many quick pick menus
  610. - Adds icons for some commands
  611. - Adds `gitlens.diffWithPrevious` command to the editor content menu
  612. - Adds `gitlens.diffWithWorking` command to the editor content menu
  613. - Adds `gitlens.showQuickRepoHistory` and `gitlens.showQuickCommitDetails` commands to code lens
  614. - Adds `gitlens.showQuickRepoHistory` and `gitlens.showQuickCommitDetails` commands to the status bar
  615. ### Changed
  616. - Changes the default command of `gitlens.codeLens.recentChange.command` to `gitlens.showQuickCommitDetails`
  617. - Changes the default command of `gitlens.statusBar.command` to `gitlens.showQuickCommitDetails`
  618. - Changes behavior of `gitlens.showQuickCommitDetails` to show commit commands rather than file set (use `Show Changed Files` command to get to the file set)
  619. - Changes `gitlens.diffWithPrevious` command to behave as `gitlens.diffWithWorking` if the file has uncommitted changes
  620. - Renames `gitlens.diffWithPrevious` command from `Diff Commit with Previous` to `Compare with Previous Commit`
  621. - Renames `gitlens.diffLineWithPrevious` command from `Diff Commit (line) with Previous` to `Compare Line with Previous Commit`
  622. - Renames `gitlens.diffWithWorking` command from `Diff Commit with Working Tree` to `Compare with Working Tree`
  623. - Renames `gitlens.diffLineWithWorking` command from `Diff Commit (line) with Working Tree` to `Compare Line with Working Tree`
  624. ### Fixed
  625. - Fixes issues with certain git commands not working on Windows
  626. - Fixes [#31](https://github.com/eamodio/vscode-gitlens/issues/31) - Disable gitlens if the project does not have `.git` folder
  627. - Fixes issue where quick pick menus could fail if there was no active editor
  628. - Fixes code lens not updating in response to configuration changes
  629. ## [2.1.1]
  630. ### Fixed
  631. - Fixes overzealous active line annotation updating on document changes
  632. ## [2.1.0]
  633. ### Added
  634. - Adds a new GitLens logo and changes all images to svg
  635. - Adds `alt+p` shortcut for the `gitlens.diffLineWithPrevious` command
  636. - Adds `shift+alt+p` shortcut for the `gitlens.diffWithPrevious` command
  637. - Adds `alt+w` shortcut for the `gitlens.diffLineWithWorking` command
  638. - Adds `shift+alt+w` shortcut for the `gitlens.diffWithWorking` command
  639. - Adds `gitlens.copyShaToClipboard` command to copy commit sha to the clipboard ([#28](https://github.com/eamodio/vscode-gitlens/issues/28))
  640. - Adds `gitlens.showQuickCommitDetails` command to show a quick pick menu of details for a commit
  641. - Adds `go back` choice to `gitlens.showQuickCommitDetails`, `gitlens.showQuickFileHistory`, and `gitlens.showQuickRepoHistory` quick pick menus
  642. - Adds `gitlens.blame.annotation.highlight` to specify whether and how to highlight blame annotations ([#24](https://github.com/eamodio/vscode-gitlens/issues/24))
  643. - Greatly improves performance of line navigation when either active line annotations or status bar blame is enabled
  644. ### Fixed
  645. - Fixes [#29](https://github.com/eamodio/vscode-gitlens/issues/29) - Commit info tooltip duplicated for current line when blame is enabled
  646. - Fixes issue where sometimes the commit history shown wasn't complete
  647. - Fixes issues with `gitlens.diffLineWithPrevious` and `gitlens.diffWithPrevious` not following renames properly
  648. - Fixes issues with `gitlens.diffLineWithPrevious` and `gitlens.diffWithPrevious` not always grabbing the correct commit
  649. ## [2.0.2]
  650. ### Added
  651. - Adds auto-enable of whitespace toggling when using font-ligatures because of [vscode issue](https://github.com/Microsoft/vscode/issues/11485)
  652. - Adds `gitlens.blame.annotation.characters.*` settings to provide some control over how annotations are displayed
  653. ### Fixed
  654. - Fixes [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  655. ## [2.0.1]
  656. ### Fixed
  657. - Fixes [#26](https://github.com/eamodio/vscode-gitlens/issues/26) - Active line annotation doesn't disappear properly after delete
  658. ## [2.0.0]
  659. ### Added
  660. - Adds `gitlens.blame.annotation.activeLine` to specify whether and how to show blame annotations on the active line
  661. - Adds full commit message (rather than just summary) to active line hover if `gitlens.blame.annotation.activeLine` is not `off`
  662. - Adds new `trailing` blame annotation style -- adds annotations after the code lines rather than before
  663. - Adds `gitlens.blame.annotation.message` to show the commit message in `expanded` and `trailing` blame annotation styles
  664. - Adds support for relative dates in blame annotations. Use `gitlens.blame.annotation.date`
  665. - Re-adds context menu for `gitlens.diffLineWithPrevious` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  666. - Re-adds context menu for `gitlens.diffLineWithWorking` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  667. ### Changed
  668. - Changes the design of hover annotations -- much cleaner now
  669. - 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`
  670. ### Fixed
  671. - Fixes issue where the status bar blame would get stuck switching between editors
  672. - Fixes issue where code lens aren't updated properly after a file is saved
  673. ## [1.4.3]
  674. ### Added
  675. - Adds some logging to hopefully trap [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  676. ### Fixed
  677. - Fixes issue with the latest insiders build (1.9.0-insider f67f87c5498d9361c0b29781c341fd032815314b) where there is a collision of document schemes
  678. ## [1.4.2]
  679. ### Fixed
  680. - Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
  681. ## [1.4.1]
  682. ### Added
  683. - 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
  684. ## [1.4.0]
  685. ### Added
  686. - Adds `alt+h` shortcut for the `gitlens.showQuickFileHistory` command
  687. - Adds `shift+alt+h` shortcut for the `gitlens.showQuickRepoHistory` command
  688. - Adds `gitlens.advanced.maxQuickHistory` to limit the number of quick history entries to show (for better performance); Defaults to 200
  689. - Adds `gitlens.diffLineWithPrevious` as `alt` context menu item for `gitlens.diffWithPrevious`
  690. - Adds `gitlens.diffLineWithWorking` as `alt` context menu item for `gitlens.diffWithWorking`
  691. - Adds `gitlens.showFileHistory` as `alt` context menu item for `gitlens.showQuickFileHistory`
  692. ### Removed
  693. - Removes context menu for `gitlens.diffLineWithPrevious` -- since it is now the `alt` of `gitlens.diffWithPrevious`
  694. - Removes context menu for `gitlens.diffLineWithWorking` -- since it is now the `alt` of `gitlens.diffWithWorking`
  695. - 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
  696. ## [1.3.1]
  697. ### Added
  698. - Adds `Diff Commit with Working Tree` to the explorer context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  699. - Adds `Diff Commit with Working Tree` & `Diff Commit with Previous` to the editor title context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  700. ### Changed
  701. - Renames `Diff` commands for better clarity
  702. - Removes `Git` from the commands as it feels unnecessary
  703. - Reorders the context menu commands
  704. ## [1.3.0]
  705. ### Added
  706. - Adds support for blame and history (log) on files opened via compare commands -- allows for deep navigation through git history
  707. ## [1.2.0]
  708. ### Added
  709. - Adds compare (working vs previous) options to repository history
  710. - Adds compare (working vs previous) options to file history
  711. ### Fixed
  712. - Fixes issue with repository history compare with commits with multiple files
  713. ## [1.1.1]
  714. ### Added
  715. - Adds logging for tracking [#18](https://github.com/eamodio/vscode-gitlens/issues/18) - GitLens only displayed for some files
  716. ### Changed
  717. - Changes `gitlens.showQuickRepoHistory` command to run without an open editor (falls back to the folder repository)
  718. ## [1.1.0]
  719. ### Added
  720. - Adds new `gitlens.showQuickFileHistory` command to show the file history in a quick-pick list (palette)
  721. - Adds new `gitlens.showQuickRepoHistory` command to show the repository history in a quick-pick list (palette)
  722. - Adds `gitlens.showQuickFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  723. ### Changed
  724. - Changes the `gitlens.statusBar.command` settings default to `gitlens.showQuickFileHistory` instead of `gitlens.toggleBlame`
  725. ### Removed
  726. - Removes `git.viewFileHistory` option from the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  727. ## [1.0.2]
  728. ### Fixed
  729. - Fixes [#16](https://github.com/eamodio/vscode-gitlens/issues/16) - incorrect 'Unable to find Git' message
  730. ## [1.0.0]
  731. ### Added
  732. - Adds support for git history (log)!
  733. - Adds support for blame annotations and git commands on file revisions
  734. - Adds ability to show multiple blame annotation at the same time (one per vscode editor)
  735. - Adds new `gitlens.showFileHistory` command to open the history explorer
  736. - Adds new `gitlens.showFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  737. - Adds per-language code lens location customization using the `gitlens.codeLens.languageLocations` setting
  738. - Adds new `gitlens.diffLineWithPrevious` command for line sensitive diffs
  739. - Adds new `gitlens.diffLineWithWorking` command for line sensitive diffs
  740. - Adds `gitlens.diffWithPrevious` command to the explorer context menu
  741. - Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
  742. - Improves performance of the code lens support
  743. - Improves performance (significantly) when only showing code lens at the document level
  744. - Improves performance of status bar blame support
  745. ### Changed
  746. - Switches on-demand code lens to be a global toggle (rather than per file)
  747. - Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
  748. - Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
  749. - Changes `gitlens.diffWithWorking` command to always be file sensitive diffs
  750. - Removes all debug logging, unless the `gitlens.advanced.debug` settings it on
  751. ### Fixed
  752. - Fixes many (most?) issues with whitespace toggling (required because of https://github.com/Microsoft/vscode/issues/11485)
  753. - Fixes issue where blame annotations would not be cleared properly when switching between open files
  754. ## [0.5.5]
  755. ### Fixed
  756. - Fixes another off-by-one issue when diffing with caching
  757. ## [0.5.4]
  758. ### Fixed
  759. - Fixes off-by-one issues with blame annotations without caching and when diffing with a previous version
  760. ## [0.5.3]
  761. ### Added
  762. - Adds better uncommitted hover message in blame annotations
  763. - Adds more protection for dealing with uncommitted lines
  764. ## [0.5.2]
  765. ### Fixed
  766. - Fixes loading issue on Linux
  767. ## [0.5.1]
  768. ### Added
  769. - Adds blame information in the status bar
  770. - Add new status bar settings -- see **Extension Settings** for details
  771. - Adds new `gitlens.diffWithPrevious` option to the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings
  772. ### Changed
  773. - Renames the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings options (to align with command names)
  774. ### Removed
  775. - Removes `gitlens.blame.annotation.useCodeActions` setting and behavior
  776. ### Fixed
  777. - Fixes Diff with Previous when the selection is uncommitted
  778. ## [0.3.3]
  779. ### Fixed
  780. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing spawn-rx dependency (argh!)
  781. ## [0.3.2]
  782. ### Fixed
  783. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing lodash dependency
  784. ## [0.3.1]
  785. ### Added
  786. - Adds new code lens visibility & location settings -- see **Extension Settings** for details
  787. - Adds new command to toggle code lens on and off when `gitlens.codeLens.visibility` is set to `ondemand`
  788. ## [0.2.0]
  789. ### Changed
  790. - Replaces blame regex parsing with a more robust parser
  791. ### Fixed
  792. - Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository
  793. - Fixes failures with Diff with Previous command
  794. - Fixes issues with blame explorer code lens when dealing with previous commits
  795. - Fixes display issues with compact blame annotations (now skips blank lines)
  796. ## [0.1.3]
  797. ### Added
  798. - Improved blame annotations, now with sha and author by default
  799. - Add new blame annotation styles -- compact and expanded (default)
  800. - Adds many new configuration settings; see **Extension Settings** for details
  801. ## [0.0.7]
  802. ### Added
  803. - Adds .gitignore checks to reduce the number of blame calls
  804. ### Fixed
  805. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash (Really!)
  806. - Fixes [#5](https://github.com/eamodio/vscode-gitlens/issues/5) - Finding first non-white-space fails sometimes
  807. ## [0.0.6]
  808. ### Added
  809. - Adds attempt to scroll to the correct position when opening a diff
  810. ### Fixed
  811. - Fixes [#2](https://github.com/eamodio/vscode-gitlens/issues/2) - [request] Provide some debug info when things fail
  812. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash
  813. ## [0.0.5]
  814. ### Changed
  815. - Removes code lens from fields and single-line properties to reduce visual noise
  816. - Automatically turns off blame only when required now
  817. ### Fixed
  818. - Fixes issues where filename changes in history would cause diffs to fails
  819. - Fixes some issues with uncommitted blames
  820. ## [0.0.4]
  821. ### Added
  822. - Candidate for preview release on the vscode marketplace.
  823. ## [0.0.1]
  824. ### Added
  825. - Initial release but still heavily a work in progress.