From 3bf9c3a136aaea5ce1341c22ae38625e055bb123 Mon Sep 17 00:00:00 2001 From: Untold Engine Date: Sun, 12 Jul 2026 07:44:11 -0700 Subject: [PATCH] [Release] Prepare release 0.14.1 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- Sources/Demos/ShowcaseDemo/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 0ecfe38c..1b7b1d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ # Changelog +## v0.14.1 - 2026-07-12 +### 🐞 Fixes +- [Patch] Add global asset export and texture baking commands (137c102…) +- [Patch] Remove the luminance fallback from the opaque model shader (63a2147…) +- [Patch] Export script now accepts blend file (9227a1b…) +- [Patch] Added a optimize flag to export script (55a2627…) +- [Patch] added bootstrap command to script (beec2ee…) +- [Patch] Added bootstrap script (0c65ee1…) +- [Patch]Added script to update blender addon (8cb1ea4…) +- [Patch] Added blender error message (699e804…) +- [Patch] Fixed Gaussian splats color (6ecd93b…) +- [Patch] Added gaussian profiling (779a033…) +- [Patch] Added xr surface normal detection (7f3d133…) +### 📚 Docs +- [Docs] Added documentation for the script (5c8a69f…) ## v0.14.0 - 2026-07-01 ### 🐞 Fixes - [Patch] Implemented rendering extensions v1 (84465de…) diff --git a/README.md b/README.md index b7f90a88..f3c13255 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Clone the repository and launch the Starter Demo: ```bash git clone https://github.com/untoldengine/UntoldEngine.git cd UntoldEngine -git checkout v0.14.0 +git checkout v0.14.1 swift run starterdemo ``` diff --git a/Sources/Demos/ShowcaseDemo/AppDelegate.swift b/Sources/Demos/ShowcaseDemo/AppDelegate.swift index cff1bdfc..bff20340 100644 --- a/Sources/Demos/ShowcaseDemo/AppDelegate.swift +++ b/Sources/Demos/ShowcaseDemo/AppDelegate.swift @@ -11,7 +11,7 @@ @MainActor final class AppDelegate: NSObject, NSApplicationDelegate { private enum Constants { - static let appVersion = "0.14.0" + static let appVersion = "0.14.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 f4b29c9e..13f3cb58 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.14.0" + static let appVersion = "0.14.1" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index 55ddf0f7..8932c5ac 100644 --- a/Sources/UntoldEngine/Renderer/UntoldEngine.swift +++ b/Sources/UntoldEngine/Renderer/UntoldEngine.swift @@ -183,7 +183,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate { BatchingSystem.shared.applyRuntimeBatchingTuning(.macOSBalanced) #endif - Logger.log(message: "Untold Engine Starting. Version 0.14.0") + Logger.log(message: "Untold Engine Starting. Version 0.14.1") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index 89e12619..4669d8d8 100644 --- a/docs/API/GettingStarted.md +++ b/docs/API/GettingStarted.md @@ -22,7 +22,7 @@ Clone the repository and launch the demo: ```bash git clone https://github.com/untoldengine/UntoldEngine.git cd UntoldEngine -git checkout v0.14.0 +git checkout v0.14.1 swift run untolddemo ```