diff --git a/CHANGELOG.md b/CHANGELOG.md index 641c412e..0ecfe38c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog +## v0.14.0 - 2026-07-01 +### 🐞 Fixes +- [Patch] Implemented rendering extensions v1 (84465de…) +- [Patch] Implemented argument buffers for rendering extensions (884bf2c…) +- [Patch] Complete rendering extension graph and plugin architecture (1dafc3b…) +- [Patch] Updated the create project cli (45fa19b…) +- [Patch] Added helper functions to input system (3001cb2…) +- [Patch] Fixed ios input system (cd0acce…) +- [Patch] Fixed Rendering Extensions (2f0531c…) +- [Patch] Fixed PSVR2 API (7772952…) +- [Patch] Modified the CLI create command (86a6a3b…) +### 📚 Docs +- [Docs] Updated architecture documentation (7699900…) +- [Docs] Cleaning up the docs (9fdddb0…) +### 🚀 Features +- [Feature] Added psvr2 support (69d927e…) ## v0.13.3 - 2026-06-25 ### 🐞 Fixes - [Patch] Add vision light probes (b2d1ff9…) diff --git a/README.md b/README.md index 03d36d1c..b7f90a88 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.13.3 +git checkout v0.14.0 swift run starterdemo ``` diff --git a/Sources/Demos/ShowcaseDemo/AppDelegate.swift b/Sources/Demos/ShowcaseDemo/AppDelegate.swift index 245695bd..cff1bdfc 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.13.3" + static let appVersion = "0.14.0" 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 c28a3824..f4b29c9e 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.3" + static let appVersion = "0.14.0" static let windowSize = NSSize(width: 1600, height: 900) } diff --git a/Sources/UntoldEngine/Renderer/UntoldEngine.swift b/Sources/UntoldEngine/Renderer/UntoldEngine.swift index 7d030a28..55ddf0f7 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.13.3") + Logger.log(message: "Untold Engine Starting. Version 0.14.0") } public func initSizeableResources() { diff --git a/docs/API/GettingStarted.md b/docs/API/GettingStarted.md index 33351b35..69c121d0 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.13.3 +git checkout v0.14.0 swift run untolddemo ```