Merge branch 'fix/review-2066' into fix/community-integration

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Palash Debnath
2026-09-17 12:38:56 +05:30
4 changed files with 5 additions and 3 deletions
+2
View File
@@ -59,6 +59,8 @@ the frozen-backend fallback mirror it for their toolchains.
- Require the pinned Apple Silicon GGUF build to pass and document runtime preflight conditions (#2115) — thanks @LMGXENON and @martinezpl! - Require the pinned Apple Silicon GGUF build to pass and document runtime preflight conditions (#2115) — thanks @LMGXENON and @martinezpl!
- Correct the Windows Rustup installation command in tooling and documentation (#2066) — thanks @Rukhaam!
## [0.5.3] — 2026-09-17 ## [0.5.3] — 2026-09-17
**Highlights** **Highlights**
+1 -1
View File
@@ -48,7 +48,7 @@ Everything above, plus the toolchain:
with the **"Desktop development with C++"** workload checked. with the **"Desktop development with C++"** workload checked.
- **Bun** — `powershell -c "irm bun.sh/install.ps1 | iex"`. - **Bun** — `powershell -c "irm bun.sh/install.ps1 | iex"`.
- **FFmpeg** — `winget install Gyan.FFmpeg`. - **FFmpeg** — `winget install Gyan.FFmpeg`.
- **Rust / Cargo** — `winget install Rust.Rustup` or download `rustup-init.exe` from [rustup.rs](https://rustup.rs/). - **Rust / Cargo** — `winget install Rustlang.Rustup` or download `rustup-init.exe` from [rustup.rs](https://rustup.rs/).
After installing Rustup, close and reopen PowerShell before running `bun run tauri:desktop-prod`. After installing Rustup, close and reopen PowerShell before running `bun run tauri:desktop-prod`.
## GPU support on Windows ## GPU support on Windows
+1 -1
View File
@@ -100,7 +100,7 @@ export function cargoMissingMessage(command) {
`${command} needs Rust/cargo, and none was found.`, `${command} needs Rust/cargo, and none was found.`,
"", "",
" Install the Rust toolchain, then reopen your terminal:", " Install the Rust toolchain, then reopen your terminal:",
" Windows: winget install Rust.Rustup", " Windows: winget install Rustlang.Rustup",
" macOS/Linux: https://rustup.rs", " macOS/Linux: https://rustup.rs",
"", "",
" Or download a prebuilt installer from the Releases page (no toolchain needed).", " Or download a prebuilt installer from the Releases page (no toolchain needed).",
+1 -1
View File
@@ -294,6 +294,6 @@ test('launcher messages name the tag, the permanent remedy, and the install path
assert.match(note, /Open a new terminal/); assert.match(note, /Open a new terminal/);
const msg = cargoMissingMessage('`bun desktop-prod`'); const msg = cargoMissingMessage('`bun desktop-prod`');
assert.match(msg, /`bun desktop-prod` needs Rust\/cargo/); assert.match(msg, /`bun desktop-prod` needs Rust\/cargo/);
assert.match(msg, /winget install Rust\.Rustup/); assert.match(msg, /winget install Rustlang\.Rustup/);
assert.match(msg, /rustup\.rs/); assert.match(msg, /rustup\.rs/);
}); });