Inkjs Versions Save

A javascript port of inkle's ink scripting language.

v2.2.3

4 days ago

What's Changed

Full Changelog: https://github.com/y-lohse/inkjs/compare/v2.2.2...v2.2.3

v2.2.2

9 months ago

This minor release delivers some minor bugfixes and improvements

  • Bug detected on LIST_RANGE by @Meorge in C# source was fixed in inkjs (tests added)
  • Merged fix to save tags on choice from @Shepard (+ tests)
  • Merged new docs to disambiguate usage with typescript by @bemisguided
  • Fix non-ascii identifiers in compiler by @technix
  • Migrate to typescript 4.9.5
  • Provides missing typeNames and accessor to more classes in the compiler export

What to download

  • inkjs-2.2.2-dist files contain ink.js (runtime only), ink-full.js (runtime + compiler) and inkjs-compiler (formerly inklecate : the command line compiler) : this is the prefered download.
  • Source code files contain the full project as released and has to be build.

v2.2.1

1 year ago

This minor release delivers some minor bugfixes in the compiler and in the inkjs-js integration.

What to download

  • inkjs-2.2.1-dist files contain ink.js (runtime only), ink-full.js (runtime + compiler) and inkjs-compiler (formerly inklecate : the command line compiler) : this is the prefered download.
  • Source code files contain the full project as released and has to be build.

v2.2.0

1 year ago

This release matches ink v1.1.1.

What to download

  • inkjs-2.2.0-dist files contain ink.js (runtime only), ink-full.js (runtime + compiler) and inkjs-compiler (formerly inklecate : the command line compiler) : this is the prefered download.
  • Source code files contain the full project as released and has to be build.

v2.1.0

2 years ago

With this version, inkjs comes with a port of the Ink compiler to javascript! This means you can now compile and play ink files directly in from anything that runs javascript 🎉

Congratulations to @smwhr, @ephread and @furkle for this release 😍

What to download

  • inkjs-2.1.0-dist files only contain ink.js (runtime only) and ink-full.js (runtime + compiler) : this is the prefered download.
  • Source code files contain the full project as released and has to be build.

v2.0.0

3 years ago

This release matches ink v1.0. Despite the change in major version, there are no breaking changes in the API — please refer to the ink change log for more details.

Huge thanks to @ephread and @smwhr for your contributions (and patience) 😅

v1.11.0

3 years ago

This release matches ink v0.9!

v1.10.5

3 years ago

Along with some internal changes, this release fixes 2 issues:

  • NativeFunctionCall prints enum values in error messages, not value type strings (#478)
  • An error when dividing float values (#514)

Many thanks to @furkle and @chromy for their help on these!

v1.10.4

4 years ago

This release should fix an issue when using ink.js with react-create-app (#427).

v1.10.3

4 years ago
  • Fixes #425 thanks to @RokasVaitkevicius (impossible to set a variable to an empty string)
  • Added type informations (#335), thanks to @Hammster