Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
98a87ab
0.0.130-rc.1
eugenehp Apr 29, 2026
3770e81
fix win/linux
eugenehp Apr 29, 2026
808758c
0.0.130-rc.2
eugenehp Apr 29, 2026
e479229
umap e2e
eugenehp Apr 29, 2026
b62d33e
fixed issues with the metrics, keychain access (3 -> 1 + on demand), …
eugenehp Apr 29, 2026
4357697
0.0.130-rc.3
eugenehp Apr 29, 2026
2420f1a
0.0.130-rc.4
eugenehp Apr 29, 2026
e5ce3bc
fix vulkan cache on windows ci
eugenehp Apr 29, 2026
922e7ea
0.0.130-rc.5
eugenehp Apr 30, 2026
0b19177
0.0.130-rc.6
eugenehp Apr 30, 2026
b5ce79d
Replace per-app AppleScript window tracking (which triggered a macOS …
eugenehp May 2, 2026
3d9e108
0.0.130-rc.7
eugenehp May 2, 2026
7026bc9
cargo deny
eugenehp May 2, 2026
6506c37
updated llm catalog
eugenehp May 2, 2026
d3ea991
fix tty
eugenehp May 2, 2026
8c76d72
safety checks
eugenehp May 2, 2026
236abeb
fix windows CI
eugenehp May 2, 2026
c8d7307
fix(cargo): remove obsolete muda and phf_generator patches
eugenehp May 2, 2026
aea9dd2
fixed cargo clippy
eugenehp May 2, 2026
2dda39e
0.0.130-rc.8
eugenehp May 2, 2026
d63c625
0.0.130-rc.9
eugenehp May 2, 2026
d258390
fix windows ci
eugenehp May 2, 2026
5d8caed
0.0.130-rc.10
eugenehp May 2, 2026
f529353
1. GPU f16 SHADER_F16 panic → `catch_unwind` in worker.rs
eugenehp May 2, 2026
bdd3d7a
log_enabled_by_default
eugenehp May 2, 2026
b57b03d
0.0.130-rc.11
eugenehp May 2, 2026
e08ea9b
auto-update + update RC settings
eugenehp May 3, 2026
57415e6
1. Settings tab font-size lint rule (scripts/check-settings-font-size…
eugenehp May 3, 2026
8c6f984
translations
eugenehp May 3, 2026
0207855
0.0.130-rc.12
eugenehp May 3, 2026
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
18 changes: 16 additions & 2 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,22 @@ fi
# Run cargo fmt on staged Rust files
if echo "$STAGED_FILES" | grep -q '\.rs$'; then
echo "🦀 Running cargo fmt…"
cargo fmt
git add $( echo "$STAGED_FILES" | grep '\.rs$' )
# GUI git clients (editors, Tower, etc.) launch hooks in a non-interactive
# shell that doesn't source ~/.zshrc, so rustup's ~/.cargo/bin is missing
# from PATH. Source the env file rustup ships, or fall back to the default
# install path.
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
elif [ -d "$HOME/.cargo/bin" ]; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
if ! command -v cargo >/dev/null 2>&1; then
echo "⚠️ cargo not found on PATH; skipping cargo fmt." >&2
echo " Install rustup (https://rustup.rs) or add ~/.cargo/bin to your shell's PATH." >&2
else
cargo fmt
git add $( echo "$STAGED_FILES" | grep '\.rs$' )
fi
fi

echo "✅ Pre-commit checks passed (basic validation only)."
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ jobs:
# only happens once per change to the install script. On cache hit the
# install script detects the SDK via filesystem and skips the download.
- name: Cache Vulkan SDK
# Don't fail the job on transient cache-service errors (actions/cache@v5
# occasionally returns "failure" instead of "miss"). The install script
# below handles a missing SDK by downloading it on the spot.
continue-on-error: true
uses: actions/cache@v5
with:
path: C:\VulkanSDK
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ jobs:
# toolchain. Installing them in a single step via background jobs cuts
# ~1-2 min of sequential wait time on cache-miss runs.
- name: Cache Vulkan SDK
# Don't fail the job on transient cache-service errors (actions/cache@v5
# occasionally returns "failure" instead of "miss"). The install step
# below handles a missing SDK by downloading it on the spot.
continue-on-error: true
uses: actions/cache@v5
with:
path: C:\VulkanSDK
Expand Down Expand Up @@ -906,7 +910,7 @@ jobs:

# ── Discord notification ──────────────────────────────────────────────────
- name: Notify Discord of release
if: always() && steps.version_meta.outputs.dry_run != 'true'
if: always() && steps.version_meta.outputs.is_release == 'true'
shell: bash
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
Expand Down
841 changes: 841 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading
Loading