v0.2.53 - Add signer_health.c to Dockerfile.alpine-musl source list (was missing, causing static build failure)

This commit is contained in:
Didactyl User
2026-07-10 19:18:43 -04:00
parent 3ed3733b76
commit b3534e6eee
3 changed files with 5 additions and 5 deletions

View File

@@ -123,7 +123,7 @@ RUN NOSTR_LIB=$(ls /build/nostr_core_lib/libnostr_core_*.a 2>/dev/null | head -1
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/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/json_to_markdown.c src/context_roles.c src/context_format.c src/signer_health.c \
-o /build/didactyl_static \
$NOSTR_LIB \
-lsecp256k1 \

View File

@@ -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.52
## Current Status — v0.2.53
**Active build — this project is barely working. Experiment at your own risk.**
> Last release update: v0.2.52Fix trigger manager bypassing skill adoption list — cron/webhook triggers now only fire for adopted and enabled skills
> Last release update: v0.2.53Add signer_health.c to Dockerfile.alpine-musl source list (was missing, causing static build failure)
- Connects to configured relays with auto-reconnect and relay state transition logging
- Publishes configured startup events per relay as each relay becomes connected

View File

@@ -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 52
#define DIDACTYL_VERSION "v0.2.52"
#define DIDACTYL_VERSION_PATCH 53
#define DIDACTYL_VERSION "v0.2.53"
// Agent metadata
#define DIDACTYL_NAME "Didactyl"