Skip to content

v0.5.0 - 26 May 2022

Compare
Choose a tag to compare
@asmaloney asmaloney released this 26 May 23:16
· 376 commits to main since this release

Added

  • New command line option temp to specify where to generate the intermediate code files. If not specified, it defaults to ./gactar-temp in the directory gactar was run from. The directory will be created if it does not exist. (#94)
  • Web UI now allows the user to select which frameworks to run from the ones available on the server. (#100)
  • Added TypeScript interfaces for all endpoints (in api.ts).
  • Added new /api/frameworks endpoint to get info on frameworks available on the server. (#99)
  • The /api/run endpoint now accepts an optional list of frameworks to run. If not specified, it will run on all available frameworks. (#97)
  • The return data for /api/run now includes the full path to the intermediate code file in the property filePath.
  • Added column numbers to error output. (#102)
  • Added extra checks on patterns for valid chunk names and number of slots.

Changed

  • Use camelCase for all returned properties in the API.
  • Clean up API TypeScript interfaces.

Fixed

  • When running as a web server, always create temp folder before a run in case it was removed. (#107)