Browse Source

Fixes #2377 adds missing azdo icons

main
Eric Amodio 1 year ago
parent
commit
ce5b3f4055
4 changed files with 10 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +4
    -0
      images/dark/icon-azdo.svg
  3. +4
    -0
      images/light/icon-azdo.svg
  4. +1
    -1
      src/git/remotes/azure-devops.ts

+ 1
- 0
CHANGELOG.md View File

@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#2377](https://github.com/gitkraken/vscode-gitlens/issues/2377) - Missing Azure Devops Icon
- Fixes [#2380](https://github.com/gitkraken/vscode-gitlens/issues/2380) - Autolink fails with curly braces
- Fixes [#2381](https://github.com/gitkraken/vscode-gitlens/issues/2381) - can't use scrollbar in 'Commit Graph' view

+ 4
- 0
images/dark/icon-azdo.svg View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
<path fill="#C5C5C5" d="M11.853 4.313l.023.018v7.743l-9.419-1.432 3.947 4.719v-1.898l5.406 1.898 3.53-3V3.67l-3.487.644z"/>
<path fill="#C5C5C5" d="M2.456 6.05l9.397-1.737L7.353 1v1.544l-4.897 1.94L1 6.383v4.037l1.457.223-.001-.002V6.05z"/>
</svg>

+ 4
- 0
images/light/icon-azdo.svg View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
<path fill="#424242" d="M11.853 4.313l.023.018v7.743l-9.419-1.432 3.947 4.719v-1.898l5.406 1.898 3.53-3V3.67l-3.487.644z"/>
<path fill="#424242" d="M2.456 6.05l9.397-1.737L7.353 1v1.544l-4.897 1.94L1 6.383v4.037l1.457.223-.001-.002V6.05z"/>
</svg>

+ 1
- 1
src/git/remotes/azure-devops.ts View File

@ -71,7 +71,7 @@ export class AzureDevOpsRemote extends RemoteProvider {
}
override get icon() {
return 'vsts';
return 'azdo';
}
get id() {

Loading…
Cancel
Save