Skip to content

Commit 58d3b65

Browse files
committed
[Release] Preparing release 0.12.18
1 parent 07c55ed commit 58d3b65

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
## v0.12.18 - 2026-06-01
3+
### 🐞 Fixes
4+
- [Patch] Added occlusion debug viewer (36160da…)
5+
- [Patch] Hierarchy-aware tile culling (5a47bb2…)
6+
- [Patch] Added ancestor walk to hierarchy occlusion (49fd65b…)
7+
- [Patch] Use a closest-point to parent AABB (43a84b6…)
8+
- [Patch] Implemented kd-tree partitioning (06fcc75…)
9+
- [Patch] Improved per-cascade shadow distance (0645690…)
10+
- [Patch] [Patch] Fix hierarchy culling ID format and replace hard-skip with penalty (dcd21ba…)
11+
### 📚 Docs
12+
- [Docs] Updated the docs (07c55ed…)
213
## v0.12.17 - 2026-05-30
314
### 🐞 Fixes
415
- [Patch] Fixed stream profiler (abd8e4b…)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Clone the repository and launch the demo:
7676
```bash
7777
git clone https://github.com/untoldengine/UntoldEngine.git
7878
cd UntoldEngine
79-
git checkout v0.12.17
79+
git checkout v0.12.18
8080
swift run untolddemo
8181
```
8282

Sources/DemoGame/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@MainActor
1212
final class AppDelegate: NSObject, NSApplicationDelegate {
1313
private enum Constants {
14-
static let appVersion = "0.12.17"
14+
static let appVersion = "0.12.18"
1515
static let defaultWindowSize = NSSize(width: 1920, height: 1080)
1616
static let minimumWindowSize = NSSize(width: 640, height: 480)
1717
}

Sources/Sandbox/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@MainActor
1111
final class AppDelegate: NSObject, NSApplicationDelegate {
1212
private enum Constants {
13-
static let appVersion = "0.12.17"
13+
static let appVersion = "0.12.18"
1414
static let windowSize = NSSize(width: 1600, height: 900)
1515
}
1616

Sources/UntoldEngine/Renderer/UntoldEngine.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate {
181181
BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced)
182182
#endif
183183

184-
Logger.log(message: "Untold Engine Starting. Version 0.12.17")
184+
Logger.log(message: "Untold Engine Starting. Version 0.12.18")
185185
}
186186

187187
public func initSizeableResources() {

docs/API/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Clone the repository and launch the demo:
2727
```bash
2828
git clone https://github.com/untoldengine/UntoldEngine.git
2929
cd UntoldEngine
30-
git checkout v0.12.17
30+
git checkout v0.12.18
3131
swift run untolddemo
3232
```
3333

0 commit comments

Comments
 (0)