Skip to content

v0.2.0

Choose a tag to compare

@i582 i582 released this 14 Jul 09:18
· 91 commits to main since this release
610a546

This release is dedicated to FunC and Tolk.

We added FunC support with many useful features and even debugging support via sandbox (big thanks
to TonTech for FunC debugger implementation)!

We also improved Tolk support and added an experimental formatter for Tolk, it is still in early stages, but already
supports all syntax of Tolk.

Added

  • feat(tolk/rename): wrap in backticks for keyword names in #21
  • feat(tolk/inspections): add unused type parameter inspection and fix find references for type parameters in #22
  • feat(tolk/toolchain): support Tolk global installation in #24
  • feat: initial FunC support in #26
  • feat(vscode): warn if FunC or Tolk extension are enabled in #34
  • feat(vscode): add action to attach to FunC debugger in #36
  • feat(tolk/completion): support match over struct type and add completion option to fill all cases in #42
  • feat(tolk): add experimental Tolk formatter in #43

Fixes

  • fix(tolk/references): fix reference handling for Foo<Bar> in #8
  • fix: fix paths to language server from archive in README.md in #23
  • fix(tolk/resolving): fix method resolving for generic structs in #25
  • fix(tolk/completion): fix completion for generic struct static methods in #30
  • fix(tolk/settings): fix inlay hints disabling in #31
  • fix(tolk/grammar): support triple quotes strings in #41

Other

  • feat(ci): add artifacts build for releases in #10
  • chore(README.md): move description after title in #13
  • fix(webpack): fixed the copying of the icons by @Danil42Russia in #16
  • fix(assets): removed an unused icon by @Danil42Russia in #17
  • feat(ci): run linter and grammar checks in #28
  • refactor(all): move VS Code extension to editors/code folder in #32
  • refactor(server): extract common languages parts in #39
  • fix(tolk/tests): fix completion tests in #45

New Contributors