Parcourir la source

Preps v9.1

main
Eric Amodio il y a 6 ans
Parent
révision
91df7e7756
5 fichiers modifiés avec 199 ajouts et 61 suppressions
  1. +7
    -7
      CHANGELOG.md
  2. +2
    -22
      README.md
  3. +1
    -1
      package.json
  4. +0
    -1
      src/ui/scss/main.scss
  5. +189
    -30
      src/ui/welcome/index.html

+ 7
- 7
CHANGELOG.md Voir le fichier

@ -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]
## [9.1.0] - 2018-12-12
### Added
@ -13,18 +13,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Only provided if the current branch is tracking a remote branch and is behind it
- **\* Commits Ahead** — quickly see and explore the specific commits ahead of the upstream (i.e. commits that haven't been pushed)
- Only provided if the current branch is tracking a remote branch and is ahead of it
- Adds control over the contributed menu commands to the Source Control side bar to the GitLens interactive settings editor (via the `gitlens.menus` setting)
- Adds Git extended regex support to commit searches
- Adds the date and a changes indicator (+x ~x -x) to stashes in GitLens views (uses the new `${changes}` token in the `gitlens.views.stashFormat` setting)
- Adds the date and a changes indicator (+x ~x -x) to stashed changes in GitLens views (uses the new `${changes}` token in the `gitlens.views.stashFormat` setting)
- Adds the changed file status (added, modified, renamed, deleted, etc) to the tooltip of each revision in the _File History_ and _Line History_ views
- Adds Git extended regex support to commit searches
- Adds control over the menu commands contributed to the Source Control side bar to the GitLens interactive settings editor (via the `gitlens.menus` setting)
### Changed
- Changes the _Show Revision Details_ command (`gitlens.showQuickRevisionDetails`) to show file commit details
- Changes the `alt`-command of the _Toggle File Blame Annotations_ command (`gitlens.toggleFileBlame`) to _Toggle File Heatmap Annotations_ command (`gitlens.toggleFileHeatmap`)
- Changes the `alt`-command of the _Toggle File Blame Annotations_ command (`gitlens.toggleFileBlame`) to be the _Toggle File Heatmap Annotations_ command (`gitlens.toggleFileHeatmap`)
- Changes searching for commits by message to be case-insensitive
- Renames the _Explore the Repository from Here_ command (`gitlens.views.exploreRepoRevision`) to _Explore Repository from Here_
- Reworks the layout of some contributed menu command
- Reworks the layout of some contributed menu commands
### Fixed
@ -34,7 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixes [#523](https://github.com/eamodio/vscode-gitlens/issues/523) — File History doesn't show all commits on file
- Fixes [#552](https://github.com/eamodio/vscode-gitlens/issues/552) — "Open Line Changes with..." doesn't work for renamed files
- Fixes [#566](https://github.com/eamodio/vscode-gitlens/issues/566) — History error with UNC
- Fixes [#572](https://github.com/eamodio/vscode-gitlens/issues/572) — Explorer cant expand some branch folders
- Fixes [#572](https://github.com/eamodio/vscode-gitlens/issues/572) — Explorer can't expand some branch folders
- Fixes [#584](https://github.com/eamodio/vscode-gitlens/issues/584) — Unexpected results when opening diff from file history
- Fixes [#588](https://github.com/eamodio/vscode-gitlens/issues/588) — Output channel doesn't exist with `gitlens.outputLevel` default
- Fixes an issue where comparing a file with its staged revision doesn't show any content

+ 2
- 22
README.md Voir le fichier

@ -31,8 +31,6 @@ Also please [write a review](https://marketplace.visualstudio.com/items?itemName
# What's new in GitLens 9
## 9.0 — December 2018
- Adds GitLens over Visual Studio Live Share
- Live Share guests will now have read-only access to GitLens' features
- Adds a new Git virtual file system provider for the `gitlens:` scheme — closes [#430](https://github.com/eamodio/vscode-gitlens/issues/430)
@ -48,25 +46,7 @@ Also please [write a review](https://marketplace.visualstudio.com/items?itemName
- Provides somewhat similar features to the former _Results_ view as well as it is now a persistent view, makes it easier to start a commit search, and [more](https://github.com/eamodio/vscode-gitlens/tree/master/#search-commits-view- 'Jump to the Search Commits view docs')
- Adds an all-new [_Compare_ view](https://github.com/eamodio/vscode-gitlens/tree/master/#compare-view- 'Jump to the Compare view docs') to visualize comparisons between branches, tags, commits, and more
- Provides somewhat similar and powerful features to the former _Results_ view as well as it is now a persistent view, makes it easier to start a comparison, and [more](https://github.com/eamodio/vscode-gitlens/tree/master/#compare-view- 'Jump to the Compare view docs')
- Reduces the overhead of all GitLens views — GitLens now only tracks changes and updates the views if they are visible, collapsed or hidden views should have almost zero overhead
- Adds relative date markers (_Less than a week ago_, _Over a week ago_, _Over a month ago_, etc) to revision (commit) histories in GitLens views
- Adds branch and tag tip markers to revision (commit) histories in GitLens views — closes [#560](https://github.com/eamodio/vscode-gitlens/issues/560)
- Adds a changes indicator (+x ~x -x) to commits in GitLens views (uses the new `${changes}` token in the `gitlens.views.commitFormat` setting) — closes [#493](https://github.com/eamodio/vscode-gitlens/issues/493)
- Adds comparisions to commit ids, by prefixing with a `#`, in addition to branches and tags — closes [#535](https://github.com/eamodio/vscode-gitlens/issues/535)
- Adds support for git mailmap — closes [#388](https://github.com/eamodio/vscode-gitlens/issues/388)
- Adds support for Azure DevOps (formerly VSTS) remotes — closes [#501](https://github.com/eamodio/vscode-gitlens/issues/501)
- Adds better detection of on-prem BitBucket and GitLab remotes — closes [#214](https://github.com/eamodio/vscode-gitlens/issues/214)
- Adds some missing gitmojis — thanks to [PR #510](https://github.com/eamodio/vscode-gitlens/pull/510) by Loris Bettazza ([@Pustur](https://github.com/Pustur))
- Changes the sorting of branch, tags, and files in GitLens views to be a natural sort — closes [#547](https://github.com/eamodio/vscode-gitlens/issues/547)
- Changes the _Apply Changes_ command to truly apply only the patch of the specified change — closes [#539](https://github.com/eamodio/vscode-gitlens/issues/539)
- Fixes [#405](https://github.com/eamodio/vscode-gitlens/issues/405) - Secondary, blank repository appears repeatedly in Repositories view
- Fixes [#430](https://github.com/eamodio/vscode-gitlens/issues/430) - File revisions can end up being parsed by language servers (causing errors and warnings, etc)
- Fixes [#496](https://github.com/eamodio/vscode-gitlens/issues/496) - Short hash length doesn't match git's default length
- Fixes [#503](https://github.com/eamodio/vscode-gitlens/issues/503) - Open Changes (with difftool) opens one difftool window per changed file
- Fixes [#507](https://github.com/eamodio/vscode-gitlens/issues/507) - Restrict commit message size
- Fixes [#527](https://github.com/eamodio/vscode-gitlens/issues/527) - GitLens icon flashes on startup
- Fixes [#533](https://github.com/eamodio/vscode-gitlens/issues/533) - Some descriptions not using markdown properly in Settings GUI
- Fixes [#544](https://github.com/eamodio/vscode-gitlens/issues/544) - Some commit messages have one letter missing
- And much more
See the [release notes](https://github.com/eamodio/vscode-gitlens/blob/master/CHANGELOG.md 'Open Release Notes') for the full set of changes
@ -74,7 +54,7 @@ See the [release notes](https://github.com/eamodio/vscode-gitlens/blob/master/CH
[GitLens](https://gitlens.amod.io 'Learn more about GitLens') is an [open-source](https://github.com/eamodio/vscode-gitlens 'Open GitLens on GitHub') extension for [Visual Studio Code](https://code.visualstudio.com) created by [Eric Amodio](https://www.amod.io 'Learn more about Eric').
GitLens simply helps you **better understand code**. Quickly glimpse into whom, why, and when a line or code block was changed. Jump back through history to **gain further insights** as to how and why the code evolved. Explore the history and evolution of a codebase.
GitLens simply helps you **better understand code**. Quickly glimpse into whom, why, and when a line or code block was changed. Jump back through history to **gain further insights** as to how and why the code evolved. Effortlessly explore the history and evolution of a codebase.
While GitLens is **powerful and feature rich**, it is also [highly customizable](#gitlens-settings- 'Jump to the GitLens settings docs') to meet your specific needs — find code lens intrusive or the current line blame annotation distracting — no problem, it is quick and easy to turn them off or change how they behave via the built-in [_GitLens Settings_ editor](#configuration 'Jump to Configuration'), an **interactive editor** covering many of GitLens' powerful settings. While for more advanced customizations, refer to the [GitLens settings docs](#gitlens-settings- 'Jump to the GitLens settings docs') and edit your vscode [user settings](https://code.visualstudio.com/docs/getstarted/settings 'Open User settings').

+ 1
- 1
package.json Voir le fichier

@ -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": "9.0.3",
"version": "9.1.0",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

+ 0
- 1
src/ui/scss/main.scss Voir le fichier

@ -437,7 +437,6 @@ ul {
}
.changelog__date {
font-size: 0.9em;
font-variant: small-caps;
font-weight: 600;
margin-left: -7px;

+ 189
- 30
src/ui/welcome/index.html Voir le fichier

@ -41,8 +41,8 @@
<p>
GitLens simply helps you <b>better understand code</b>. Quickly glimpse into whom, why, and when
a line or code block was changed. Jump back through history to <b>gain further insights</b> as
to how and why the code evolved. Explore the history and evolution of a codebase. Dive right in
and see how GitLens can help!
to how and why the code evolved. Effortlessly explore the history and evolution of a codebase.
Dive right in and see how GitLens can help!
</p>
<p>
While GitLens is <b>powerful and feature rich</b>, it is also highly customizable to meet your
@ -116,12 +116,160 @@
<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">9.1</span>
<span class="changelog__date">DEC &nbsp;2018</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds more detailed
branch tracking status (if available) to the <b>Branches</b> list in the
<i>Repositories</i> view
<div class="changelog__details changelog__details--list">
<p>
<b>* Commits Behind</b> &mdash; quickly see and explore the specific commits
behind the upstream (i.e. commits that haven't been pulled)
</p>
<p>
<b>* Commits Ahead</b> &mdash; quickly see and explore the specific commits
ahead of the upstream (i.e. commits that haven't been pushed)
</p>
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the date and a
changes indicator (+x ~x -x) to stashed changes in GitLens views
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the changed
file status (added, modified, renamed, deleted, etc) to the tooltip of each revision
in the <i>File History</i> and <i>Line History</i> views
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds Git extended
regular expression support to commit searches
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds control over
the menu commands contributed to the Source Control side bar to the GitLens
interactive settings editor
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes the
<i>Show Revision Details</i> command to show file commit details
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes the
<code>alt</code>-command of the <i>Toggle File Blame Annotations</i> command to be
the <i>Toggle File Heatmap Annotations</i> command
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes
searching for commits by message to be case-insensitive
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes an issue
where gravatar icons would sometimes not show up &mdash; thanks to
<a
title="Open Issue #579"
href="https://github.com/eamodio/vscode-gitlens/issues/579"
>PR #579</a
>
by sgtwilko (<a title="@sgtwilko" href="https://github.com/sgtwilko">@sgtwilko</a>)
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a title="Open Issue #33" href="https://github.com/eamodio/vscode-gitlens/issues/33"
>#33</a
>
&mdash; Commit messages can causes markdown formatting in hovers
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #501"
href="https://github.com/eamodio/vscode-gitlens/issues/501"
>#501</a
>
&mdash; Azure DevOps ssh remotes aren't handled properly
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #523"
href="https://github.com/eamodio/vscode-gitlens/issues/523"
>#523</a
>
&mdash; File History doesn't show all commits on file
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #552"
href="https://github.com/eamodio/vscode-gitlens/issues/552"
>#552</a
>
&mdash; "Open Line Changes with..." doesn't work for renamed files
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #566"
href="https://github.com/eamodio/vscode-gitlens/issues/566"
>#566</a
>
&mdash; History error with UNC
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #572"
href="https://github.com/eamodio/vscode-gitlens/issues/572"
>#572</a
>
&mdash; Explorer can't expand some branch folders
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #584"
href="https://github.com/eamodio/vscode-gitlens/issues/584"
>#584</a
>
&mdash; Unexpected results when opening diff from file history
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #588"
href="https://github.com/eamodio/vscode-gitlens/issues/588"
>#588</a
>
&mdash; Output channel doesn't exist with <code>gitlens.outputLevel</code> default
<div class="changelog__details changelog__details--list"></div>
</li>
<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">9.0</span>
<span class="changelog__date">DEC &nbsp;2018</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds GitLens over
<span class="changelog__badge changelog__badge--added">NEW</span>Adds GitLens over
Visual Studio Live Share
<div class="changelog__details changelog__details--list">
<p>
@ -131,7 +279,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds a new Git
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a new Git
virtual file system provider for the <code>gitlens:</code> scheme &mdash; closes
<a
title="Open Issue #430"
@ -148,7 +296,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds an
<span class="changelog__badge changelog__badge--added">NEW</span>Adds an
<i>Explore the Repository from Here</i> command which opens a virtual workspace
folder (using the new Git virtual file system provider) for the repository at the
specified point in time (commit, branch, tag, etc) &mdash; closes
@ -160,7 +308,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds a new
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a new
<a
title="Jump to the Repositories view docs"
href="https://github.com/eamodio/vscode-gitlens/tree/master/#repositories-view-"
@ -206,7 +354,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds a new
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a new
<a
title="Jump to the File History view docs"
href="https://github.com/eamodio/vscode-gitlens/tree/master/#file-history-view-"
@ -237,7 +385,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds an all-new
<span class="changelog__badge changelog__badge--added">NEW</span>Adds an all-new
<a
title="Jump to the Line History view docs"
href="https://github.com/eamodio/vscode-gitlens/tree/master/#line-history-view-"
@ -274,7 +422,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds an all-new
<span class="changelog__badge changelog__badge--added">NEW</span>Adds an all-new
<a
title="Jump to the Search Commits view docs"
href="https://github.com/eamodio/vscode-gitlens/tree/master/#search-commits-view-"
@ -311,7 +459,7 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds an all-new
<span class="changelog__badge changelog__badge--added">NEW</span>Adds an all-new
<a
title="Jump to the Compare view docs"
href="https://github.com/eamodio/vscode-gitlens/tree/master/#compare-view-"
@ -342,21 +490,21 @@
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Reduces the
<span class="changelog__badge changelog__badge--added">NEW</span>Reduces the
overhead of all GitLens views &mdash; GitLens now only tracks changes and updates
the views if they are visible, collapsed or hidden views should have almost zero
overhead
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds relative date
<span class="changelog__badge changelog__badge--added">NEW</span>Adds relative date
markers (<i>Less than a week ago</i>, <i>Over a week ago</i>,
<i>Over a month ago</i>, etc) to revision (commit) histories in GitLens views
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds branch and
tag tip markers to revision (commit) histories in GitLens views &mdash; closes
<span class="changelog__badge changelog__badge--added">NEW</span>Adds branch and tag
tip markers to revision (commit) histories in GitLens views &mdash; closes
<a
title="Open Issue #560"
href="https://github.com/eamodio/vscode-gitlens/issues/560"
@ -365,7 +513,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds a changes
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a changes
indicator (+x ~x -x) to commits in GitLens views &mdash; closes
<a
title="Open Issue #493"
@ -375,7 +523,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds comparisions
<span class="changelog__badge changelog__badge--added">NEW</span>Adds comparisions
to commit ids, by prefixing with a <code>#</code>, in addition to branches and tags
&mdash; closes
<a
@ -386,7 +534,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds support for
<span class="changelog__badge changelog__badge--added">NEW</span>Adds support for
git mailmap &mdash; closes
<a
title="Open Issue #388"
@ -396,7 +544,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds support for
<span class="changelog__badge changelog__badge--added">NEW</span>Adds support for
Azure DevOps (formerly VSTS) remotes &mdash; closes
<a
title="Open Issue #501"
@ -406,7 +554,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds better
<span class="changelog__badge changelog__badge--added">NEW</span>Adds better
detection of on-prem BitBucket and GitLab remotes &mdash; closes
<a
title="Open Issue #214"
@ -416,7 +564,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span> Adds some missing
<span class="changelog__badge changelog__badge--added">NEW</span>Adds some missing
gitmojis &mdash; thanks to
<a
title="Open Issue #510"
@ -427,7 +575,18 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span> Changes the
<span class="changelog__badge changelog__badge--added">NEW</span>Adds a
<i>Directory Compare All Changes</i> to open the configured git difftool to compare
the working directory with HEAD &mdash; closes
<a
title="Open Issue #569"
href="https://github.com/eamodio/vscode-gitlens/issues/569"
>#569</a
>
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes the
sorting of branch, tags, and files in GitLens views to be a natural sort
<a
title="Open Issue #547"
@ -437,7 +596,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--changed">IMPROVED</span> Changes the
<span class="changelog__badge changelog__badge--changed">IMPROVED</span>Changes the
<i>Apply Changes</i> command to truly apply only the patch of the specified change
<a
title="Open Issue #539"
@ -447,7 +606,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #405"
href="https://github.com/eamodio/vscode-gitlens/issues/405"
@ -457,7 +616,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #430"
href="https://github.com/eamodio/vscode-gitlens/issues/430"
@ -468,7 +627,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #496"
href="https://github.com/eamodio/vscode-gitlens/issues/496"
@ -478,7 +637,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #503"
href="https://github.com/eamodio/vscode-gitlens/issues/503"
@ -488,7 +647,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #507"
href="https://github.com/eamodio/vscode-gitlens/issues/507"
@ -498,7 +657,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #527"
href="https://github.com/eamodio/vscode-gitlens/issues/527"
@ -508,7 +667,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #533"
href="https://github.com/eamodio/vscode-gitlens/issues/533"
@ -518,7 +677,7 @@
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--fixed">FIXED</span> Fixes
<span class="changelog__badge changelog__badge--fixed">FIXED</span>Fixes
<a
title="Open Issue #544"
href="https://github.com/eamodio/vscode-gitlens/issues/544"

Chargement…
Annuler
Enregistrer