Skip to content

Commit 11d7273

Browse files
committed
[Release] Preparing release 0.12.17
1 parent 0b2abbf commit 11d7273

6 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Changelog
2+
## v0.12.17 - 2026-05-30
3+
### 🐞 Fixes
4+
- [Patch] Fixed stream profiler (abd8e4b…)
5+
- [Patch] Fixe active count in profiler (bd52558…)
6+
- [Patch] Spread tile stub registration across frames to eliminate stall (9ff304f…)
7+
- [Patch] Skip transform recomp for static entities using a dirty flag (6bb82f4…)
8+
- [Patch] Skip traverseSceneGraph entirely when no transforms are dirty (a5b4d5b…)
9+
- [Patch] Updated scene channel funcion api (0b2abbf…)
10+
### 📚 Docs
11+
- [Docs] Update profiler documentation (087575c…)
212
## v0.12.16 - 2026-05-29
313
### 🐞 Fixes
414
- [Patch] Fix tile streaming fallback coverage for LOD/HLOD scenes (275ee1d…)

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.16
79+
git checkout v0.12.17
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.16"
14+
static let appVersion = "0.12.17"
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.16"
13+
static let appVersion = "0.12.17"
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.16")
184+
Logger.log(message: "Untold Engine Starting. Version 0.12.17")
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.16
30+
git checkout v0.12.17
3131
swift run untolddemo
3232
```
3333

0 commit comments

Comments
 (0)