diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a950d9..c648b9eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ # Changelog +## v0.12.18 - 2026-06-01 +### 🐞 Fixes +- [Patch] Added occlusion debug viewer (36160da…) +- [Patch] Hierarchy-aware tile culling (5a47bb2…) +- [Patch] Added ancestor walk to hierarchy occlusion (49fd65b…) +- [Patch] Use a closest-point to parent AABB (43a84b6…) +- [Patch] Implemented kd-tree partitioning (06fcc75…) +- [Patch] Improved per-cascade shadow distance (0645690…) +- [Patch] [Patch] Fix hierarchy culling ID format and replace hard-skip with penalty (dcd21ba…) +### 📚 Docs +- [Docs] Updated the docs (07c55ed…) ## v0.12.17 - 2026-05-30 ### 🐞 Fixes - [Patch] Fixed stream profiler (abd8e4b…) diff --git a/README.md b/README.md index 9a86ee33..3dc7035c 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.12.17 +git checkout v0.12.18 swift run untolddemo ``` diff --git a/Sources/DemoGame/AppDelegate.swift b/Sources/DemoGame/AppDelegate.swift index abee55b4..1721a802 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.12.17" + static let appVersion = "0.12.18" 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 24a6ff55..2c6d650b 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.12.17" + static let appVersion = "0.12.18" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index e60f865a..33b12320 100644 --- a/Sources/UntoldEngine/Renderer/UntoldEngine.swift +++ b/Sources/UntoldEngine/Renderer/UntoldEngine.swift @@ -181,7 +181,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate { BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced) #endif - Logger.log(message: "Untold Engine Starting. Version 0.12.17") + Logger.log(message: "Untold Engine Starting. Version 0.12.18") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index 3ed05cb7..c8a03a04 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.12.17 +git checkout v0.12.18 swift run untolddemo ```