mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
align branch name parenth usage
and added changelog github user name
This commit is contained in:
parent
216fad3140
commit
f04af21382
2 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* add `regex-fancy` and `regex-onig` features to allow building Syntect with Onigumara regex engine instead of the default engine based on fancy-regex [[@jirutka](https://github.com/jirutka)]
|
||||
* add `vendor-openssl` feature to allow building without vendored openssl [[@jirutka](https://github.com/jirutka)]
|
||||
* allow copying marked commits [[@remique](https://github.com/remique)] ([#1288](https://github.com/extrawurst/gitui/issues/1288))
|
||||
* display tags and branches in the log view ([#1371](https://github.com/extrawurst/gitui/pull/1371))
|
||||
* display tags and branches in the log view [[@alexmaco]](https://github.com/alexmaco)([#1371](https://github.com/extrawurst/gitui/pull/1371))
|
||||
|
||||
### Fixes
|
||||
* remove insecure dependency `ansi_term` ([#1290](https://github.com/extrawurst/gitui/issues/1290))
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ impl CommitList {
|
|||
let branches = self.branches.get(&e.id).map(|names| {
|
||||
names
|
||||
.iter()
|
||||
.map(|name| format!("[{}]", name))
|
||||
.map(|name| format!("{{{}}}", name))
|
||||
.join(" ")
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue