From decd976d0365c16cb37b5c9e475d028863259752 Mon Sep 17 00:00:00 2001 From: konstantysz Date: Sun, 15 Feb 2026 20:53:48 +0100 Subject: [PATCH 1/3] Change headers parent folder to Kappa --- include/{ => Kappa}/Application.h | 0 include/{ => Kappa}/Event.h | 0 include/{ => Kappa}/EventBus.h | 0 include/{ => Kappa}/Layer.h | 0 include/{ => Kappa}/Logger.h | 0 include/{ => Kappa}/Texture.h | 0 include/{ => Kappa}/Version.h | 0 include/{ => Kappa}/Window.h | 0 include/{ => Kappa}/WindowStatePersistence.h | 0 src/Application.cpp | 4 ++-- src/Texture.cpp | 2 +- src/Window.cpp | 4 ++-- src/WindowStatePersistence.cpp | 4 ++-- 13 files changed, 7 insertions(+), 7 deletions(-) rename include/{ => Kappa}/Application.h (100%) rename include/{ => Kappa}/Event.h (100%) rename include/{ => Kappa}/EventBus.h (100%) rename include/{ => Kappa}/Layer.h (100%) rename include/{ => Kappa}/Logger.h (100%) rename include/{ => Kappa}/Texture.h (100%) rename include/{ => Kappa}/Version.h (100%) rename include/{ => Kappa}/Window.h (100%) rename include/{ => Kappa}/WindowStatePersistence.h (100%) diff --git a/include/Application.h b/include/Kappa/Application.h similarity index 100% rename from include/Application.h rename to include/Kappa/Application.h diff --git a/include/Event.h b/include/Kappa/Event.h similarity index 100% rename from include/Event.h rename to include/Kappa/Event.h diff --git a/include/EventBus.h b/include/Kappa/EventBus.h similarity index 100% rename from include/EventBus.h rename to include/Kappa/EventBus.h diff --git a/include/Layer.h b/include/Kappa/Layer.h similarity index 100% rename from include/Layer.h rename to include/Kappa/Layer.h diff --git a/include/Logger.h b/include/Kappa/Logger.h similarity index 100% rename from include/Logger.h rename to include/Kappa/Logger.h diff --git a/include/Texture.h b/include/Kappa/Texture.h similarity index 100% rename from include/Texture.h rename to include/Kappa/Texture.h diff --git a/include/Version.h b/include/Kappa/Version.h similarity index 100% rename from include/Version.h rename to include/Kappa/Version.h diff --git a/include/Window.h b/include/Kappa/Window.h similarity index 100% rename from include/Window.h rename to include/Kappa/Window.h diff --git a/include/WindowStatePersistence.h b/include/Kappa/WindowStatePersistence.h similarity index 100% rename from include/WindowStatePersistence.h rename to include/Kappa/WindowStatePersistence.h diff --git a/src/Application.cpp b/src/Application.cpp index ac514a8..13ace77 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -1,11 +1,11 @@ -#include "Application.h" +#include "Kappa/Application.h" #include #include #include -#include "Logger.h" +#include "Kappa/Logger.h" namespace Kappa { diff --git a/src/Texture.cpp b/src/Texture.cpp index d790f14..dad96af 100644 --- a/src/Texture.cpp +++ b/src/Texture.cpp @@ -1,4 +1,4 @@ -#include "Texture.h" +#include "Kappa/Texture.h" namespace Kappa { diff --git a/src/Window.cpp b/src/Window.cpp index 3fe46ce..f8929a2 100644 --- a/src/Window.cpp +++ b/src/Window.cpp @@ -1,6 +1,6 @@ -#include "Window.h" +#include "Kappa/Window.h" -#include "Logger.h" +#include "Kappa/Logger.h" namespace Kappa { diff --git a/src/WindowStatePersistence.cpp b/src/WindowStatePersistence.cpp index 4e17bb0..4da4fd8 100644 --- a/src/WindowStatePersistence.cpp +++ b/src/WindowStatePersistence.cpp @@ -1,5 +1,5 @@ -#include "WindowStatePersistence.h" -#include "Logger.h" +#include "Kappa/WindowStatePersistence.h" +#include "Kappa/Logger.h" #include #include From e75fd2f53ccd182b50c245b66454e6def20c4cfb Mon Sep 17 00:00:00 2001 From: konstantysz Date: Sun, 15 Feb 2026 20:59:15 +0100 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 568db15..15c48b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.0] - 2026-02-15 + +- Change headers parent folder to Kappa + +## [0.5.3] - 2025-11-26 + +### Fixed + +- Fix documentation build directory + +## [0.5.2] - 2025-11-26 + +### Added + +- Enable set logger name + ## [0.5.1] - 2025-11-22 ### Fixed @@ -127,6 +143,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CMake build system - Example application demonstrating framework usage +[0.6.0]: https://github.com/Konstantysz/kappa-core/compare/v0.5.3...v0.6.0 +[0.5.3]: https://github.com/Konstantysz/kappa-core/compare/v0.5.2...v0.5.3 +[0.5.2]: https://github.com/Konstantysz/kappa-core/compare/v0.5.1...v0.5.2 +[0.5.1]: https://github.com/Konstantysz/kappa-core/compare/v0.5.0...v0.5.1 +[0.5.0]: https://github.com/Konstantysz/kappa-core/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/Konstantysz/kappa-core/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/Konstantysz/kappa-core/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/Konstantysz/kappa-core/compare/v0.2.2...v0.3.0 From 10eb4bb87c7c4ffca44b3e6cb5b7a1fde98a31ce Mon Sep 17 00:00:00 2001 From: konstantysz Date: Sun, 15 Feb 2026 21:01:32 +0100 Subject: [PATCH 3/3] Update includes --- examples/events/main.cpp | 8 ++++---- examples/layers/main.cpp | 6 +++--- examples/minimal/main.cpp | 6 +++--- tests/TestApplication.cpp | 5 +++-- tests/TestEventBus.cpp | 5 +++-- tests/TestLayer.cpp | 4 ++-- tests/TestSimple.cpp | 1 + tests/TestWindow.cpp | 4 ++-- tests/TestWindowStatePersistence.cpp | 7 ++++--- 9 files changed, 25 insertions(+), 21 deletions(-) diff --git a/examples/events/main.cpp b/examples/events/main.cpp index 5852551..2a88e52 100644 --- a/examples/events/main.cpp +++ b/examples/events/main.cpp @@ -1,7 +1,7 @@ -#include "Application.h" -#include "EventBus.h" -#include "Layer.h" -#include "Logger.h" +#include "Kappa/Application.h" +#include "Kappa/EventBus.h" +#include "Kappa/Layer.h" +#include "Kappa/Logger.h" #include #include diff --git a/examples/layers/main.cpp b/examples/layers/main.cpp index 7ae6649..eea4b85 100644 --- a/examples/layers/main.cpp +++ b/examples/layers/main.cpp @@ -1,6 +1,6 @@ -#include "Application.h" -#include "Layer.h" -#include "Logger.h" +#include "Kappa/Application.h" +#include "Kappa/Layer.h" +#include "Kappa/Logger.h" #include diff --git a/examples/minimal/main.cpp b/examples/minimal/main.cpp index f2cf5df..cb7cf01 100644 --- a/examples/minimal/main.cpp +++ b/examples/minimal/main.cpp @@ -1,6 +1,6 @@ -#include "Application.h" -#include "Layer.h" -#include "Logger.h" +#include "Kappa/Application.h" +#include "Kappa/Layer.h" +#include "Kappa/Logger.h" #include diff --git a/tests/TestApplication.cpp b/tests/TestApplication.cpp index a000d2a..ebc1753 100644 --- a/tests/TestApplication.cpp +++ b/tests/TestApplication.cpp @@ -1,8 +1,9 @@ -#include "Application.h" -#include "Layer.h" +#include "Kappa/Application.h" +#include "Kappa/Layer.h" #include #include + #include using namespace Kappa; diff --git a/tests/TestEventBus.cpp b/tests/TestEventBus.cpp index f26e84a..2c6aab3 100644 --- a/tests/TestEventBus.cpp +++ b/tests/TestEventBus.cpp @@ -1,7 +1,8 @@ -#include "Event.h" -#include "EventBus.h" +#include "Kappa/Event.h" +#include "Kappa/EventBus.h" #include + #include using namespace Kappa; diff --git a/tests/TestLayer.cpp b/tests/TestLayer.cpp index b1370e9..531f7f7 100644 --- a/tests/TestLayer.cpp +++ b/tests/TestLayer.cpp @@ -1,5 +1,5 @@ -#include "Event.h" -#include "Layer.h" +#include "Kappa/Event.h" +#include "Kappa/Layer.h" #include diff --git a/tests/TestSimple.cpp b/tests/TestSimple.cpp index d65cba2..f4a87b8 100644 --- a/tests/TestSimple.cpp +++ b/tests/TestSimple.cpp @@ -1,4 +1,5 @@ #include + #include // Minimal test to isolate the problem - NO kappa headers at all diff --git a/tests/TestWindow.cpp b/tests/TestWindow.cpp index 48e57eb..1b698ac 100644 --- a/tests/TestWindow.cpp +++ b/tests/TestWindow.cpp @@ -1,5 +1,5 @@ -#include "Logger.h" -#include "Window.h" +#include "Kappa/Logger.h" +#include "Kappa/Window.h" #include diff --git a/tests/TestWindowStatePersistence.cpp b/tests/TestWindowStatePersistence.cpp index bcf0976..2795fd8 100644 --- a/tests/TestWindowStatePersistence.cpp +++ b/tests/TestWindowStatePersistence.cpp @@ -1,9 +1,10 @@ -#include "Window.h" -#include "WindowStatePersistence.h" +#include "Kappa/Window.h" +#include "Kappa/WindowStatePersistence.h" + +#include #include #include -#include using namespace Kappa;