Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
Fixes
#1923
updates titles when # of repos change
main
Eric Amodio
há 2 anos
ascendente
65285251be
cometimento
908e8b26ce
7 ficheiros alterados
com
18 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+6
-0
CHANGELOG.md
+2
-0
src/views/branchesView.ts
+2
-0
src/views/contributorsView.ts
+2
-0
src/views/remotesView.ts
+2
-0
src/views/stashesView.ts
+2
-0
src/views/tagsView.ts
+2
-0
src/views/worktreesView.ts
+ 6
- 0
CHANGELOG.md
Ver ficheiro
@ -4,6 +4,12 @@ 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]
## Fixed
- Fixes [
#1923
](
https://github.com/gitkraken/vscode-gitlens/issues/1923
) - View titles fail to update properly when number of "opened" repos changes
## [12.0.5] - 2022-03-17
### Changed
+ 2
- 0
src/views/branchesView.ts
Ver ficheiro
@ -100,6 +100,8 @@ export class BranchesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Branches'
;
return
this
.
children
;
}
+ 2
- 0
src/views/contributorsView.ts
Ver ficheiro
@ -107,6 +107,8 @@ export class ContributorsViewNode extends RepositoriesSubscribeableNode
return
children
;
}
this
.
view
.
title
=
'Contributors'
;
return
this
.
children
;
}
+ 2
- 0
src/views/remotesView.ts
Ver ficheiro
@ -94,6 +94,8 @@ export class RemotesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Remotes'
;
return
this
.
children
;
}
+ 2
- 0
src/views/stashesView.ts
Ver ficheiro
@ -82,6 +82,8 @@ export class StashesViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Stashes'
;
return
this
.
children
;
}
+ 2
- 0
src/views/tagsView.ts
Ver ficheiro
@ -82,6 +82,8 @@ export class TagsViewNode extends RepositoriesSubscribeableNode
return
child
.
getChildren
(
)
;
}
this
.
view
.
title
=
'Tags'
;
return
this
.
children
;
}
+ 2
- 0
src/views/worktreesView.ts
Ver ficheiro
@ -88,6 +88,8 @@ export class WorktreesViewNode extends RepositoriesSubscribeableNode
return
children
;
}
this
.
view
.
title
=
'Worktrees'
;
return
this
.
children
;
}
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar