v0.0.51 - Reduce terminal noise: suppress processes polling logs, remove perf-probe and inject success prints

This commit is contained in:
Laan Tungir
2026-07-19 15:44:00 -04:00
parent 3d32c64b0a
commit 618d52ff69
5 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
0.0.50
0.0.51
+5 -1
View File
@@ -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);
}
-1
View File
@@ -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");
}
-1
View File
@@ -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);
}
+2 -2
View File
@@ -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 */