Skip to content

Commit

Permalink
release: 5.3.4 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed May 11, 2024
1 parent 57242f9 commit 38882ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ APPNAME = "Stellar"
# Application version
APPVERSION_M = 5
APPVERSION_N = 3
APPVERSION_P = 3
APPVERSION_P = 4
APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)"

# Application source files
Expand Down
5 changes: 5 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## v5.3.4

### Updated
- Optimize information display.

## v5.3.3

### Updated
Expand Down
4 changes: 2 additions & 2 deletions src/ui/nbgl_address.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void ui_action_validate_pubkey(bool choice) {
ui_menu_main();
}

static void confirmationChoice(bool confirm) {
static void confirmation_choice(bool confirm) {
ui_action_validate_pubkey(confirm);
if (confirm) {
nbgl_useCaseStatus("ADDRESS\nVERIFIED", true, ui_menu_main);
Expand All @@ -55,7 +55,7 @@ int ui_display_address(void) {
0)) {
return io_send_sw(SW_DISPLAY_ADDRESS_FAIL);
}
nbgl_useCaseAddressConfirmation(G.ui.detail_value, confirmationChoice);
nbgl_useCaseAddressConfirmation(G.ui.detail_value, confirmation_choice);
return 0;
}
#endif // HAVE_NBGL

0 comments on commit 38882ed

Please sign in to comment.