Skip to content

Commit eb780bb

Browse files
committed
[Release] Bump version to 0.12.15
1 parent 3654e0e commit eb780bb

6 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
## v0.12.15 - 2026-05-26
3+
### 🐞 Fixes
4+
- [Patch] Add scene channels for selectable and context geometry visibility (2c9217d…)
5+
### 📚 Docs
6+
- [Docs] Updated documentation (cbade44…)
27
## v0.12.14 - 2026-05-22
38
### 🐞 Fixes
49
- [Patch] Fix transparency bug (6a51e40…)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Clone the repository and launch the demo:
7676
```bash
7777
git clone https://github.com/untoldengine/UntoldEngine.git
7878
cd UntoldEngine
79-
git checkout v0.12.14
79+
git checkout v0.12.15
8080
swift run untolddemo
8181
```
8282

Sources/DemoGame/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@MainActor
1212
final class AppDelegate: NSObject, NSApplicationDelegate {
1313
private enum Constants {
14-
static let appVersion = "0.12.14"
14+
static let appVersion = "0.12.15"
1515
static let defaultWindowSize = NSSize(width: 1920, height: 1080)
1616
static let minimumWindowSize = NSSize(width: 640, height: 480)
1717
}

Sources/Sandbox/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@MainActor
1111
final class AppDelegate: NSObject, NSApplicationDelegate {
1212
private enum Constants {
13-
static let appVersion = "0.12.14"
13+
static let appVersion = "0.12.15"
1414
static let windowSize = NSSize(width: 1600, height: 900)
1515
}
1616

Sources/UntoldEngine/Renderer/UntoldEngine.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public class UntoldRenderer: NSObject, MTKViewDelegate {
175175

176176
CameraSystem.shared.activeCamera = gameCamera
177177

178-
Logger.log(message: "Untold Engine Starting. Version 0.12.14")
178+
Logger.log(message: "Untold Engine Starting. Version 0.12.15")
179179
}
180180

181181
public func initSizeableResources() {

docs/API/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Clone the repository and launch the demo:
2727
```bash
2828
git clone https://github.com/untoldengine/UntoldEngine.git
2929
cd UntoldEngine
30-
git checkout v0.12.14
30+
git checkout v0.12.15
3131
swift run untolddemo
3232
```
3333

0 commit comments

Comments
 (0)