Skip to content

Releases: Everlaw/nbts

v2.1.5.3: Fix another NPE (and possible race condition)

10 Feb 19:38
Compare
Choose a tag to compare
https://netbeans.org/bugzilla/show_bug.cgi?id=269771

v2.1.5.2

02 Feb 11:18
Compare
Choose a tag to compare
Fix code templates in completion yet again

v2.1.5.1

28 Jan 09:36
Compare
Choose a tag to compare
Fix code template expansion

v2.1.5.0

26 Jan 08:38
Compare
Choose a tag to compare
Don't use UI thread when avoidable

v2.1.4.1

09 Jan 05:36
Compare
Choose a tag to compare
Honor some JS formatting settings

v2.1.4.0

24 Dec 07:12
Compare
Choose a tag to compare
New implicit-any errors

v2.0.5.2

28 Oct 18:00
Compare
Choose a tag to compare
Use FileObject API to enumerate lib files in jar

v2.0.5.1

23 Oct 23:24
Compare
Choose a tag to compare
Support code completion of imported module names

v2.0.5.0: Upgrade to TypeScript 2.0.5

13 Oct 03:32
Compare
Choose a tag to compare
Remove patches for 7122 and 7966 (fixed upstream)

v1.8.10.4: Fix two @deprecated bugs

11 Aug 23:55
Compare
Choose a tag to compare
1. Fix deprecation of `export`ed or `declare`d variables
   "/*@deprecated*/ export var foo" wasn't working. TypeScript 1.5
   introduced a new intermediate node VariableDeclarationList, so we
   were looking for @deprecated in the wrong place.
2. Show deprecation of individual module imports
   With `import {x} from`/`export {x} from` syntax, display deprecation
   of the aliased symbol (the alias itself isn't what's deprecated).