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
7
7
8
8
## Unreleased
9
9
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
+
10
18
### Breaking Change
11
19
- MacOS config directory now uses ` ~/.config/gitui ` [[ @remique ] ( https://github.com/remique )] ([ #317 ] ( https://github.com/extrawurst/gitui/issues/317 ) )
12
20
13
21
### 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 ) )
16
23
- 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 ) )
19
26
20
27
### Fixed
21
28
- 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 {
185
185
. block (
186
186
Block :: default ( )
187
187
. title ( Span :: styled (
188
- strings:: FETCH_POPUP_MSG ,
188
+ strings:: PULL_POPUP_MSG ,
189
189
self . theme . title ( true ) ,
190
190
) )
191
191
. borders ( Borders :: ALL )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pub mod order {
6
6
7
7
pub static PUSH_POPUP_MSG : & str = "Push" ;
8
8
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 " ;
10
10
pub static PUSH_POPUP_PROGRESS_NONE : & str = "preparing..." ;
11
11
pub static PUSH_POPUP_STATES_ADDING : & str = "adding objects (1/3)" ;
12
12
pub static PUSH_POPUP_STATES_DELTAS : & str = "deltas (2/3)" ;
You can’t perform that action at this time.
0 commit comments