nessemble v2.5.0
nessemble — a 6502 assembler for the Nintendo Entertainment System.
Downloads
| Platform | Artifact(s) |
|---|---|
| macOS | nessemble_*.pkg, nessemble_*_macos.tar.gz |
| Linux amd64 | nessemble_*_amd64.deb |
| Linux i386 | nessemble_*_i386.deb |
| Windows 32-bit | nessemble_*_win32.exe, …_win32.msi |
| Windows 64-bit | nessemble_*_win64.exe, …_win64.msi |
macOS: "Apple could not verify…" on the .pkg
The .pkg is not signed with an Apple Developer ID, so macOS
Gatekeeper blocks it after download. Either clear the quarantine flag
and install the .pkg normally:
xattr -d com.apple.quarantine nessemble_*.pkg
sudo installer -pkg nessemble_*.pkg -target /…or skip the installer entirely and use the plain binary tarball:
tar -xzf nessemble_*_macos.tar.gz
xattr -d com.apple.quarantine nessemble # clear quarantine
sudo mv nessemble /usr/local/bin/ # onto your PATHWhat's Changed
Other Changes
- Link the 1.x repo from the README; move license text to root LICENSE.txt by @kevinselwyn in #21
- docs: add plans/ directory and a language-server plan by @kevinselwyn in #22
- lsp: Phase 0 — scaffold the language server and
nessemble lspsubcommand by @kevinselwyn in #23 - lsp: Phases 1 & 2 — diagnostics and completion by @kevinselwyn in #24
- lsp: Phase 3 — formatting and semantic-token highlighting by @kevinselwyn in #25
- lsp: Phase 4 — multi-error diagnostics with token-accurate ranges by @kevinselwyn in #26
- lsp: Phase 5 — navigation, symbols & hover by @kevinselwyn in #27
- lsp: Phase 6 — file-content overlay (core seam) by @kevinselwyn in #28
- lsp: Phases 7 & 8 — workspace-aware analysis, editing aids, release 2.5.0 by @kevinselwyn in #29
Full Changelog: v2.4.0...v2.5.0