Skip to content

Commit e85117b

Browse files
committed
touch ups
1 parent d02d21a commit e85117b

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

flipbip.h

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#include "views/flipbip_startscreen.h"
1515
#include "views/flipbip_scene_1.h"
1616

17+
#define FLIPBIP_VERSION "v0.0.4"
18+
1719
typedef struct {
1820
Gui* gui;
1921
NotificationApp* notification;

icons/Keychain_39x36.png

3.69 KB
Loading

views/flipbip_scene_1.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#include <gui/elements.h>
66
//#include <dolphin/dolphin.h>
77
#include <storage/storage.h>
8+
#include "FlipBIP_icons.h"
89
#include "../helpers/flipbip_haptic.h"
9-
//#include "../helpers/flipbip_speaker.h"
1010
#include "../helpers/flipbip_led.h"
1111
#include "../helpers/flipbip_string.h"
1212
#include "../helpers/flipbip_file.h"
@@ -243,6 +243,7 @@ void flipbip_scene_1_draw(Canvas* canvas, FlipBipScene1Model* model) {
243243
canvas_set_font(canvas, FontPrimary);
244244
canvas_draw_str(canvas, 1, 10, "Loading...");
245245
canvas_draw_str(canvas, 6, 30, "m/44'/x'/0'/0");
246+
canvas_draw_icon(canvas, 86, 25, &I_Keychain_39x36);
246247
} else if(model->page >= 9 && model->page <= 13) {
247248
canvas_set_font(canvas, FontSecondary);
248249
const char* receive_text;

views/flipbip_startscreen.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ void flipbip_startscreen_draw(Canvas* canvas, FlipBipStartscreenModel* model) {
3636
canvas_draw_str(canvas, 18, 11, "FlipBIP - BIP32/39/44");
3737

3838
canvas_set_font(canvas, FontSecondary);
39-
//canvas_draw_str(canvas, 30, 23, "Crypto tools for Flipper");
4039
canvas_draw_str(canvas, 23, 22, "Crypto toolkit for Flipper");
40+
canvas_draw_str(canvas, 99, 34, FLIPBIP_VERSION);
4141

4242
elements_button_right(canvas, "Start");
4343
}

0 commit comments

Comments
 (0)