Skip to content

Commit

Permalink
touch ups
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Mar 7, 2023
1 parent d02d21a commit e85117b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions flipbip.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#include "views/flipbip_startscreen.h"
#include "views/flipbip_scene_1.h"

#define FLIPBIP_VERSION "v0.0.4"

typedef struct {
Gui* gui;
NotificationApp* notification;
Expand Down
Binary file added icons/Keychain_39x36.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion views/flipbip_scene_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include <gui/elements.h>
//#include <dolphin/dolphin.h>
#include <storage/storage.h>
#include "FlipBIP_icons.h"
#include "../helpers/flipbip_haptic.h"
//#include "../helpers/flipbip_speaker.h"
#include "../helpers/flipbip_led.h"
#include "../helpers/flipbip_string.h"
#include "../helpers/flipbip_file.h"
Expand Down Expand Up @@ -243,6 +243,7 @@ void flipbip_scene_1_draw(Canvas* canvas, FlipBipScene1Model* model) {
canvas_set_font(canvas, FontPrimary);
canvas_draw_str(canvas, 1, 10, "Loading...");
canvas_draw_str(canvas, 6, 30, "m/44'/x'/0'/0");
canvas_draw_icon(canvas, 86, 25, &I_Keychain_39x36);
} else if(model->page >= 9 && model->page <= 13) {
canvas_set_font(canvas, FontSecondary);
const char* receive_text;
Expand Down
2 changes: 1 addition & 1 deletion views/flipbip_startscreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ void flipbip_startscreen_draw(Canvas* canvas, FlipBipStartscreenModel* model) {
canvas_draw_str(canvas, 18, 11, "FlipBIP - BIP32/39/44");

canvas_set_font(canvas, FontSecondary);
//canvas_draw_str(canvas, 30, 23, "Crypto tools for Flipper");
canvas_draw_str(canvas, 23, 22, "Crypto toolkit for Flipper");
canvas_draw_str(canvas, 99, 34, FLIPBIP_VERSION);

elements_button_right(canvas, "Start");
}
Expand Down

0 comments on commit e85117b

Please sign in to comment.