Skip to content

Latest commit

 

History

History
75 lines (55 loc) · 3.34 KB

CHANGELOG.md

File metadata and controls

75 lines (55 loc) · 3.34 KB

v2.1 (2022-08-06)

Commits

  • Fix on severe issue in sendQuantity built-in function (issue #24)
  • Fix implementation for optimization level 3 (should be stable now)
  • New contract samples LiquidityPool and WheelOfSigna
  • New built-in functions readShortMessage and sendShortMessage to optimize code for short messages
  • Other minor bug fixes and code de-smelling

v2.0 (2022-07-03)

Commits

  • Support all new features from Signum Rainbow Hard Fork
  • New 42 built-in functions: easy use of Signum API
  • Documentation updated with refactored examples, devs must read it again
  • Fixed point numbers to handle balance, much easier in calculations
  • Checks for type castings are stronger and issuing warnings for implicit conversions
  • Optimization level 3 uses VM to trace variables values (beta version, not default)
  • Showing many errors after failed compilations (if possible)
  • Many changes in #pragma and #program to allow integration with SC-Simulator

v1.0 (2022-01-16)

Commits

  • Massive code refactoring, decreasing code cognitive complexity. More than 80 commits
  • Changed strategy for code optimization. Better and safer
  • Added switch :: case :: default statement
  • Added sizeof keyword
  • Allow use of array of structs

v0.3 (2021-10-16)

Commits

  • Source code refactored from Javascript to Typescript
  • Included inline comments on interfaces and types
  • Massive improvement on compiler error messages
  • Functions can return struct pointer
  • Recursive functions
  • Support for using functions with modifiers Array or Member Ex: a = test()->next;
  • Improved rules for pointer variables verification
  • Added void pointer variables
  • Added property .length to get array size
  • Special function void catch(void) to handle execution exceptions
  • Macro 'userStackPages' and 'codeStackPages' for fine tuning memory parameters
  • Struct can have recursive definition of its pointer
  • More optimizations on constant variables (thru variables named nNUMBER)
  • Added Machine Code Hash Information
  • Improved preprocessor with #ifdef, #ifndef, #else, #endif directives
  • Copy to clipboard button for easy use with SC-Simulator
  • Added macro 'outputSourceLineNumber' to add verbosity in assembly generated code
  • Project integration with SonarCloud and fix security vulnerabilities in regex expressions
  • Increased test coverage for wrong source code

v0.2 (2021/07/23)

Commits

  • Syntax highlight for source code textarea
  • Fine tuning globalOptimization
  • Added #define and #undef preprocessor directives.

v0.1 (2021/06/30)

Commits

  • Initial working release

v0 (2021/04/06)