-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version v0.3.4: Long TXs support, NVM storage, Settings submenu, fixes. #5
Conversation
* Show the message on the display directly, without a buffer * Use the maximum SRAM capacity for each Ledger model
* Create data types for the NVM storage. Initialize the NVM storage. * Create a settings step in the menu. ** Add the "Show Full Message" option. * Implement the ability to display a short message.
Codecov ReportBase: 63.83% // Head: 63.97% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## develop #5 +/- ##
===========================================
+ Coverage 63.83% 63.97% +0.13%
===========================================
Files 13 13
Lines 777 780 +3
===========================================
+ Hits 496 499 +3
Misses 281 281
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
switch (idx) { | ||
case MENU_SHOW_FULL_MSG: | ||
ux_menulist_init_select(0, | ||
show_full_message_getter, | ||
show_full_message_selector, | ||
N_storage.settings.show_full_message); | ||
break; | ||
default: | ||
ui_menu_main(); | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is designed for the future, when more options are available.
Description
Features:
Fixes:
Changes include