From f630ceac0c4feb1b43a8850203f4cfc476229175 Mon Sep 17 00:00:00 2001 From: John McKenna Date: Wed, 11 Feb 2026 00:59:33 -0500 Subject: [PATCH 1/3] add releases to readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a3ed27..17dde29 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ We made this because we were sad osculator went away. RIP. ## Install -Download the appropriate file for your system from the latest release. +Download the appropriate file for your system from the latest release. [Releases](https://github.com/sndwrks/conduit/releases) ### macOS (Apple Silicon) From 7f591edd5605274b54ac1a5efe3e32a98e536ccc Mon Sep 17 00:00:00 2001 From: John McKenna Date: Wed, 11 Feb 2026 00:31:06 -0500 Subject: [PATCH 2/3] update readme From 8acaf50bb2217cd34779964663d50e302edf0340 Mon Sep 17 00:00:00 2001 From: John McKenna Date: Wed, 11 Feb 2026 01:56:53 -0500 Subject: [PATCH 3/3] fix macOS damaged error with ad-hoc signing, prevent SVG logo CSP block, rename release artifacts to user-friendly names --- .github/workflows/release.yml | 13 +++++++++++++ src-tauri/tauri.conf.json | 3 +++ vite.config.ts | 3 +++ 3 files changed, 19 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7cc8039..3b2d486 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,6 +89,19 @@ jobs: merge-multiple: true - name: List downloaded artifacts run: find artifacts -type f | sort + - name: Rename artifacts + run: | + VERSION="${{ needs.get-version.outputs.version }}" + cd artifacts + for f in *_aarch64.dmg; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-mac-arm.dmg"; done + for f in *_x64.dmg; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-mac-intel.dmg"; done + for f in *_x64-setup.exe; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-windows.exe"; done + for f in *_x64_en-US.msi; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-windows.msi"; done + for f in *_amd64.deb; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-linux.deb"; done + for f in *.rpm; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-linux.rpm"; done + for f in *.AppImage; do [ -f "$f" ] && mv "$f" "Conduit-${VERSION}-linux.AppImage"; done + echo "Renamed artifacts:" + ls -la - name: Create GitHub Release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c6abf1e..f21e200 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -26,6 +26,9 @@ "bundle": { "active": true, "targets": "all", + "macOS": { + "signingIdentity": "-" + }, "icon": [ "icons/32x32.png", "icons/128x128.png", diff --git a/vite.config.ts b/vite.config.ts index 4c71e24..8ff820f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -9,6 +9,9 @@ const host = process.env.TAURI_DEV_HOST; // https://vite.dev/config/ export default defineConfig(async () => ({ plugins: [react(), tailwindcss()], + build: { + assetsInlineLimit: 0, + }, resolve: { alias: { "@": path.resolve(__dirname, "./src"),