aboutsummaryrefslogtreecommitdiff
path: root/Zig.novaextension
Commit message (Collapse)AuthorAgeFilesLines
* Fix: Remove invalid test filter configDavid Czihak2 days2-11/+1
|
* Release: 0.2.1v0.2.1David Czihak2 days2-1/+7
|
* Fix: Cache compiler errorsDavid Czihak2 days3-9/+189
| | | | Cache compiler errors instead of passing them directly to Nova. This removes the possibility for outdated old errors not going away.
* Fix: Correctly apply -D build optionsDavid Czihak2 days1-1/+2
| | | | Fix getTaskArgs not returning -D build options in the correct format, so they would not be passed on to the build process.
* Feat: Full localization, reactive task list, 0.2.0 changelogv0.2.0David Czihak3 days14-476/+434
|
* Chore: Move build scripts to repo root scripts/David Czihak3 days3-121/+4
| | | | | | | | The dylib build scripts are development tools, not extension bundle assets. Moves them from Zig.novaextension/Scripts/ to scripts/ and updates paths so the dylib lands in Zig.novaextension/Syntaxes/. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* Fix: Code review fixes and 0.2.0 release prepDavid Czihak3 days5-11/+16
| | | | | | | | | | | | | | | | | | | - localizeText: return fallback when localization key is missing instead of a developer-facing "Localization missing for X" message - resolveCleanPaths: remove dead `normalized === ""` branch (unreachable after the preceding absolute-path guard) - resolveBuildStepAction: validate step before the async resolveZigExecutable call to avoid a pointless `which zig` subprocess on invalid input - buildShellCommand: join cd + command with `&&` instead of `;` so a failed cd aborts instead of running the command in the wrong directory - resolveWatchAction: cap debounceMs at 60 000; add min/max to schema - USER_OPTION_REGEX: tighten =.* to =.+ to reject empty option values - Bump version to 0.2.0 - Finalize CHANGELOG for 0.2.0 — 2026-05-10 - NOTICES/README: update zig-debug → zig-mark asset references - ISSUES.md: mark A1–A6 fixed, update all file paths to Zig.novaextension/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* Chore: Move extension bundle into Zig.novaextension/ subdirectoryDavid Czihak3 days35-0/+4117
Separates Nova extension resources from development-only items. Development items (ISSUES.md, vendor/, examples/) remain at the repo root. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>