v0.0.22 - Replace ncurses modal prompts with inline body input UX and document policy

This commit is contained in:
Laan Tungir
2026-05-20 19:58:42 -04:00
parent 0925a1ea59
commit 502a632a83
2 changed files with 3 additions and 3 deletions

View File

@@ -11,8 +11,8 @@
*/
#define NT_VERSION_MAJOR 0
#define NT_VERSION_MINOR 0
#define NT_VERSION_PATCH 21
#define NT_VERSION "v0.0.21"
#define NT_VERSION_PATCH 22
#define NT_VERSION "v0.0.22"
#include <ncurses.h>
#include <stdio.h>

View File

@@ -246,7 +246,7 @@ void menu_login(void) {
snprintf(endpoint_url, sizeof(endpoint_url), "%s", (saved_endpoint && saved_endpoint[0] != '\0') ? saved_endpoint : "");
(void)menu_prompt("> Login > URL Signer",
"Signer URL (http://<npub>.fips:8080)",
(saved_endpoint && saved_endpoint[0] != '\0') ? saved_endpoint : "",
"",
endpoint_url,
sizeof(endpoint_url));