Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ jobs:
- run: pnpm install --frozen-lockfile

- name: Build Tauri bundles
# linuxdeploy's bundled `strip` predates glibc's .relr.dyn relocation
# section and fails on every system library once the toolchain
# emits it (Fedora/Arch already do; ubuntu-22.04 doesn't yet). No-op
# on macOS/Windows.
run: pnpm --filter @jdf/reader tauri build --target ${{ matrix.target }}
env:
NO_STRIP: true

- name: Upload bundles
uses: actions/upload-artifact@v4
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,16 @@ pnpm tauri build # produces .app + .dmg in apps/reader/src-tauri/target/rel

Requires Node 20+, pnpm 9+, Rust stable, Xcode CLT (macOS).

On Linux, the `.deb`/`.rpm` bundle fine as-is, but on distros with a newer
toolchain (Fedora, Arch, …) the AppImage step can fail — linuxdeploy's
bundled `strip` predates glibc's `.relr.dyn` relocation section and chokes
on every system library (`unknown type [0x13] section '.relr.dyn'`). Skip
stripping to work around it:

```bash
NO_STRIP=true pnpm tauri build --bundles appimage
```

## Open & edit

**Open**: drag any `.jdf`, `.jdfx`, `.pdf`, or `.md` onto the welcome screen, double-click in Finder (file associations are registered for both `.jdf` and `.jdfx`), or `Cmd+O`.
Expand Down