Releases: robotcodedev/robotcode
v0.92.0
Features
-
analyze: Allow shortforms of
warning
andinformation
,warn
andinfo
in diagnostic modifiers (f226091) -
config: Added posibility to allow different tool configs to robot.toml.json schema (ee256ce)
-
robot.toml: Introduce new settings for analysis in robot.toml (fa37dba)
-
vscode: Introduce setting for modifing the diagnostics severity (5cca59f)
With these settings, you can override the default configuration for all diagnostic messages. By combining file, block, and line diagnostic modifiers, you can precisely control how specific errors are displayed.
robotcode.analysis.diagnosticModifiers.ignore
: Suppresses specific diagnostics from being displayed. You can specify one or more error codes, likeMultipleKeywords
or[multiple-keywords, VariableNotFound]
. Use*
to ignore all errors and then maybe add specific error codes to other modifiers, such asinformation
, to selectively show them.robotcode.analysis.diagnosticModifiers.error
: Treats selected diagnostics as errors.robotcode.analysis.diagnosticModifiers.warning
: Displays chosen diagnostics as warnings.robotcode.analysis.diagnosticModifiers.information
: Shows specified diagnostics as informationrobotcode.analysis.diagnosticModifiers.hint
: Marks selected diagnostics as hints
These settings allow you to tailor the diagnostic outputs to meet the specific needs of your project.
-
Introduce
Select Python Environment
command and deprecaterobotcode.python
(be0573d)See here for an explanation.
v0.91.0
v0.90.0
Features
-
Provide a language status icon and robot tools menu (7ef83f3)
A short Video:
https://github.com/user-attachments/assets/b6980485-d7ec-4f6c-88a0-7d1a4e65dc40
v0.89.1
v0.89.0
v0.88.0
Documentation
- Introduce a script that generate the doc for cli tools (ecb5ec9)
- Update some documentation about config and cli (84553c3)
- Update readme (1e601e3)
- Add a Tip&Tricks page (dd27480)
Features
- cli: Disable console links for RF7.1 if running in VSCode terminal (5e83537)
- config: Add console_links to robot.toml (3902937)
- langserver: Corrected and generalized semantic tokenizing if OPTION tokens in except and while statements (d5a9339)
Testing
v0.87.0
v0.86.2
v0.86.1
v0.86.0
Bug Fixes
-
Change detection of win32 (13a9265)
-
Change detection of win32 (0dfbd94)
-
Correct vscodeignore file (461bfb1)
I have over optimized the .vscodeignore file 🥶
Features
-
robotcode: Introduce support for
.gitignore
and.robotignore
during test suite discovery (74fa480)Implemented support for
.gitignore
and.robotignore
files in the discovery process of Robot Framework test suites and test cases. -
robotcode: Introduce support for
.gitignore
and.robotignore
during test suite discovery (022517f)Implemented support for
.gitignore
and.robotignore
files in the discovery process of Robot Framework test suites and test cases.