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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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…)
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.14.0
git checkout v0.14.1
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.14.0"
static let appVersion = "0.14.1"
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.14.0"
static let appVersion = "0.14.1"
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.14.0")
Logger.log(message: "Untold Engine Starting. Version 0.14.1")
}

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.14.0
git checkout v0.14.1
swift run untolddemo
```

Expand Down
Loading