diff --git a/CHANGELOG.md b/CHANGELOG.md index ceedb8ce..642d120c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,46 @@ # Changelog +## v0.13.2 - 2026-06-18 +### 🐞 Fixes +- [Patch] Added tile preview overlay for blender (4a31132…) +- [Patch] Add Blender tiled-scene metadata and LOD preview tools (2c1878a…) +- [Patch] Fix lod/hlod distances (1a77470…) +- [Patch] Improved lod overlay for uniform grid (e56c488…) +- [Patch] Fix LOD/HLOD gen for spanning tiles and add force_local override (0d3d544…) +- [Patch] Use manifest cell_bounds for tile debug overlay (31a9340…) +- [Patch] Updated the default values in the overlay (5097b7f…) +- [Patch] Tile Floor Fill visibility toggle (9092aea…) +- [Patch] Added progress bar to tile exporter (278b3f8…) +- [Patch] Improve tiled LOD0 handoff diagnostics and fallback coverage (02ff6da…) +- [Patch] Fix tiled LOD fallback retention during visibility handoff (8469998…) +- [Patch] Add tile streaming log category coverage (0dc402b…) +- [Patch] Added Lod cross fade dithering (47d392f…) +- [Patch] Fixed popping after cross fade implementation (d3361da…) +- [Patch] Update Engine API documentation and settings (22a5980…) +- [Patch] Updated additional APIs (9b956e0…) +- [Patch] Improved API (83d5a60…) +- [Patch] Engine HLOD replacement fix + test (58ae514…) +- [Patch] Add tile representation render diagnostics (9d5e793…) +- [Patch]Collapse underfilled quadtree tile-tier groups (5ca53d7…) +- [Patch] Fixed area light math (3b78333…) +- [Patch] Clamped spotlight parameters (dcd6d08…) +- [Patch] Clamped point lights parameters (e5cb8f0…) +- [Patch] Fixed cascade shadows (2447cb5…) +- [Patch] Import-export light from Blender (f2f8f81…) +- [Patch] New API for directional light (e51928f…) +- [Patch] Color correction fix (aee1c1a…) +- [Patch] Fixed issue with dir light not getting set (f6a97ec…) +- [Patch] Added scene author lights and camera to tiles (251c3b7…) +- [Patch] make runtime camera lookup deterministic when multiple CameraComponents exist (4d65ba3…) +- [Patch] Include lights and cameras in Blender add-on exports (17ddc04…) +- [Patch] added function to load authored scene (57858f9…) +- [Patch] Fixed area light import math (a557094…) +- [Patch] Fixed area light direction (2f10a3d…) +- [Patch] Fixed roughness and metallic export (86032bb…) +- [Patch] Add user custom scene channels and prefix mapping (bfc57e0…) +### 📚 Docs +- [Docs] Updated add-on script documentation (fa46413…) +- [Docs] Updated docs with example (b4db01e…) +- [Docs] Updated documentation (5ada000…) ## v0.13.1 - 2026-06-10 ### 🐞 Fixes - [Patch] Implemented MSAA (ec63a6c…) diff --git a/README.md b/README.md index e813eb6c..a2ec42d9 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Clone the repository and launch the demo: ```bash git clone https://github.com/untoldengine/UntoldEngine.git cd UntoldEngine -git checkout v0.13.1 +git checkout v0.13.2 swift run untolddemo ``` diff --git a/Sources/DemoGame/AppDelegate.swift b/Sources/DemoGame/AppDelegate.swift index 9f77c54e..9333d40f 100644 --- a/Sources/DemoGame/AppDelegate.swift +++ b/Sources/DemoGame/AppDelegate.swift @@ -11,7 +11,7 @@ @MainActor final class AppDelegate: NSObject, NSApplicationDelegate { private enum Constants { - static let appVersion = "0.13.1" + static let appVersion = "0.13.2" static let defaultWindowSize = NSSize(width: 1920, height: 1080) static let minimumWindowSize = NSSize(width: 640, height: 480) } diff --git a/Sources/Sandbox/AppDelegate.swift b/Sources/Sandbox/AppDelegate.swift index 44b33603..7756e6b6 100644 --- a/Sources/Sandbox/AppDelegate.swift +++ b/Sources/Sandbox/AppDelegate.swift @@ -10,7 +10,7 @@ @MainActor final class AppDelegate: NSObject, NSApplicationDelegate { private enum Constants { - static let appVersion = "0.13.1" + static let appVersion = "0.13.2" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index 53ebbb3a..1f7c90c4 100644 --- a/Sources/UntoldEngine/Renderer/UntoldEngine.swift +++ b/Sources/UntoldEngine/Renderer/UntoldEngine.swift @@ -182,7 +182,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate { BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced) #endif - Logger.log(message: "Untold Engine Starting. Version 0.13.1") + Logger.log(message: "Untold Engine Starting. Version 0.13.2") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index aa586883..d853ce57 100644 --- a/docs/API/GettingStarted.md +++ b/docs/API/GettingStarted.md @@ -27,7 +27,7 @@ Clone the repository and launch the demo: ```bash git clone https://github.com/untoldengine/UntoldEngine.git cd UntoldEngine -git checkout v0.13.1 +git checkout v0.13.2 swift run untolddemo ```