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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Changelog
## v0.14.2 - 2026-07-16
## v0.14.0 - 2026-07-09
### 🐞 Fixes
- [Patch] added option to load authored scene data (4558dec…)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
// Use a branch during active development:
// .package(url: "https://github.com/untoldengine/UntoldEngine.git", branch: "develop"),
// Or pin to a release:
.package(url: "https://github.com/untoldengine/UntoldEngine.git", exact: "0.14.0"),
.package(url: "https://github.com/untoldengine/UntoldEngine.git", exact: "0.14.2"),
],
targets: [
.executableTarget(
Expand Down
2 changes: 1 addition & 1 deletion Sources/UntoldEditor/Editor/ToolbarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@ObservedObject var selectionManager: SelectionManager
@ObservedObject var editorBasePath = EditorAssetBasePath.shared
@ObservedObject private var statsStore = EditorEngineStatsStore.shared
private let editorVersionLabel = "v0.14.0"
private let editorVersionLabel = "v0.14.2"

var onSave: () -> Void
var onSaveAs: () -> Void
Expand Down
4 changes: 2 additions & 2 deletions Sources/UntoldEditor/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
var window: NSWindow!

func applicationDidFinishLaunching(_: Notification) {
Logger.log(message: "Launching Untold Engine Editor v0.14.0")
Logger.log(message: "Launching Untold Engine Editor v0.14.2")

// Step 1. Create and configure the window
window = NSWindow(
Expand All @@ -27,7 +27,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
defer: false
)

window.title = "Untold Engine Editor v0.14.0"
window.title = "Untold Engine Editor v0.14.2"
window.center()

let hostingView = NSHostingView(rootView: EditorView())
Expand Down
Loading