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
21 changes: 18 additions & 3 deletions .github/workflows/swiftformat-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,28 @@ jobs:

- name: Install SwiftFormat
run: |
brew update
brew install swiftformat
SWIFTFORMAT_VERSION="$(awk -F':=' '/^SWIFTFORMAT_VERSION/ { gsub(/[[:space:]]/, "", $2); print $2 }' Makefile)"
if [ -z "$SWIFTFORMAT_VERSION" ]; then
echo "Unable to determine SWIFTFORMAT_VERSION from Makefile"
exit 1
fi
curl -fsSL -o /tmp/swiftformat.zip \
"https://github.com/nicklockwood/SwiftFormat/releases/download/${SWIFTFORMAT_VERSION}/swiftformat.zip"
unzip -o /tmp/swiftformat.zip -d /tmp/swiftformat
CURRENT_SWIFTFORMAT="$(command -v swiftformat || true)"
if [ -n "$CURRENT_SWIFTFORMAT" ]; then
INSTALL_PATH="$CURRENT_SWIFTFORMAT"
else
INSTALL_PATH="/usr/local/bin/swiftformat"
fi
sudo install -m 755 /tmp/swiftformat/swiftformat "$INSTALL_PATH"
echo "$(dirname "$INSTALL_PATH")" >> "$GITHUB_PATH"

- name: Show versions
run: |
which swiftformat
swiftformat --version
swift --version

- name: Run SwiftFormat (lint mode)
run: swiftformat --lint . --swiftversion 5.8 --reporter github-actions-log
run: make lint
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# Changelog
## v0.18.0 - 2026-08-30
### 🐞 Fixes
- [Patch]Restore scene-authored loading in Environment panel (bac0530…)
- [Patch] Fixed directional light rotation - gizmo (81b1a0d…)
- [Patch] Fixed parent-child selection in viewport (41df956…)
- [Patch] Fixed the active directional light (1c17fdd…)
- [Patch] Re-added Import textures features (ea5ed67…)
- [Patch] Allow exporting blender files (bd0308e…)
- [Patch] Show material texture details on inspector hover (37c4b13…)
- [Patch] Coalesce gizmo drag updates during viewport transforms (6ea624c…)
- [Patch] Removed TaskBar View test (75afd7e…)
### 🚀 Features
- [Feature] Add Height/POM material channel to Inspector (d460c63…)
## v0.16.0 - 2026-08-12
### 🐞 Fixes
- [Patch] fix area light mesh culling (9122f78…)
Expand Down
Loading
Loading