Skip to content

Releases: kirides/vscode-daedalus

Public alpha v0.0.3

16 Oct 21:18
Compare
Choose a tag to compare
Public alpha v0.0.3 Pre-release
Pre-release

Fixes:

  • Syntax-Highlighting was not respecting case-insensitiveness
  • fixed some issues with highlighting (namely, single-line instance declarations, and @ inside the name)

New feature:

  • identifiers can now start with a any amount of digits, followed by atleast one letter (e.g. 1hand)
  • simple function documentation
/// This is documentation
/// multiline is also supported!
func void myFunc() {};

Public alpha v0.0.2

16 Oct 17:22
Compare
Choose a tag to compare
Public alpha v0.0.2 Pre-release
Pre-release

Changes:

  • identifiers can now start with a single digit, followed by atleast one letter (e.g. 1hand)
  • more relaxed handling of keyword names (e.g. fUnC is now valid)

New:

  • new diagnostics:
    • D0001 - Do not start identifiers with digits (type: Warning)
    • D0002 - Split multiple 'var TYPE ..., var TYPE ...' into separate statements. (type: Warning)

Public alpha

15 Oct 17:38
Compare
Choose a tag to compare
Public alpha Pre-release
Pre-release

Inlcudes support for:

  • Realtime syntax-error checking
  • Signature lookup
  • Autocompletion for methods and global variables/constants
  • Go To Definition / Peek Definition (only method names and global variables/constants for now)
  • Automatically parses all source-code that is found in the root GOTHIC.src file

Supported platforms:

  • windows x86 + x64 (future support for *nix platforms is planned)