diff --git a/README.md b/README.md index 9353817..dc25480 100644 --- a/README.md +++ b/README.md @@ -110,8 +110,6 @@ After unlock, the terminal becomes a live status and control console rendered by ```text n_signer v0.0.53 > Main Menu -Press d for connection instructions - Roles: Role Purpose Curve Derivation path main nostr secp256k1 m/44'/1237'/0'/0/0 diff --git a/src/main.c b/src/main.c index b566e82..4af6dae 100644 --- a/src/main.c +++ b/src/main.c @@ -759,8 +759,8 @@ int socket_name_random(char *out, size_t out_len); /* Version information (auto-updated by build/version tooling) */ #define NSIGNER_VERSION_MAJOR 0 #define NSIGNER_VERSION_MINOR 0 -#define NSIGNER_VERSION_PATCH 54 -#define NSIGNER_VERSION "v0.0.54" +#define NSIGNER_VERSION_PATCH 55 +#define NSIGNER_VERSION "v0.0.55" /* NSIGNER_HEADERLESS_DECLS_END */ @@ -1592,8 +1592,6 @@ static void render_status(const role_table_t *role_table, tui_clear_continuous(size.height); tui_render_top_frame(&frame, size.width); - tui_print("Press ^_d^ for connection instructions"); - tui_print(""); tui_print("^*Roles^:"); if (role_table == NULL || role_table->count == 0) { tui_print("(none)");