Skip to content

v0.5.0

Latest

Choose a tag to compare

@WSH032 WSH032 released this 15 Sep 09:47
3ec4ede

[0.5.0]

Highlights

GitHub Publication Workflow Template

  • #23 - feat: add publish workflow template.

We've added .github/workflows/publish.yaml to the template to help you publish your application on GitHub Actions.
This workflow is triggered every time you push to the release branch, or you can also trigger it manually.
Alternatively, you can modify it to suit your workflow.

Fixed

  • #22 - fix(svelte): fix incorrect frontendDist path in svelte template.

    The output directory for Svelte template has now been changed from build directory to dist directory to match the build.frontendDist setting in tauri.conf.json.

  • #20 - fix: fix Linux and macOS build scripts.

    • Pass the libpython path correctly on Linux and macOS as -L arguments to RUSTFLAGS.

    • Temporarily disable appimage bundle target

      Currently unable to build appimage, see python-pillow/Pillow#9198.

    • Change the default identifier to com.username.{{ project_name }}

      Tauri no longer recommends identifiers ending with .app, see tauri-apps/tauri#12674.

Security

  • #19 - chore(deps-dev): bump vite from 6.3.5 to 6.3.6 in the npm_and_yarn group across 1 directory.

    bump vite to 6.3.6 to fix security advisory.

Internal

  • #21 - ci: add template testing CI.