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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
## v0.13.1 - 2026-06-10
### 🐞 Fixes
- [Patch] Implemented MSAA (ec63a6c…)
- [Patch] Fixed no entity found error messages (c07c3bc…)
- [Patch] Fixed streaming swap warning messages (60676fe…)
- [Patch] Implemented splats TBDR (ecec3b9…)
- [Patch] Removed legacy gaussian splat architecture (29c74b7…)
- [Patch] Added pick participation channel (5ca25d5…)
## v0.13.0 - 2026-06-02
### 🐞 Fixes
- [Patch] Derive batch cell size from actual tile extents in quadtree/KD-tree manifests (86c00bf…)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
git checkout v0.13.1
swift run untolddemo
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/DemoGame/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@MainActor
final class AppDelegate: NSObject, NSApplicationDelegate {
private enum Constants {
static let appVersion = "0.13.0"
static let appVersion = "0.13.1"
static let defaultWindowSize = NSSize(width: 1920, height: 1080)
static let minimumWindowSize = NSSize(width: 640, height: 480)
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sandbox/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@MainActor
final class AppDelegate: NSObject, NSApplicationDelegate {
private enum Constants {
static let appVersion = "0.13.0"
static let appVersion = "0.13.1"
static let windowSize = NSSize(width: 1600, height: 900)
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/UntoldEngine/Renderer/UntoldEngine.swift
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate {
BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced)
#endif

Logger.log(message: "Untold Engine Starting. Version 0.13.0")
Logger.log(message: "Untold Engine Starting. Version 0.13.1")
}

public func initSizeableResources() {
Expand Down
2 changes: 1 addition & 1 deletion docs/API/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
git checkout v0.13.1
swift run untolddemo
```

Expand Down
Loading