diff --git a/app/src/ui_home_nbgl.c b/app/src/ui_home_nbgl.c index 1c41ece2d..78d7ef2c9 100644 --- a/app/src/ui_home_nbgl.c +++ b/app/src/ui_home_nbgl.c @@ -36,12 +36,12 @@ void tz_ui_home_redisplay(uint8_t page); // ----------------------------------------------------------- // --------------------- SETTINGS MENU ----------------------- // ----------------------------------------------------------- -#define SETTING_INFO_NB 2 +#define SETTING_INFO_NB 3 #define SETTINGS_SWITCHES_NB 1 #define SETTINGS_RADIO_NB 3 -static const char *const infoTypes[] = {"Version", "Developer"}; -static const char *const infoContents[] - = {APPVERSION, "Trilitech Kanvas Limited et al."}; +static const char *const infoTypes[] = {"Version", "Developer", "Contact"}; +static const char *const infoContents[] = { + APPVERSION, "Trilitech Kanvas Limited et al.", "ledger-tezos@trili.tech"}; enum { EXPERT_MODE_TOKEN = FIRST_USER_TOKEN, diff --git a/tests/integration/touch/snapshots/flex/info_flex_1.png b/tests/integration/touch/snapshots/flex/info_flex_1.png new file mode 100644 index 000000000..351b8845f Binary files /dev/null and b/tests/integration/touch/snapshots/flex/info_flex_1.png differ diff --git a/tests/integration/touch/snapshots/flex/info_flex_2.png b/tests/integration/touch/snapshots/flex/info_flex_2.png new file mode 100644 index 000000000..81e695a90 Binary files /dev/null and b/tests/integration/touch/snapshots/flex/info_flex_2.png differ diff --git a/tests/integration/touch/snapshots/stax/info.png b/tests/integration/touch/snapshots/stax/info.png index a0eae82e6..aea0d3a39 100755 Binary files a/tests/integration/touch/snapshots/stax/info.png and b/tests/integration/touch/snapshots/stax/info.png differ diff --git a/tests/integration/touch/utils.py b/tests/integration/touch/utils.py index 50778edf1..76eb0d085 100644 --- a/tests/integration/touch/utils.py +++ b/tests/integration/touch/utils.py @@ -291,7 +291,12 @@ def assert_home(self): self.assert_screen("home", True) def assert_info(self): - self.assert_screen("info", True) + if(Firmware.STAX == self.firmware): + self.assert_screen("info_stax", True) + else: + self.assert_screen("info_flex_1", True) + self.review.next() + self.assert_screen("info_flex_2", True) def assert_expert_mode(self, expert_mode=False): suffix = ""