chore: auto-commit (4 archivos)

- data.h
- data_http.cpp
- views.cpp
- appicon.ico

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-16 16:33:25 +02:00
parent 9cbf2f7492
commit 04cfa2aba0
4 changed files with 136 additions and 3 deletions
+2 -1
View File
@@ -373,7 +373,7 @@ bool load_all_functions_http(const std::string& api_url,
HttpClient cli(host, port);
auto j = api_query(cli,
"SELECT id, name, lang, domain, kind, purity, description, "
"created_at, tested FROM functions ORDER BY name");
"created_at, tested, uses_functions FROM functions ORDER BY name");
if (j.is_null() || !j.contains("rows")) return false;
out.clear();
@@ -389,6 +389,7 @@ bool load_all_functions_http(const std::string& api_url,
r.description = extract_str(row, 6);
r.created_at = extract_str(row, 7);
r.tested = extract_row_int(row, 8) != 0;
r.uses_functions = extract_str(row, 9);
out.push_back(std::move(r));
}
return true;