diff --git a/VERSION b/VERSION index 85ab4c6..c4132bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.50 +0.0.51 diff --git a/src/nostr_bridge.c b/src/nostr_bridge.c index e1b2a6f..20d532d 100644 --- a/src/nostr_bridge.c +++ b/src/nostr_bridge.c @@ -3984,7 +3984,11 @@ static void on_sovereign_scheme(WebKitURISchemeRequest *request, * nostr bridge shim calls to avoid terminal spam. */ if (strncmp(uri, "sovereign://agents/status", 25) != 0 && strncmp(uri, "sovereign://agents/messages", 27) != 0 && - strncmp(uri, "sovereign://nostr/", 18) != 0) { + strncmp(uri, "sovereign://nostr/", 18) != 0 && + strncmp(uri, "sovereign://processes/list", 25) != 0 && + strncmp(uri, "sovereign://processes/tabs", 25) != 0 && + strncmp(uri, "sovereign://processes/probe-report", 33) != 0 && + strncmp(uri, "sovereign://processes/tab_probe", 30) != 0) { g_print("[bridge] %s\n", uri); } diff --git a/src/nostr_inject.c b/src/nostr_inject.c index 1a0da96..19ceab6 100644 --- a/src/nostr_inject.c +++ b/src/nostr_inject.c @@ -148,5 +148,4 @@ void nostr_inject_setup(WebKitWebView *webview) { /* The manager takes ownership of the script. */ webkit_user_script_unref(script); - g_print("[inject] window.nostr shim installed\n"); } diff --git a/src/perf_probe.c b/src/perf_probe.c index 1328bd1..bed285e 100644 --- a/src/perf_probe.c +++ b/src/perf_probe.c @@ -98,5 +98,4 @@ void perf_probe_setup(WebKitWebView *webview, int tab_index) { webkit_user_script_unref(probe_script); g_free(probe_js); - g_print("[perf-probe] perf probe installed for tab %d\n", tab_index); } diff --git a/src/version.h b/src/version.h index 3212d05..6f02321 100644 --- a/src/version.h +++ b/src/version.h @@ -11,9 +11,9 @@ #ifndef SOVEREIGN_BROWSER_VERSION_H #define SOVEREIGN_BROWSER_VERSION_H -#define SB_VERSION "v0.0.50" +#define SB_VERSION "v0.0.51" #define SB_VERSION_MAJOR 0 #define SB_VERSION_MINOR 0 -#define SB_VERSION_PATCH 50 +#define SB_VERSION_PATCH 51 #endif /* SOVEREIGN_BROWSER_VERSION_H */