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.

692 lines
37 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
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. ## [3.5.0] - 2017-05-24
  5. ### Added
  6. - Improves performance
  7. - Reduces the number of git calls on known "untrackables"
  8. - Caches many more git commands to reduce git command roundtrips and parsing
  9. - Increases the debounce (delay) on cursor movement to reduce lag when navigating around a file
  10. - Adds diff information (previous line's code) into the active line hover when the current line is uncommitted
  11. - 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))!
  12. - Adds `Open Branch in Remote` command (`gitlens.openBranchInRemote`) - opens the current branch commits in the supported remote service
  13. - Adds `Open Repository in Remote` command (`gitlens.openRepoInRemote`) - opens the repository in the supported remote service
  14. - Adds `Stash Changes` option to stashed changes quick pick menu -- no longer hidden behind the `"gitlens.insiders": true` setting
  15. - Adds `Stash Unstaged Changes` option to stashed changes quick pick menu -- no longer hidden behind the `"gitlens.insiders": true` setting
  16. - 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
  17. - Adds `Stash Changes` command (`gitlens.stashSave`) to stash any working tree changes -- no longer hidden behind the `"gitlens.insiders": true` setting
  18. - Adds support to the `Search commits` command (`gitlens.showCommitSearch`) to work without any active editor
  19. - 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
  20. ### Changed
  21. - 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)
  22. - Changes the active line hover to only show at the beginning and end of a line if `gitlens.blame.annotation.activeLine` is `both`
  23. - Changes `alt+f` shortcut to `alt+/` for the `Search commits` command (`gitlens.showCommitSearch`)
  24. - 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
  25. - 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
  26. - Refactors command argument passing to allow for future inclusion into the SCM menus
  27. ### Fixed
  28. - Fixes [#73](https://github.com/eamodio/vscode-gitlens/issues/73) - GitLens doesn't work with Chinese filenames
  29. - Fixes [#40](https://github.com/eamodio/vscode-gitlens/issues/40) - Encoding issues
  30. - Given the limitations of the vscode api, I'm unable to fix all the encoding issues, but many of them should now be squashed
  31. - `files.encoding` is now honored for the cases where the encoding cannot currently be gleaned
  32. - Fixes incorrect file selection from the commit details quick pick menu
  33. - Fixes incorrect command execution when using `"gitlens.statusBar.command": "gitlens.showQuickRepoHistory"`
  34. - Fixes a bunch of issues that were revealed by enabling Typescript `strict` mode
  35. ## [3.4.9] - 2017-05-03
  36. ### Added
  37. - 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
  38. - 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
  39. ### Changed
  40. - Removes deleted files when choosing `Open Working Changed Files` via in quick pick menus
  41. ## [3.4.8] - 2017-05-02
  42. ### Changed
  43. - Changes display name in the marketplace to `Git Lens` because of the marketplace search ranking algorithm
  44. ## [3.4.6] - 2017-05-01
  45. ### Added
  46. - Adds better support for deleted files when choosing `Open File` via in quick pick menus - now opens the file revision from the previous commit
  47. - 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
  48. - Improves performance by caching the git path to avoid lookups on every git command
  49. ### Changed
  50. - Renames `gitlens.advanced.codeLens.debug` setting to `gitlens.codeLens.debug`
  51. - Renames `gitlens.advanced.debug` setting to `gitlens.debug`
  52. - Renames `gitlens.output.level` setting to `gitlens.outputLevel`
  53. ### Fixed
  54. - Fixes incorrect file selection when showing commit details quick pick menu
  55. - Fixes timing error on startup
  56. ## [3.4.5] - 2017-04-13
  57. ### Added
  58. - Completely overhauls the [GitLens documentation](https://github.com/eamodio/vscode-gitlens/blob/master/README.md) and messaging -- make sure to check it out to see all the powerful features GitLen provides!
  59. - Adds `gitlens.blame.annotation.activeLineDarkColor` & `gitlens.blame.annotation.activeLineLightColor` settings to control the colors of the active line blame annotation
  60. ### Changed
  61. - Changes `Toggle Git Code Lens` command to work when `gitlens.codeLens.visibility` is set to `auto` (the default)
  62. - Renames `Compare with...` command to `Compare File with...`
  63. - Renames `Compare with Next Commit` command to `Compare File with Next Commit`
  64. - Renames `Compare with Previous Commit` command to `Compare File with Previous Commit`
  65. - Renames `Compare with Previous Commit` command to `Compare File with Previous Commit`
  66. - Renames `Compare with Working Tree` command to `Compare File with Working Tree`
  67. ### Fixed
  68. - Fixes issue with `Open Commit in Remote` not working
  69. - Fixes issue with many commands missing from the `Command Palette`
  70. ## [3.3.3] - 2017-04-10
  71. ### Fixed
  72. - Fixes issue with newlines in commit messages in the file/branch/stash history quick pick menus (truncates and adds an ellipse icon)
  73. ## [3.3.2] - 2017-04-10
  74. ### Removed
  75. - Removes `gitlens.blame.annotation.characters.*` settings since they were added to deal with unicode bugs in a previous version of vscode
  76. ### Fixed
  77. - 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
  78. ## [3.3.1] - 2017-04-09
  79. ### Changed
  80. - Changes commit search prefixes -- no prefix for message search, `@` for author, `:` for file pattern, `#` for commit id
  81. - Changes `sha` terminology to `commit id` in the UI
  82. ### Fixed
  83. - Fixes issues with author searching
  84. ## [3.3.0] - 2017-04-09
  85. ### Added
  86. - Adds `Search commits` command (`gitlens.showCommitSearch`) to allow commit searching by message, author, file pattern, or sha
  87. - Adds `alt+f` shortcut for the `Search commits` command (`gitlens.showCommitSearch`)
  88. - Adds `Show Commit Search` command to the branch history quick pick menu
  89. - Adds `Show Stashed Changes` command to the repository status quick pick menu
  90. - Adds a `Don't Show Again` option to the GitLen update notification
  91. ### Changed
  92. - Changes `Open x in Remote` commands to be no longer hidden behind the `gitlens.insiders` setting
  93. ### Fixed
  94. - Fixes [#59](https://github.com/eamodio/vscode-gitlens/issues/59) - Context menu shows gitlens commands even if folder/file is not under git
  95. ## [3.2.1]
  96. ### Fixed
  97. - Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - No more blank message if `diff.tool` is missing
  98. ## [3.2.0]
  99. ### Added
  100. - Adds support for single files opened in vscode -- you are no longer required to open a folder for GitLens to work
  101. ### Fixed
  102. - Fixes [#57](https://github.com/eamodio/vscode-gitlens/issues/57) - Warn on directory compare when there is no diff tool configured
  103. - Fixes [#58](https://github.com/eamodio/vscode-gitlens/issues/58) - Work with git sub-modules
  104. - Fixes issue with `Open * in Remote` commands with nested repositories and non-git workspace root folder
  105. ## [3.1.0]
  106. ### Added
  107. - Adds `Show Stashed Changes` command (`gitlens.showQuickStashList`) to open a quick pick menu of all the stashed changes
  108. - Adds insiders `Stash Changes` option to stashed changes quick pick menu -- enabled via `"gitlens.insiders": true`
  109. - Adds insiders `Stash Unstaged Changes` option to stashed changes quick pick menu
  110. - Adds insiders `Apply Stashed Changes` command (`gitlens.stashApply`) to apply the selected stashed changes to the working tree
  111. - Adds insiders `Stash Changes` command (`gitlens.stashSave`) to stash any working tree changes
  112. ### Fixed
  113. - Fixes incorrect counts in upstream status
  114. ## [3.0.5]
  115. ### Added
  116. - 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`
  117. - Adds insiders line support to `Open File in Remote` command (`gitlens.openFileInRemote`)
  118. - Adds original file name for renamed files to the repository status and commit details quick pick menu
  119. ### Fixed
  120. - Fixes [#56](https://github.com/eamodio/vscode-gitlens/issues/56) - Handle file names with spaces
  121. ## [3.0.4]
  122. ### Changed
  123. - Changes telemetry a bit to reduce noise
  124. ### Fixed
  125. - Fixes common telemetry error by switching to non-strict iso dates (since they are only available in later git versions)
  126. ## [3.0.3]
  127. ### Added
  128. - Adds a fallback to work with Git version prior to `2.11.0` -- terribly sorry for the inconvenience :(
  129. ### Fixed
  130. - Fixes [#55](https://github.com/eamodio/vscode-gitlens/issues/55) - reverts Git requirement back to `2.2.0`
  131. - Fixes issues with parsing merge commits
  132. ## [3.0.2]
  133. ### Changed
  134. - Changes required Git version to `2.11.0`
  135. ## [3.0.1]
  136. ### Added
  137. - Adds basic telemetry -- honors the vscode telemetry configuration setting
  138. ## [3.0.0]
  139. ### Added
  140. - Adds insiders support for `Open in GitHub` to the relevant quick pick menus -- enabled via `"gitlens.insiders": true`
  141. - Adds insiders `Open Line Commit in Remote` command (`gitlens.openCommitInRemote`) to open the current commit in the remote service (currently only GitHub)
  142. - Adds insiders `Open File in Remote` command (`gitlens.openFileInRemote`) to open the current file in the remote service (currently only GitHub)
  143. - Adds an update notification for feature releases
  144. - Adds `Show Branch History` command (`gitlens.showQuickBranchHistory`) to show the history of the selected branch
  145. - 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
  146. - Adds `alt+-` shortcut for the `Show Last Opened Quick Pick` command (`gitlens.showLastQuickPick`)
  147. - Adds upstream status information (if available) to the repository status pick pick
  148. - Adds file status rollup information to the repository status pick pick
  149. - Adds file status rollup information to the commit details quick pick menu
  150. - Adds `Compare with...` (`gitlens.diffWithBranch`) command to compare working file to another branch (via branch quick pick menu)
  151. - Adds branch quick pick menu to `Directory Compare` (`gitlens.diffDirectory`) command
  152. - Adds support for `gitlens.showQuickFileHistory` command execution via code lens to limit results to the code lens block
  153. - Adds current branch to branch quick pick menu placeholder
  154. - Adds `Show Branch History` command to the branch history quick pick menu when showing only limited commits (e.g. starting at a specified commit)
  155. - Adds `Show File History` command to the file history quick pick menu when showing only limited commits (e.g. starting at a specified commit)
  156. - Adds `Don't Show Again` option to the unsupported git version notification
  157. ### Changed
  158. - Changes `Show Repository History` command to `Show Current Branch History`
  159. - Changes `Repository History` terminology to `Branch History`
  160. ### Fixed
  161. - Fixes issue with `gitlens.diffWithPrevious` command execution via code lens when the code lens was not at the document/file level
  162. - Fixes issue where full shas were displayed on the file/blame history explorers
  163. - Fixes [#30](https://github.com/eamodio/vscode-gitlens/issues/30) - Diff with Working Tree fails from repo/commit quickpick list if file was renamed (and the commit was before the rename)
  164. - Fixes various other quick pick menu command issues when a file was renamed
  165. - Fixes various issues when caching is disabled
  166. - Fixes issues with parsing commits history
  167. - Fixes various issues with merge commits
  168. ## [2.12.2]
  169. ### Fixed
  170. - Fixes [#50](https://github.com/eamodio/vscode-gitlens/issues/50) - excludes container-level code lens from `html` and `vue` language files
  171. ## [2.12.1]
  172. ### Added
  173. - Adds `gitlens.advanced.codeLens.debug` setting to control whether or not to show debug information in code lens
  174. ### Fixed
  175. - Fixes issue where `gitlens.showQuickRepoHistory` command fails to open when there is no active editor
  176. ## [2.12.0]
  177. ### Added
  178. - Adds progress indicator for the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  179. - Adds paging support to the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  180. - Adds `Show Previous Commits` command
  181. - Adds `Show Next Commits` command
  182. - Adds keyboard page navigation via `alt+,` (previous) & `alt+.` (next) on the `gitlens.showQuickFileHistory` & `gitlens.showQuickRepoHistory` quick pick menus
  183. - Adds keyboard commit navigation via `alt+,` (previous) & `alt+.` (next) on the `gitlens.showQuickCommitDetails` & `gitlens.showQuickCommitFileDetails` quick pick menus
  184. ### Changed
  185. - Changes behavior of `gitlens.showQuickFileHistory` & `gitlens.showFileHistory` to no longer show merge commits
  186. - Changes `gitlens.copyShaToClipboard` to copy the full sha, rather than short sha
  187. - Changes internal tracking to use full sha (rather than short sha)
  188. ## [2.11.2]
  189. ### Added
  190. - Adds `gitlens.diffWithNext` command to open a diff with the next commit
  191. - Adds `alt+.` shortcut for the `gitlens.diffWithNext` command
  192. ### Changed
  193. - Changes `shift+alt+p` shortcut to `alt+,` for the `gitlens.diffWithPrevious` command
  194. - Changes `alt+p` shortcut to `shift+alt+,` for the `gitlens.diffLineWithPrevious` command
  195. ### Removed
  196. - Removes `gitlens.toggleCodeLens` from Command Palette when not available
  197. - Removes `gitlens.toggleCodeLens` shortcut key when not available
  198. ### Fixed
  199. - Fixes (#45)[https://github.com/eamodio/vscode-gitlens/issues/45] - Keyboard Shortcut collision with Project Manager
  200. ## [2.11.1]
  201. ### Added
  202. - Adds blame and active line annotation support to git diff split view (right side)
  203. - Adds command (compare, copy sha/message, etc) support to git diff split view (right side)
  204. ### Fixed
  205. - Fixes intermittent issues when toggling whitespace for blame annotations
  206. ## [2.11.0]
  207. ### Added
  208. - Adds `gitlens.showQuickCommitFileDetails` command to show a quick pick menu of details for a file commit
  209. - Adds `gitlens.showQuickCommitFileDetails` command to code lens
  210. - Adds `gitlens.showQuickCommitFileDetails` command to the status bar
  211. - Adds `gitlens.closeUnchangedFiles` command to close any editors that don't have uncommitted changes
  212. - Adds `gitlens.openChangedFiles` command to open all files that have uncommitted changes
  213. - Adds `Directory Compare` (`gitlens.diffDirectory`) command to open the configured git difftool to compare directory versions
  214. - Adds `Directory Compare with Previous Commit` command on the `gitlens.showQuickCommitDetails` quick pick menu
  215. - Adds `Directory Compare with Working Tree` command on the `gitlens.showQuickCommitDetails` quick pick menu
  216. - Adds a `Changed Files` grouping on the `gitlens.showQuickCommitDetails` quick pick menu
  217. - Adds a `Close Unchanged Files` command on the `gitlens.showQuickRepoStatus` quick pick menu
  218. - Adds a contextual description to the `go back` command in quick pick menus
  219. ### Changed
  220. - Changes layout of the `gitlens.showQuickRepoStatus` quick pick menu for better clarity
  221. - Changes behavior of `gitlens.showQuickCommitDetails` to show commit a quick pick menu of details for a commit
  222. - Changes default of `gitlens.codeLens.recentChange.command` to be `gitlens.showQuickCommitFileDetails` (though there is no visible behavior change)
  223. - Renames `Open Files` to `Open Changed Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  224. - Renames `Open Working Files` to `Open Changed Working Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  225. - Renames `Show Changed Files` to `Show Commit Details` on the `gitlens.showQuickCommitFileDetails` quick pick menu
  226. - Renames `Open Files` to `Open Changed Files` on the `gitlens.showQuickRepoStatus` quick pick menu
  227. ### Fixed
  228. - Fixes [#44](https://github.com/eamodio/vscode-gitlens/issues/43) by adding a warning message about Git version requirements
  229. - Fixes intermittent errors when adding active line annotations
  230. - Fixes intermittent errors when opening multiple files via quick pick menus
  231. ## [2.10.1]
  232. ### Fixed
  233. - 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
  234. - Fixes issue with single quotes (') in annotations
  235. - Fixes output channel logging (also adds more debug information to code lens -- when enabled)
  236. ## [2.10.0]
  237. ### Added
  238. - Adds blame and active line annotation support to git diff split view
  239. - Adds command (compare, copy sha/message, etc) support to git diff split view
  240. ### Fixed
  241. - Fixes startup failure if caching was disabled
  242. - Fixes missing `Compare Line with Previous Commit` context menu item
  243. - Fixes [#41](https://github.com/eamodio/vscode-gitlens/issues/41) - Toggle Blame annotations on compare files page
  244. - Fixes issue with undo (to a saved state) not causing annotations to reappear properly
  245. - Attempts to fix [#42](https://github.com/eamodio/vscode-gitlens/issues/42) - Cursor on Uncommitted message
  246. ## [2.9.0]
  247. ### Changed
  248. - To accomodate the realization that blame information is invalid when a file has unsaved changes, the following behavior changes have been made
  249. - Status bar blame information will hide
  250. - Code lens change to a `Cannot determine...` message and become unclickable
  251. - Many menu choices and commands will hide
  252. ### Fixed
  253. - Fixes [#38](https://github.com/eamodio/vscode-gitlens/issues/38) - Toggle Blame Annotation button shows even when it isn't valid
  254. - Fixes [#36](https://github.com/eamodio/vscode-gitlens/issues/36) - Blame information is invalid when a file has unsaved changes
  255. ## [2.8.2]
  256. ### Added
  257. - Adds `gitlens.blame.annotation.dateFormat` to specify how absolute commit dates will be shown in the blame annotations
  258. - Adds `gitlens.statusBar.date` to specify whether and how the commit date will be shown in the blame status bar
  259. - Adds `gitlens.statusBar.dateFormat` to specify how absolute commit dates will be shown in the blame status bar
  260. ### Fixed
  261. - Fixes [#39](https://github.com/eamodio/vscode-gitlens/issues/39) - Add date format options for status bar blame
  262. ## [2.8.1]
  263. ### Fixed
  264. - Fixes issue where `Compare with *` commands fail to open when there is no active editor
  265. ## [2.8.0]
  266. ### Added
  267. - Adds new `Open File` command on the `gitlens.showQuickCommitDetails` quick pick menu to open the commit version of the file
  268. - Adds new `Open File` command on the `gitlens.showQuickCommitDetails` quick pick menu to open the commit version of the files
  269. - Adds `alt+left` keyboard shortcut in quick pick menus to `go back`
  270. - 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)
  271. - `alt+right` keyboard shortcut on commit details file name, will open the commit version of the file
  272. ### Changed
  273. - Indents the file statuses on the `gitlens.showQuickCommitDetails` quick pick menu
  274. - Renames `Open File` to `Open Working File` on the `gitlens.showQuickCommitDetails` quick pick menu
  275. - Renames `Open File` and `Open Working Files` on the `gitlens.showQuickCommitDetails` quick pick menu
  276. - Reorders some quick pick menus
  277. ### Fixed
  278. - Fixes [#34](https://github.com/eamodio/vscode-gitlens/issues/34) - Open file should open the selected version of the file
  279. - Fixes some issue where some editors opened by the quickpick would not be opened in preview tabs
  280. - Fixes issue where copy to clipboard commands would fail if there was no active editor
  281. - Fixes issue where active line annotations would show for opened versioned files
  282. - Fixes issue where code lens compare commands on opened versioned files would fail
  283. ## [2.7.1]
  284. ### Added
  285. - Adds proper support for multi-line commit messages
  286. ### Fixed
  287. - Fixes [#33](https://github.com/eamodio/vscode-gitlens/issues/33) - Commit message styled as title in popup, when message starts with hash symbol
  288. ## [2.7.0]
  289. ### Added
  290. - Adds file status icons (added, modified, deleted, etc) to the `gitlens.showQuickCommitDetails` quick pick menu
  291. - Adds `Copy Commit Sha to Clipboard` command to commit files quick pick menu
  292. - Adds `Copy Commit Message to Clipboard` command to commit files quick pick menu
  293. ### Changed
  294. - Changes `Show Commit History` to `Show File History` on the `gitlens.showQuickCommitDetails` quick pick menu
  295. - Changes `Show Previous Commit History` to `Show Previous File History` on the `gitlens.showQuickCommitDetails` quick pick menu
  296. ### Fixed
  297. - Fixes issue with repository status when there are no changes
  298. - Fixes issue with `.` showing in the path of quick pick menus
  299. - Fixes logging to clean up on extension deactivate
  300. ## [2.6.0]
  301. ### Added
  302. - Adds `gitlens.showQuickRepoStatus` command to show a quick pick menu of files changed including status icons (added, modified, deleted, etc)
  303. - Adds `alt+s` shortcut for the `gitlens.showQuickRepoStatus` command
  304. ## [2.5.6]
  305. ### Fixed
  306. - Fixes [#32](https://github.com/eamodio/vscode-gitlens/issues/32) - 00000000 Uncommitted changes distracting
  307. ## [2.5.5]
  308. ### Fixed
  309. - Fixes [#25](https://github.com/eamodio/vscode-gitlens/issues/25) - Blame information isn't updated after git operations (commit, reset, etc)
  310. ## [2.5.4]
  311. ### Fixed
  312. - Fixes extra spacing in annotations
  313. ## [2.5.3]
  314. ### Fixed
  315. - Fixes [#27](https://github.com/eamodio/vscode-gitlens/issues/27) - Annotations are broken in vscode insider build
  316. ## [2.5.2]
  317. ### Added
  318. - Adds `Open File` command to `gitlens.showQuickCommitDetails` quick pick menu
  319. - Adds `Open Files` command to `gitlens.showQuickCommitDetails` quick pick menu
  320. - Improves performance of git-log operations in `gitlens.diffWithPrevious` and `gitlens.diffWithWorking` commands
  321. ### Changed
  322. - Changes `Not Committed Yet` author for uncommitted changes to `Uncommitted`
  323. ### Fixed
  324. - Fixes showing `gitlens.showQuickCommitDetails` quick pick menu for uncommitted changes -- now shows the previous commit details
  325. ## [2.5.1]
  326. ### Added
  327. - Adds `gitlens.copyMessageToClipboard` command to copy commit message to the clipboard
  328. - Adds `gitlens.copyMessageToClipboard` to the editor content menu
  329. - Adds `Copy Commit Message to Clipboard` command to `gitlens.showQuickCommitDetails` quick pick menu
  330. ### Changed
  331. - Changes behavior of `gitlens.copyShaToClipboard` to copy the sha of the most recent commit to the repository if there is no active editor
  332. - Changes behavior of `gitlens.showQuickFileHistory` to execute `gitlens.showQuickRepoHistory` if there is no active editor
  333. ### Fixed
  334. - Fixes issue where shortcut keys weren't disabled if GitLens was disabled
  335. ## [2.5.0]
  336. ### Added
  337. - Overhauls the `gitlens.showQuickRepoHistory`, `gitlens.showQuickFileHistory`, and `gitlens.showQuickCommitDetails` quick pick menus
  338. - Adds `Show Repository History` command to `gitlens.showQuickFileHistory` quick pick menu
  339. - Adds `Show Previous Commits History` command to `gitlens.showQuickCommitDetails` quick pick menu
  340. - Adds `Show Commits History` command to `gitlens.showQuickCommitDetails` quick pick menu
  341. - Adds `Copy Commit Sha to Clipboard` command to `gitlens.showQuickCommitDetails` quick pick menu
  342. - Adds `Show Changed Files` command to `gitlens.showQuickCommitDetails` quick pick menu
  343. - Adds more robust `go back` navigation in quick pick menus
  344. - Adds commit message to placeholder text of many quick pick menus
  345. - Adds icons for some commands
  346. - Adds `gitlens.diffWithPrevious` command to the editor content menu
  347. - Adds `gitlens.diffWithWorking` command to the editor content menu
  348. - Adds `gitlens.showQuickRepoHistory` and `gitlens.showQuickCommitDetails` commands to code lens
  349. - Adds `gitlens.showQuickRepoHistory` and `gitlens.showQuickCommitDetails` commands to the status bar
  350. ### Changed
  351. - Changes the default command of `gitlens.codeLens.recentChange.command` to `gitlens.showQuickCommitDetails`
  352. - Changes the default command of `gitlens.statusBar.command` to `gitlens.showQuickCommitDetails`
  353. - Changes behavior of `gitlens.showQuickCommitDetails` to show commit commands rather than file set (use `Show Changed Files` command to get to the file set)
  354. - Changes `gitlens.diffWithPrevious` command to behave as `gitlens.diffWithWorking` if the file has uncommitted changes
  355. - Renames `gitlens.diffWithPrevious` command from `Diff Commit with Previous` to `Compare with Previous Commit`
  356. - Renames `gitlens.diffLineWithPrevious` command from `Diff Commit (line) with Previous` to `Compare Line with Previous Commit`
  357. - Renames `gitlens.diffWithWorking` command from `Diff Commit with Working Tree` to `Compare with Working Tree`
  358. - Renames `gitlens.diffLineWithWorking` command from `Diff Commit (line) with Working Tree` to `Compare Line with Working Tree`
  359. ### Fixed
  360. - Fixes issues with certain git commands not working on Windows
  361. - Fixes [#31](https://github.com/eamodio/vscode-gitlens/issues/31) - Disable gitlens if the project does not have `.git` folder
  362. - Fixes issue where quick pick menus could fail if there was no active editor
  363. - Fixes code lens not updating in response to configuration changes
  364. ## [2.1.1]
  365. ### Fixed
  366. - Fixes overzealous active line annotation updating on document changes
  367. ## [2.1.0]
  368. ### Added
  369. - Adds a new GitLens logo and changes all images to svg
  370. - Adds `alt+p` shortcut for the `gitlens.diffLineWithPrevious` command
  371. - Adds `shift+alt+p` shortcut for the `gitlens.diffWithPrevious` command
  372. - Adds `alt+w` shortcut for the `gitlens.diffLineWithWorking` command
  373. - Adds `shift+alt+w` shortcut for the `gitlens.diffWithWorking` command
  374. - Adds `gitlens.copyShaToClipboard` command to copy commit sha to the clipboard ([#28](https://github.com/eamodio/vscode-gitlens/issues/28))
  375. - Adds `gitlens.showQuickCommitDetails` command to show a quick pick menu of details for a commit
  376. - Adds `go back` choice to `gitlens.showQuickCommitDetails`, `gitlens.showQuickFileHistory`, and `gitlens.showQuickRepoHistory` quick pick menus
  377. - Adds `gitlens.blame.annotation.highlight` to specify whether and how to highlight blame annotations ([#24](https://github.com/eamodio/vscode-gitlens/issues/24))
  378. - Greatly improves performance of line navigation when either active line annotations or status bar blame is enabled
  379. ### Fixed
  380. - Fixes [#29](https://github.com/eamodio/vscode-gitlens/issues/29) - Commit info tooltip duplicated for current line when blame is enabled
  381. - Fixes issue where sometimes the commit history shown wasn't complete
  382. - Fixes issues with `gitlens.diffLineWithPrevious` and `gitlens.diffWithPrevious` not following renames properly
  383. - Fixes issues with `gitlens.diffLineWithPrevious` and `gitlens.diffWithPrevious` not always grabbing the correct commit
  384. ## [2.0.2]
  385. ### Added
  386. - Adds auto-enable of whitespace toggling when using font-ligatures because of [vscode issue](https://github.com/Microsoft/vscode/issues/11485)
  387. - Adds `gitlens.blame.annotation.characters.*` settings to provide some control over how annotations are displayed
  388. ### Fixed
  389. - Fixes [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  390. ## [2.0.1]
  391. ### Fixed
  392. - Fixes [#26](https://github.com/eamodio/vscode-gitlens/issues/26) - Active line annotation doesn't disappear properly after delete
  393. ## [2.0.0]
  394. ### Added
  395. - Adds `gitlens.blame.annotation.activeLine` to specify whether and how to show blame annotations on the active line
  396. - Adds full commit message (rather than just summary) to active line hover if `gitlens.blame.annotation.activeLine` is not `off`
  397. - Adds new `trailing` blame annotation style -- adds annotations after the code lines rather than before
  398. - Adds `gitlens.blame.annotation.message` to show the commit message in `expanded` and `trailing` blame annotation styles
  399. - Adds support for relative dates in blame annotations. Use `gitlens.blame.annotation.date`
  400. - Re-adds context menu for `gitlens.diffLineWithPrevious` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  401. - Re-adds context menu for `gitlens.diffLineWithWorking` -- since [vscode issue](https://github.com/Microsoft/vscode/issues/15395)
  402. ### Changed
  403. - Changes the design of hover annotations -- much cleaner now
  404. - 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`
  405. ### Fixed
  406. - Fixes issue where the status bar blame would get stuck switching between editors
  407. - Fixes issue where code lens aren't updated properly after a file is saved
  408. ## [1.4.3]
  409. ### Added
  410. - Adds some logging to hopefully trap [#22](https://github.com/eamodio/vscode-gitlens/issues/22) - Cannot read property 'sha' of undefined
  411. ### Fixed
  412. - Fixes issue with the latest insiders build (1.9.0-insider f67f87c5498d9361c0b29781c341fd032815314b) where there is a collision of document schemes
  413. ## [1.4.2]
  414. ### Fixed
  415. - Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
  416. ## [1.4.1]
  417. ### Added
  418. - 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
  419. ## [1.4.0]
  420. ### Added
  421. - Adds `alt+h` shortcut for the `gitlens.showQuickFileHistory` command
  422. - Adds `shift+alt+h` shortcut for the `gitlens.showQuickRepoHistory` command
  423. - Adds `gitlens.advanced.maxQuickHistory` to limit the number of quick history entries to show (for better performance); Defaults to 200
  424. - Adds `gitlens.diffLineWithPrevious` as `alt` context menu item for `gitlens.diffWithPrevious`
  425. - Adds `gitlens.diffLineWithWorking` as `alt` context menu item for `gitlens.diffWithWorking`
  426. - Adds `gitlens.showFileHistory` as `alt` context menu item for `gitlens.showQuickFileHistory`
  427. ### Removed
  428. - Removes context menu for `gitlens.diffLineWithPrevious` -- since it is now the `alt` of `gitlens.diffWithPrevious`
  429. - Removes context menu for `gitlens.diffLineWithWorking` -- since it is now the `alt` of `gitlens.diffWithWorking`
  430. - 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
  431. ## [1.3.1]
  432. ### Added
  433. - Adds `Diff Commit with Working Tree` to the explorer context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  434. - Adds `Diff Commit with Working Tree` & `Diff Commit with Previous` to the editor title context menu (assuming `gitlens.menus.fileDiff.enabled` is `true`)
  435. ### Changed
  436. - Renames `Diff` commands for better clarity
  437. - Removes `Git` from the commands as it feels unnecessary
  438. - Reorders the context menu commands
  439. ## [1.3.0]
  440. ### Added
  441. - Adds support for blame and history (log) on files opened via compare commands -- allows for deep navigation through git history
  442. ## [1.2.0]
  443. ### Added
  444. - Adds compare (working vs previous) options to repository history
  445. - Adds compare (working vs previous) options to file history
  446. ### Fixed
  447. - Fixes issue with repository history compare with commits with multiple files
  448. ## [1.1.1]
  449. ### Added
  450. - Adds logging for tracking [#18](https://github.com/eamodio/vscode-gitlens/issues/18) - GitLens only displayed for some files
  451. ### Changed
  452. - Changes `gitlens.showQuickRepoHistory` command to run without an open editor (falls back to the folder repository)
  453. ## [1.1.0]
  454. ### Added
  455. - Adds new `gitlens.showQuickFileHistory` command to show the file history in a quick-pick list (palette)
  456. - Adds new `gitlens.showQuickRepoHistory` command to show the repository history in a quick-pick list (palette)
  457. - Adds `gitlens.showQuickFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  458. ### Changed
  459. - Changes the `gitlens.statusBar.command` settings default to `gitlens.showQuickFileHistory` instead of `gitlens.toggleBlame`
  460. ### Removed
  461. - Removes `git.viewFileHistory` option from the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  462. ## [1.0.2]
  463. ### Fixed
  464. - Fixes [#16](https://github.com/eamodio/vscode-gitlens/issues/16) - incorrect 'Unable to find Git' message
  465. ## [1.0.0]
  466. ### Added
  467. - Adds support for git history (log)!
  468. - Adds support for blame annotations and git commands on file revisions
  469. - Adds ability to show multiple blame annotation at the same time (one per vscode editor)
  470. - Adds new `gitlens.showFileHistory` command to open the history explorer
  471. - Adds new `gitlens.showFileHistory` option to the `gitlens.codeLens.recentChange.command`, `gitlens.codeLens.authors.command`, and `gitlens.statusBar.command` settings
  472. - Adds per-language code lens location customization using the `gitlens.codeLens.languageLocations` setting
  473. - Adds new `gitlens.diffLineWithPrevious` command for line sensitive diffs
  474. - Adds new `gitlens.diffLineWithWorking` command for line sensitive diffs
  475. - Adds `gitlens.diffWithPrevious` command to the explorer context menu
  476. - Adds output channel logging, controlled by the `gitlens.advanced.output.level` setting
  477. - Improves performance of the code lens support
  478. - Improves performance (significantly) when only showing code lens at the document level
  479. - Improves performance of status bar blame support
  480. ### Changed
  481. - Switches on-demand code lens to be a global toggle (rather than per file)
  482. - Complete rewrite of the blame annotation provider to reduce overhead and provide better performance
  483. - Changes `gitlens.diffWithPrevious` command to always be file sensitive diffs
  484. - Changes `gitlens.diffWithWorking` command to always be file sensitive diffs
  485. - Removes all debug logging, unless the `gitlens.advanced.debug` settings it on
  486. ### Fixed
  487. - Fixes many (most?) issues with whitespace toggling (required because of https://github.com/Microsoft/vscode/issues/11485)
  488. - Fixes issue where blame annotations would not be cleared properly when switching between open files
  489. ## [0.5.5]
  490. ### Fixed
  491. - Fixes another off-by-one issue when diffing with caching
  492. ## [0.5.4]
  493. ### Fixed
  494. - Fixes off-by-one issues with blame annotations without caching and when diffing with a previous version
  495. ## [0.5.3]
  496. ### Added
  497. - Adds better uncommitted hover message in blame annotations
  498. - Adds more protection for dealing with uncommitted lines
  499. ## [0.5.2]
  500. ### Fixed
  501. - Fixes loading issue on Linux
  502. ## [0.5.1]
  503. ### Added
  504. - Adds blame information in the status bar
  505. - Add new status bar settings -- see **Extension Settings** for details
  506. - Adds new `gitlens.diffWithPrevious` option to the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings
  507. ### Changed
  508. - Renames the `gitlens.codeLens.recentChange.command` & `gitlens.codeLens.authors.command` settings options (to align with command names)
  509. ### Removed
  510. - Removes `gitlens.blame.annotation.useCodeActions` setting and behavior
  511. ### Fixed
  512. - Fixes Diff with Previous when the selection is uncommitted
  513. ## [0.3.3]
  514. ### Fixed
  515. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing spawn-rx dependency (argh!)
  516. ## [0.3.2]
  517. ### Fixed
  518. - Fixes [#7](https://github.com/eamodio/vscode-gitlens/issues/7) - missing lodash dependency
  519. ## [0.3.1]
  520. ### Added
  521. - Adds new code lens visibility & location settings -- see **Extension Settings** for details
  522. - Adds new command to toggle code lens on and off when `gitlens.codeLens.visibility` is set to `ondemand`
  523. ## [0.2.0]
  524. ### Changed
  525. - Replaces blame regex parsing with a more robust parser
  526. ### Fixed
  527. - Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository
  528. - Fixes failures with Diff with Previous command
  529. - Fixes issues with blame explorer code lens when dealing with previous commits
  530. - Fixes display issues with compact blame annotations (now skips blank lines)
  531. ## [0.1.3]
  532. ### Added
  533. - Improved blame annotations, now with sha and author by default
  534. - Add new blame annotation styles -- compact and expanded (default)
  535. - Adds many new configuration settings; see **Extension Settings** for details
  536. ## [0.0.7]
  537. ### Added
  538. - Adds .gitignore checks to reduce the number of blame calls
  539. ### Fixed
  540. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash (Really!)
  541. - Fixes [#5](https://github.com/eamodio/vscode-gitlens/issues/5) - Finding first non-white-space fails sometimes
  542. ## [0.0.6]
  543. ### Added
  544. - Adds attempt to scroll to the correct position when opening a diff
  545. ### Fixed
  546. - Fixes [#2](https://github.com/eamodio/vscode-gitlens/issues/2) - [request] Provide some debug info when things fail
  547. - Fixes [#4](https://github.com/eamodio/vscode-gitlens/issues/4) - Absolute paths fail on Windows due to backslash
  548. ## [0.0.5]
  549. ### Changed
  550. - Removes code lens from fields and single-line properties to reduce visual noise
  551. - Automatically turns off blame only when required now
  552. ### Fixed
  553. - Fixes issues where filename changes in history would cause diffs to fails
  554. - Fixes some issues with uncommitted blames
  555. ## [0.0.4]
  556. ### Added
  557. - Candidate for preview release on the vscode marketplace.
  558. ## [0.0.1]
  559. ### Added
  560. - Initial release but still heavily a work in progress.