Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions examples/events/main.cpp
Original file line number Diff line number Diff line change
@@ -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 <GLFW/glfw3.h>
#include <string>
Expand Down
6 changes: 3 additions & 3 deletions examples/layers/main.cpp
Original file line number Diff line number Diff line change
@@ -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 <GLFW/glfw3.h>

Expand Down
6 changes: 3 additions & 3 deletions examples/minimal/main.cpp
Original file line number Diff line number Diff line change
@@ -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 <glad/glad.h>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/Application.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#include "Application.h"
#include "Kappa/Application.h"

#include <cassert>

#include <GLFW/glfw3.h>
#include <glm/gtc/constants.hpp>

#include "Logger.h"
#include "Kappa/Logger.h"

namespace Kappa
{
Expand Down
2 changes: 1 addition & 1 deletion src/Texture.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Texture.h"
#include "Kappa/Texture.h"

namespace Kappa
{
Expand Down
4 changes: 2 additions & 2 deletions src/Window.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Window.h"
#include "Kappa/Window.h"

#include "Logger.h"
#include "Kappa/Logger.h"

namespace Kappa
{
Expand Down
4 changes: 2 additions & 2 deletions src/WindowStatePersistence.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "WindowStatePersistence.h"
#include "Logger.h"
#include "Kappa/WindowStatePersistence.h"
#include "Kappa/Logger.h"

#include <fstream>
#include <nlohmann/json.hpp>
Expand Down
5 changes: 3 additions & 2 deletions tests/TestApplication.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#include "Application.h"
#include "Layer.h"
#include "Kappa/Application.h"
#include "Kappa/Layer.h"

#include <GLFW/glfw3.h>
#include <gtest/gtest.h>

#include <memory>

using namespace Kappa;
Expand Down
5 changes: 3 additions & 2 deletions tests/TestEventBus.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#include "Event.h"
#include "EventBus.h"
#include "Kappa/Event.h"
#include "Kappa/EventBus.h"

#include <gtest/gtest.h>

#include <string>

using namespace Kappa;
Expand Down
4 changes: 2 additions & 2 deletions tests/TestLayer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "Event.h"
#include "Layer.h"
#include "Kappa/Event.h"
#include "Kappa/Layer.h"

#include <gtest/gtest.h>

Expand Down
1 change: 1 addition & 0 deletions tests/TestSimple.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <gtest/gtest.h>

#include <string>

// Minimal test to isolate the problem - NO kappa headers at all
Expand Down
4 changes: 2 additions & 2 deletions tests/TestWindow.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "Logger.h"
#include "Window.h"
#include "Kappa/Logger.h"
#include "Kappa/Window.h"

#include <gtest/gtest.h>

Expand Down
7 changes: 4 additions & 3 deletions tests/TestWindowStatePersistence.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#include "Window.h"
#include "WindowStatePersistence.h"
#include "Kappa/Window.h"
#include "Kappa/WindowStatePersistence.h"

#include <gtest/gtest.h>

#include <filesystem>
#include <fstream>
#include <gtest/gtest.h>

using namespace Kappa;

Expand Down
Loading