From 14e1a0d067010c08c4749ecf96fc9df17076d997 Mon Sep 17 00:00:00 2001 From: Untold Engine Date: Thu, 25 Jun 2026 05:39:23 -0700 Subject: [PATCH] [Release] Preparing version 0.13.3 --- CHANGELOG.md | 15 +++++++++++++++ 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, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 642d120c..641c412e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ # Changelog +## v0.13.3 - 2026-06-25 +### 🐞 Fixes +- [Patch] Add vision light probes (b2d1ff9…) +- [Patch] Added xr light probe contribution factor (708c22d…) +- [Patch] Add virtual light (c1cf311…) +- [Patch] Updated Engine API v2 (d9c6e57…) +- [Patch] processAnchoredPinchDragLifecycle now supports dragPlane (be493f2…) +- [Patch] Implemented the recursive material opacicty fix (adea187…) +- [Patch] Added support for drag-snapping (f4f4647…) +- [Patch] Route XR lighting through rendering settings (9bfe031…) +- [Patch] Serialize XR ARKit provider runs (7b5f115…) +- [Patch] Added light portal diagnostics (c0176bc…) +- [Patch] Harden recursive material updates and clarify drag constraints (76d4ecc…) +- [Patch] Fixed animations linkage with multiple meshes (cf4ce4a…) +- [Patch] Added support for additional input keys (cc8cf09…) ## v0.13.2 - 2026-06-18 ### 🐞 Fixes - [Patch] Added tile preview overlay for blender (4a31132…) diff --git a/README.md b/README.md index f2a610d1..0b6b6f76 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.2 +git checkout v0.13.3 swift run untolddemo ``` diff --git a/Sources/DemoGame/AppDelegate.swift b/Sources/DemoGame/AppDelegate.swift index 9333d40f..7b949964 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.2" + static let appVersion = "0.13.3" 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 7756e6b6..c28a3824 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.2" + static let appVersion = "0.13.3" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index c14c18fa..708b15f9 100644 --- a/Sources/UntoldEngine/Renderer/UntoldEngine.swift +++ b/Sources/UntoldEngine/Renderer/UntoldEngine.swift @@ -182,7 +182,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate { BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced) #endif - Logger.log(message: "Untold Engine Starting. Version 0.13.2") + Logger.log(message: "Untold Engine Starting. Version 0.13.3") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index d853ce57..00f99aaf 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.2 +git checkout v0.13.3 swift run untolddemo ```