From ae8f476c84b737ed02214f8511c00f3f7b70466e Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Mon, 1 Jun 2026 13:52:22 +0200 Subject: [PATCH] =?UTF-8?q?VERSI=C3=93=202.1.4:=20-=20[NEW]=20Mostra=20tot?= =?UTF-8?q?s=20els=20targets=20posibles,=20marcant=20el=20que=20est=C3=A1?= =?UTF-8?q?=20usant.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- main.cpp | 10 +++++++--- version.h | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index ca3a808..f008a10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ lagueirto .vscode/* *.exe -*.zip \ No newline at end of file +*.zip +build/* \ No newline at end of file diff --git a/main.cpp b/main.cpp index ac9d209..d1159ab 100644 --- a/main.cpp +++ b/main.cpp @@ -176,14 +176,18 @@ bool loadLagueirtoFile(const std::string §ion_to_load) if (end == std::string::npos) continue; current_section = line.substr(1, end - 1); - // Detectar si es default std::string rest = trim_copy(line.substr(end + 1)); found_any_section = true; if (rest == "default") found_default = true; if (section_to_load.empty() && rest == "default") active = true; else active = (current_section == section_to_load); - if (active) loaded_section = current_section; + if (active) { + loaded_section = current_section; + std::cout << " > " << current_section << " < " << std::endl; + } else { + std::cout << " - " << current_section << std::endl; + } continue; } @@ -546,7 +550,7 @@ std::cout << " |___/ v" << LAGUEIRTO_VERSION << std::endl; } if (must_recompile_all) { - std::cout << "remove: '" << build_path << "'" << std::endl; + std::cout << "Doing a full rebuild" << std::endl; std::filesystem::remove_all(build_path); } diff --git a/version.h b/version.h index ff2d8a9..0210e67 100644 --- a/version.h +++ b/version.h @@ -1,3 +1,3 @@ #pragma once -#define LAGUEIRTO_VERSION "2.1.3" +#define LAGUEIRTO_VERSION "2.1.4"