Eric Amodio před 6 roky
rodič
revize
52e086be19
5 změnil soubory, kde provedl 22 přidání a 3 odebrání
  1. +1
    -1
      CHANGELOG.md
  2. +3
    -0
      README.md
  3. +1
    -1
      package-lock.json
  4. +1
    -1
      package.json
  5. +16
    -0
      src/ui/welcome/index.html

+ 1
- 1
CHANGELOG.md Zobrazit soubor

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [8.5.3] - 2018-07-25
### Fixed
- Fixes [#454](https://github.com/eamodio/vscode-gitlens/issues/454) - Search for string returns merge commits (unlike raw `git log -S`)
- Fixes issue showing changes with untracked stashed files

+ 3
- 0
README.md Zobrazit soubor

@ -37,6 +37,7 @@
- Fixes [#252](https://github.com/eamodio/vscode-gitlens/issues/252) - Cannot read property 'push' of undefined
- Fixes [#451](https://github.com/eamodio/vscode-gitlens/issues/451) - "apply Changes" has discarded all my changes
- Fixes [#449](https://github.com/eamodio/vscode-gitlens/issues/449) - Stop hiding explorers by default when in Zen mode
- Fixes [#454](https://github.com/eamodio/vscode-gitlens/issues/454) - Search for string returns merge commits (unlike raw `git log -S`)
- Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
- Fixes issue where the *Compare File with Previous Revision* command wouldn't work properly when the file had been renamed in some cases
- Fixes issue where the *Compare File with Next Revision* command wouldn't work properly when the file had been renamed in some cases
@ -45,6 +46,8 @@
- Fixes issue where the *Compare File with * Revision* commands in the editor toolbar would show and hide too often because of insignificant focus changes
- Fixes issue where the scope box would be empty when there was no workspace open in the interactive settings editor
- Fixes issue where GitLens saves a couple settings with default values into user settings (rather than just removing the setting)
- Fixes issue showing changes with untracked stashed files
- Fixes issue showing changes with working file when the file has been renamed
See the [release notes](https://github.com/eamodio/vscode-gitlens/blob/master/CHANGELOG.md "Open Release Notes") for the full set of changes

+ 1
- 1
package-lock.json Zobrazit soubor

@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "8.5.2",
"version": "8.5.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

+ 1
- 1
package.json Zobrazit soubor

@ -2,7 +2,7 @@
"name": "gitlens",
"displayName": "GitLens — Git supercharged",
"description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
"version": "8.5.2",
"version": "8.5.3",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

+ 16
- 0
src/ui/welcome/index.html Zobrazit soubor

@ -211,6 +211,12 @@
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes
<a title="Open Issue #454" href="https://github.com/eamodio/vscode-gitlens/issues/454">#454</a> &mdash; Search for string returns merge commits (unlike raw `git log -S`)
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue where commands in the editor toolbar would flash unnecessarily when navigating history or switching tabs
<div class="changelog__details"></div>
</li>
@ -256,6 +262,16 @@
Fixes issue where GitLens saves a couple settings with default values into user settings (rather than just removing the setting)
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue showing changes with untracked stashed files
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>
Fixes issue showing changes with working file when the file has been renamed
<div class="changelog__details"></div>
</li>
<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">8.4</span>

Načítá se…
Zrušit
Uložit