1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 18:49:07 +00:00

introduce home screen

This commit is contained in:
Pavol Rusnak 2015-02-04 20:17:10 +01:00
parent f5d880c96c
commit 201b66a559
2 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,7 @@ message ApplySettings {
optional string language = 1;
optional string label = 2;
optional bool use_passphrase = 3;
optional bytes homescreen = 4;
}
/**

View File

@ -24,4 +24,5 @@ message Storage {
optional string language = 7; // current language
optional string label = 8; // device label
optional bool imported = 9; // was storage imported from an external source?
optional bytes homescreen = 10; // image used as homescreen (logo + label is used when not set)
}