feat(cpp,bash): app_about + Settings submenu, ensure_repo_synced pipeline
cpp/core: nuevo modulo app_about — ventana About con project/version/desc, componible via about_window_set_info() en el init de la app y rendererizada automaticamente por fn::run_app al final de cada frame. app_menubar: el item top-level "Settings..." pasa a ser un BeginMenu "Settings" con dos subitems: "Settings..." (existente) y "About..." (nuevo). bash/infra: nueva pipeline ensure_repo_synced que compone gitea_create_repo y gitea_push_directory para garantizar repo Gitea existente + sync de un directorio local en una sola llamada idempotente. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
#include "core/tokens.h"
|
||||
#include "core/icon_font.h"
|
||||
#include "core/app_settings.h"
|
||||
#include "core/app_about.h"
|
||||
#include "core/fps_overlay.h"
|
||||
|
||||
#include <GLFW/glfw3.h>
|
||||
@@ -131,6 +132,9 @@ int run_app(AppConfig config, std::function<void()> render_fn) {
|
||||
// Ventana de Settings (no-op si esta cerrada).
|
||||
fn_ui::settings_window_render();
|
||||
|
||||
// Ventana About (no-op si esta cerrada).
|
||||
fn_ui::about_window_render();
|
||||
|
||||
// FPS overlay si esta activado en Settings.
|
||||
if (fn_ui::settings().show_fps) {
|
||||
fps_overlay();
|
||||
|
||||
Reference in New Issue
Block a user