Skip to content

Commit ee9ae4b

Browse files
author
Stephan Dilly
authored
changelog update (#556)
+ small renaming
1 parent 4d4761e commit ee9ae4b

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
**more info in commit popup**
11+
12+
![chars-branch-name](assets/chars_and_branchname.gif)
13+
14+
**pull support (only ff-merge)**
15+
16+
![pull](assets/pull.gif)
17+
1018
### Breaking Change
1119
- MacOS config directory now uses `~/.config/gitui` [[@remique](https://github.com/remique)] ([#317](https://github.com/extrawurst/gitui/issues/317))
1220

1321
### Added
14-
- support smoother left/right toggle for commit details ([#418](https://github.com/extrawurst/gitui/issues/418))
15-
- support *force push* command [[@WizardOhio24](https://github.com/WizardOhio24)] ([#274](https://github.com/extrawurst/gitui/issues/274))
22+
- support for pull (fetch + ff-only merge) ([#319](https://github.com/extrawurst/gitui/issues/319))
1623
- show used char count in input texts ([#466](https://github.com/extrawurst/gitui/issues/466))
17-
18-
![charcount](assets/char_count.gif)
24+
- support smoother left/right toggle/keys for commit details ([#418](https://github.com/extrawurst/gitui/issues/418))
25+
- support *force push* command [[@WizardOhio24](https://github.com/WizardOhio24)] ([#274](https://github.com/extrawurst/gitui/issues/274))
1926

2027
### Fixed
2128
- don't close branchlist every time ([#550](https://github.com/extrawurst/gitui/issues/550))

assets/char_count.gif

-131 KB
Binary file not shown.

assets/chars_and_branchname.gif

1.29 MB
Loading

assets/pull.gif

158 KB
Loading

src/components/pull.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl DrawableComponent for PullComponent {
185185
.block(
186186
Block::default()
187187
.title(Span::styled(
188-
strings::FETCH_POPUP_MSG,
188+
strings::PULL_POPUP_MSG,
189189
self.theme.title(true),
190190
))
191191
.borders(Borders::ALL)

src/strings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub mod order {
66

77
pub static PUSH_POPUP_MSG: &str = "Push";
88
pub static FORCE_PUSH_POPUP_MSG: &str = "Force Push";
9-
pub static FETCH_POPUP_MSG: &str = "Fetch";
9+
pub static PULL_POPUP_MSG: &str = "Pull";
1010
pub static PUSH_POPUP_PROGRESS_NONE: &str = "preparing...";
1111
pub static PUSH_POPUP_STATES_ADDING: &str = "adding objects (1/3)";
1212
pub static PUSH_POPUP_STATES_DELTAS: &str = "deltas (2/3)";

0 commit comments

Comments
 (0)