Skip to content

Releases: CodySchrank/MTT

Fixed parsing with specific keywords

24 Apr 21:46
Compare
Choose a tag to compare

Made parsing more strict to stop it from identifying enum, public, class in variable names.

MTT

Fixed newline bug on windows

18 Oct 20:11
Compare
Choose a tag to compare

Thanks to dammejed

MTT

Fixed case bug

08 Sep 21:27
Compare
Choose a tag to compare

Fixed casing bug that broke strict typescript compilation

MTT

Fixed path bug

08 Sep 20:04
Compare
Choose a tag to compare

Fixed a path bug on unix systems.

MTT

Added Recursive Path Searching

08 Sep 08:09
Compare
Choose a tag to compare

There is now recursive path searching for the working directory. Also dropped support for netstandard1.6

MTT

Now supports lazy loaded properties

06 Aug 22:17
Compare
Choose a tag to compare

Thanks to elestedt MTT now correctly handles the virtual keyword which in turn allows lazy loaded properties.

MTT

Fixed bug that potentially broke CI

09 Jul 21:22
Compare
Choose a tag to compare

changed unnecessary warnings to info logs

MTT

Added Support For Optionals

21 Jun 05:27
Compare
Choose a tag to compare

Optionals (the use of ?) are now supported. #7

MTT

Fixed bugs with comments, parsing, and enums.

15 Jun 00:02
Compare
Choose a tag to compare

Comments are now ignored from the c# and do not get passed on to ts (#2).
The program now throws an error if curly braces are not the next line to ensure proper parsing (#1).
Enums are no longer const to improve usability (#4).

MTT

Added Support for Enums of type int

11 Apr 23:40
Compare
Choose a tag to compare
Pre-release

Added Support for Enums of type int. Since javascript does not have an enum, but typescript does, only enums of type int will be supported for simplicity. Read more about typescript enums here

MTT