From 5d92c43527036dce3744a39d78e8c5ffaeaf67e8 Mon Sep 17 00:00:00 2001 From: Untold Engine Date: Wed, 10 Jun 2026 06:27:19 -0700 Subject: [PATCH] [Release] Preparing release 0.13.1 --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- Sources/DemoGame/AppDelegate.swift | 2 +- Sources/Sandbox/AppDelegate.swift | 2 +- Sources/UntoldEngine/Renderer/UntoldEngine.swift | 2 +- docs/API/GettingStarted.md | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f0e7b43..ceedb8ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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…) diff --git a/README.md b/README.md index 28dfae92..e813eb6c 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.0 +git checkout v0.13.1 swift run untolddemo ``` diff --git a/Sources/DemoGame/AppDelegate.swift b/Sources/DemoGame/AppDelegate.swift index ba7bf289..540dadd7 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.0" + static let appVersion = "0.13.1" 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 42638f29..44b33603 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.0" + static let appVersion = "0.13.1" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index e1068e65..8d1437dd 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.13.0") + Logger.log(message: "Untold Engine Starting. Version 0.13.1") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index 45df7564..a514687a 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.0 +git checkout v0.13.1 swift run untolddemo ```