Skip to content

Commit

Permalink
chore: 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
sc committed Aug 9, 2023
1 parent 1057242 commit b81adf6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ App(
fap_category="Tools",
fap_author="Struan Clark (xtruan)",
fap_weburl="https://github.com/xtruan/FlipBIP",
fap_version=(1, 12),
fap_description="Crypto wallet tools for Flipper",
fap_version=(1, 13),
fap_description="Crypto wallet for Flipper",
)
2 changes: 1 addition & 1 deletion flipbip.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "scenes/flipbip_scene.h"
#include "views/flipbip_scene_1.h"

#define FLIPBIP_VERSION "v1.12.0"
#define FLIPBIP_VERSION "v1.13.0"

#define COIN_BTC 0
#define COIN_DOGE 3
Expand Down
5 changes: 3 additions & 2 deletions scenes/flipbip_scene_menu.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "../flipbip.h"
#include "../helpers/flipbip_file.h"

#define FLIPBIP_MENU_HEADER_TEXT "- FlipBIP wallet " FLIPBIP_VERSION " -"
#define FLIPBIP_SUBMENU_TEXT "- FlipBIP wallet " FLIPBIP_VERSION " -"

enum SubmenuIndex {
SubmenuIndexScene1BTC = 10,
Expand All @@ -22,9 +22,10 @@ void flipbip_scene_menu_submenu_callback(void* context, uint32_t index) {
void flipbip_scene_menu_on_enter(void* context) {
FlipBip* app = context;

// FlipBIP header with version
submenu_add_item(
app->submenu,
FLIPBIP_MENU_HEADER_TEXT,
FLIPBIP_SUBMENU_TEXT,
SubmenuIndexNOP,
flipbip_scene_menu_submenu_callback,
app);
Expand Down

0 comments on commit b81adf6

Please sign in to comment.