Skip to content

Logic-Loom v0.1.0-alpha.6

Pre-release
Pre-release

Choose a tag to compare

@SOSOVSKI SOSOVSKI released this 05 Jul 10:53
· 4 commits to main since this release
b74bd7e

Logic-Loom v0.1.0-alpha.6

Sixth alpha — a release-plumbing cut, not a feature cut. The app is
functionally identical to v0.1.0-alpha.5; what changed is how releases are
built and published. Binaries now come from a dedicated public build pipeline
under a two-repo release model.

There are no application, backend, or UI changes since v0.1.0-alpha.5. If
you are already on alpha.5, upgrading gets you the same app from the new
distribution path — install it only to confirm the new pipeline's artifacts.

Two-repo release model

Releases are now a single version tag pushed to two repos, each reacting to it
differently:

  • SOSOVSKI/Logic-Loom (private source) — .github/workflows/release.yml
    now cuts a source-only GitHub Release (…-source.{tar.gz,zip} +
    SHA256SUMS). It no longer builds binaries.
  • CEmM2/Logic-Loom-releases (public) — .github/workflows/build-binaries.yml
    checks out the private source at the tag via a PAT, builds the
    macOS/Linux/Windows bundles on real runners, and attaches them (plus
    SHA256SUMS.txt) to the public Release for that tag.

scripts/release.sh was rewritten to orchestrate this: it pushes the tag to
both repos, idempotently, source first. See the "Releases" section of the
README.md for the full flow and flags.

Platform availability

Multi-platform, now built by the public build-binaries.yml workflow on real
macOS, Linux, and Windows runners.

  • macOS Apple Silicon — .dmg
  • Linux x86_64 — .deb and .AppImage
  • Windows x86_64 — .msi and NSIS .exe installer

A single SHA256SUMS.txt manifest covering every asset ships alongside the
binaries.

Heads-up: asset filenames changed

The new pipeline publishes Tauri's default artifact names rather than the older
hand-normalized scheme. If you script downloads, update your expected names:

Platform alpha.6 asset
macOS (Apple Silicon) Logic-Loom_0.1.0_aarch64.dmg
Linux (AppImage) Logic-Loom_0.1.0_amd64.AppImage
Linux (deb) Logic-Loom_0.1.0_amd64.deb
Windows (NSIS) Logic-Loom_0.1.0_x64-setup.exe
Windows (MSI) Logic-Loom_0.1.0_x64_en-US.msi

(Previously: Logic-Loom-0.1.0-alpha.5-<platform>.<ext>.)

Verifying downloads

shasum -a 256 -c SHA256SUMS.txt