Skip to content

Releases: jbaron/cats

CATS 2.4

05 Aug 07:01
Compare
Choose a tag to compare

This release is based on the latest version on the master branch. This version includes TypeScript 2.4.x and now also supports multiple tsconfig files.

Besides the features from version 1.0 like code completion and refactoring, another major improvement is the support for theming to make sure you can have an inspiring IDE to make inspiring applications.

cats_screenshot

As always, feedback is very welcome.

CATS version 1.5.x Release

05 Oct 18:56
Compare
Choose a tag to compare

Besides all kind of improvements to CATS itself, this release also uses the latest version of TypeScript from Github. So if you want to play around with latest and greatest language features of TypeScript, this release is the one for you.

For example some features & benefits not available in the stable release:

  • ES6 Modules
  • Destructuring support
  • let and const support
  • Decorators (used by AngularJS)
  • Much faster compilation, which also speeds up things like code completion.
  • Improved startup times, since we removed a lot on unused code and artefacts.

There still can be some glitches in there, so expect an error to pop up every now and then. But give it a try and let us know what you think of it.

CATS version 1.4.0 Stable Release

30 Sep 19:08
Compare
Choose a tag to compare

Besides all kind of improvements to CATS itself, this release also uses version 1.4 of TypeScript from Github. So if you get the latest and greatest language features of TypeScript.

Some features & benefits not available in this release:

  • Next to private and public, now also support for protected methods and variables in a class.
  • Support for Union Types. You can now do things like: var x : string | number;
  • ES6 is partially supported (let, const keyword etc). Just be sure to set the target at Project -> Settings to ES6
  • Much faster compilation, which also speeds up things like code completion.
  • Improved startup times, since we removed a lot on unused code and artefacts