From e8c253d953dfd719dabae55f8407949d126fa488 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 20 May 2026 10:01:09 +0200 Subject: [PATCH] =?UTF-8?q?Copyrights:=20barrido=20mec=C3=A1nico=20fuera?= =?UTF-8?q?=20de=20source/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Misma normalización aplicada al resto del árbol: cabeceras de data/ (shapes y stages), tooling, plist de macOS y los ejemplos del CLAUDE.md. Todos pasan a "© 2026 JailDesigner". Detalle: - data/shapes/{ship3,star,enemy_pinwheel}.shp: cabeceras unificadas. - data/stages/stages.yaml: cabecera unificada. - tools/pack_resources/pack_resources.cpp: cabecera unificada. - release/macos/Info.plist: NSHumanReadableCopyright actualizado. - CLAUDE.md: snippets de PROJECT_COPYRIGHT, project.h y window title puestos al día (eran ejemplos con valores stale del esquema anterior). Las menciones narrativas en README.md y CLAUDE.md sobre el origen Pascal 1999 se mantienen deliberadamente — son historia del proyecto, no declaraciones de copyright. SDL3 vendoreado y source/legacy/ tampoco se tocan. Co-Authored-By: Claude Opus 4.7 (1M context) --- CLAUDE.md | 6 +++--- data/shapes/enemy_pinwheel.shp | 2 +- data/shapes/ship3.shp | 2 +- data/shapes/star.shp | 2 +- data/stages/stages.yaml | 2 +- release/macos/Info.plist | 2 +- tools/pack_resources/pack_resources.cpp | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 590c9f9..9462cc3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -61,7 +61,7 @@ make rpi_release # Raspberry Pi ARM64 cross-compile ```cmake project(orni VERSION 0.3.0) set(PROJECT_LONG_NAME "Orni Attack") -set(PROJECT_COPYRIGHT "© 1999 Visente i Sergi, 2025 Port") +set(PROJECT_COPYRIGHT "© 2026 JailDesigner") ``` **Auto-generated** `build/project.h`: @@ -71,12 +71,12 @@ namespace Project { constexpr const char* NAME = "orni"; constexpr const char* LONG_NAME = "Orni Attack"; constexpr const char* VERSION = "0.3.0"; - constexpr const char* COPYRIGHT = "© 1999 Visente i Sergi, 2025 Port"; + constexpr const char* COPYRIGHT = "© 2026 JailDesigner"; constexpr const char* GIT_HASH = "abc1234"; // From git rev-parse } ``` -**Window title** (dynamic): `Orni Attack v0.3.0 (© 1999 Visente i Sergi, 2025 Port)` +**Window title** (estático): `© 2026 Orni Attack — JailDesigner` ### File Discovery diff --git a/data/shapes/enemy_pinwheel.shp b/data/shapes/enemy_pinwheel.shp index f625f8d..9747af1 100644 --- a/data/shapes/enemy_pinwheel.shp +++ b/data/shapes/enemy_pinwheel.shp @@ -1,5 +1,5 @@ # enemy_pinwheel.shp - ORNI enemic (molinillo de 4 triangles) -# © 2025 Port a C++20 amb SDL3 +# © 2026 JailDesigner name: enemy_pinwheel scale: 1.0 diff --git a/data/shapes/ship3.shp b/data/shapes/ship3.shp index bc85e5a..998a4a6 100644 --- a/data/shapes/ship3.shp +++ b/data/shapes/ship3.shp @@ -1,5 +1,5 @@ # ship2.shp - Nau del jugador 2 (interceptor amb ales) -# © 2025 Orni Attack - Jugador 2 +# © 2026 JailDesigner name: ship2 scale: 1.0 diff --git a/data/shapes/star.shp b/data/shapes/star.shp index 749de82..cc04a19 100644 --- a/data/shapes/star.shp +++ b/data/shapes/star.shp @@ -1,5 +1,5 @@ # star.shp - Estrella per a starfield -# © 2025 Orni Attack +# © 2026 JailDesigner name: star scale: 1.0 diff --git a/data/stages/stages.yaml b/data/stages/stages.yaml index b1bb66c..d2eee4f 100644 --- a/data/stages/stages.yaml +++ b/data/stages/stages.yaml @@ -1,5 +1,5 @@ # stages.yaml - Configuració de les 10 etapes d'Orni Attack -# © 2025 Orni Attack +# © 2026 JailDesigner metadata: version: "1.0" diff --git a/release/macos/Info.plist b/release/macos/Info.plist index 2b03629..48f5653 100644 --- a/release/macos/Info.plist +++ b/release/macos/Info.plist @@ -33,7 +33,7 @@ NSHighResolutionCapable NSHumanReadableCopyright - © 1999 Visente i Sergi, 2025 Port + © 2026 JailDesigner NSPrincipalClass NSApplication SUPublicDSAKeyFile diff --git a/tools/pack_resources/pack_resources.cpp b/tools/pack_resources/pack_resources.cpp index 675dc48..8051ea9 100644 --- a/tools/pack_resources/pack_resources.cpp +++ b/tools/pack_resources/pack_resources.cpp @@ -1,5 +1,5 @@ // pack_resources.cpp - Utilitat per crear paquets de recursos -// © 2025 Orni Attack +// © 2026 JailDesigner #include "../../source/core/resources/resource_pack.hpp"