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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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…)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/Demos/ShowcaseDemo/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.3"
static let appVersion = "0.14.0"
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.3"
static let appVersion = "0.14.0"
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 @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion docs/API/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Loading