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

684 行
36 KiB

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