From 615fd03e51b4ef18f5afa0ef0964f58ae62a1d2d Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Mon, 13 Apr 2026 01:31:41 +0200 Subject: [PATCH] fix: printf format, paths WSL actualizados y repo_url en app.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrige fprintf que usaba %s con std::string sin .c_str(). Actualiza path WSL en el launcher PowerShell a Ubuntu-22.04. AƱade repo_url en app.md apuntando al repo en Gitea. Co-Authored-By: Claude Opus 4.6 (1M context) --- app.md | 2 +- main.cpp | 2 +- registry_dashboard.ps1 | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app.md b/app.md index b1fab9a..76cd35b 100644 --- a/app.md +++ b/app.md @@ -18,7 +18,7 @@ uses_types: [] framework: "imgui" entry_point: "main.cpp" dir_path: "apps/registry_dashboard" -repo_url: "" +repo_url: "https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/dataforge/registry_dashboard" --- ## Arquitectura diff --git a/main.cpp b/main.cpp index 43b311a..13368a6 100644 --- a/main.cpp +++ b/main.cpp @@ -61,7 +61,7 @@ int main(int argc, char** argv) { fprintf(stdout, "Using: %s\n", g_db_path.c_str()); break; } - fprintf(stderr, "Not found: %s\n", candidate); + fprintf(stderr, "Not found: %s\n", candidate.c_str()); } if (g_db_path.empty()) { diff --git a/registry_dashboard.ps1 b/registry_dashboard.ps1 index d906aa0..ea2022e 100644 --- a/registry_dashboard.ps1 +++ b/registry_dashboard.ps1 @@ -1,6 +1,5 @@ $exe = Join-Path $PSScriptRoot "registry_dashboard.exe" & $exe ` - "\\wsl.localhost\Ubuntu\home\lucas\fn_registry\registry.db" ` - "\\wsl$\Ubuntu\home\lucas\fn_registry\registry.db" ` - "$PSScriptRoot\registry.db" + "\\wsl.localhost\Ubuntu-22.04\home\lucas\fn_registry\registry.db" ` +