Skip to content

DinoIDE v1.2.0-b

Choose a tag to compare

@BlassGO BlassGO released this 11 Apr 02:21
· 7 commits to main since this release

Latest integrated DinoCode changes:

  • Although DinoCode allows you to change the escape character to any other character, it was preferred to change the default escape character from "\" to "`", because in most cases it was necessary to change it manually to work with Windows paths

  • For greater agreement, it was preferred to exchange the characters "n" and "N" when they are escaped. Now "`n" genuinely represents a Line Feed - LF (previously it represented a CRLF) and "`N" represents a shortener to the CRLF combination

  • Prevented a BUG if attempting to directly transverse through and assign a property of a temporarily generated Object with a Call Expression $(Expr)

  • Both the native WriteFile function and the File library received special settings to control the automatic translation of EOL (End Of Line), avoiding unwanted behavior

DinoIDE changes:

  • DinoCompiler now ensures to preserve blank lines that are part of the multiline literal redirection (Previously they were removed like all the others for optimization reasons)

  • DinoCompiler now ensures to preserve at least one blank line at the end of the literal redirect, even if it is outside the Indentation (This simply allows you to intentionally break the multiline capture block)

  • The Examples were updated to the latest DinoCode changes