File tree Expand file tree Collapse file tree 6 files changed +13
-6
lines changed
Expand file tree Collapse file tree 6 files changed +13
-6
lines changed Original file line number Diff line number Diff 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 ) )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pub mod order {
66
77pub static PUSH_POPUP_MSG : & str = "Push" ;
88pub static FORCE_PUSH_POPUP_MSG : & str = "Force Push" ;
9- pub static FETCH_POPUP_MSG : & str = "Fetch " ;
9+ pub static PULL_POPUP_MSG : & str = "Pull " ;
1010pub static PUSH_POPUP_PROGRESS_NONE : & str = "preparing..." ;
1111pub static PUSH_POPUP_STATES_ADDING : & str = "adding objects (1/3)" ;
1212pub static PUSH_POPUP_STATES_DELTAS : & str = "deltas (2/3)" ;
You can’t perform that action at this time.
0 commit comments