diff --git a/Dockerfile.alpine-musl b/Dockerfile.alpine-musl index 45a15d3..4ecb83d 100644 --- a/Dockerfile.alpine-musl +++ b/Dockerfile.alpine-musl @@ -122,7 +122,7 @@ RUN NOSTR_LIB=$(ls /build/nostr_core_lib/libnostr_core_*.a 2>/dev/null | head -1 src/tools/tool_nostr_query.c src/tools/tool_nostr_my_events.c src/tools/tool_nostr_identity.c src/tools/tool_nostr_social.c \ src/tools/tool_nostr_relay.c src/tools/tool_nostr_dm.c src/tools/tool_admin.c \ src/tools/tool_task.c src/tools/tool_nostr_list.c src/tools/tool_nostr_block.c src/tools/tool_local.c \ - src/tools/tool_skill.c src/tools/tool_nostr_post.c src/tools/tool_memory.c src/tools/tool_config.c src/tools/tool_cashu_wallet.c src/tools/tool_blossom.c src/trigger_manager.c \ + src/tools/tool_skill.c src/tools/tool_nostr_post.c src/tools/tool_memory.c src/tools/tool_config.c src/tools/tool_cashu_wallet.c src/tools/tool_blossom.c src/tools/tool_signer_crypto.c src/trigger_manager.c \ src/cashu_wallet.c src/nostr_block_list.c src/prompt_template.c src/http_api.c src/setup_wizard.c src/mongoose.c src/debug.c \ src/json_to_markdown.c src/context_roles.c src/context_format.c src/signer_health.c \ -o /build/didactyl_static \ diff --git a/README.md b/README.md index 4abd14a..d72d6b2 100644 --- a/README.md +++ b/README.md @@ -54,11 +54,11 @@ Skills compose by adoption-list order (`10123`) and trigger tags carry runtime e Didactyl will support local inference, which is very privacy preserving. Remote inference does however have it's advantages, and in those cases Didactyl supports using Bitcoin Lightning and eCash inference providers. -## Current Status — v0.2.62 +## Current Status — v0.2.63 **Active build — this project is barely working. Experiment at your own risk.** -> Last release update: v0.2.62 — Skill picker cycles X(enabled)→E(edit)→ (disabled); edit mode prompts for new content +> Last release update: v0.2.63 — Fix Dockerfile: add missing tool_signer_crypto.c to static build source list - Connects to configured relays with auto-reconnect and relay state transition logging - Publishes configured startup events per relay as each relay becomes connected diff --git a/plans/browser_didactyl.md b/didactyl_browser/browser_didactyl.md similarity index 100% rename from plans/browser_didactyl.md rename to didactyl_browser/browser_didactyl.md diff --git a/src/main.h b/src/main.h index 9b59124..99f9b32 100644 --- a/src/main.h +++ b/src/main.h @@ -12,8 +12,8 @@ // Using DIDACTYL_ prefix to avoid conflicts with nostr_core_lib VERSION macros #define DIDACTYL_VERSION_MAJOR 0 #define DIDACTYL_VERSION_MINOR 2 -#define DIDACTYL_VERSION_PATCH 62 -#define DIDACTYL_VERSION "v0.2.62" +#define DIDACTYL_VERSION_PATCH 63 +#define DIDACTYL_VERSION "v0.2.63" // Agent metadata #define DIDACTYL_NAME "Didactyl"