Releases: robotcodedev/robotcode
Releases · robotcodedev/robotcode
v0.5.4
added
- Keyword call analysis
- shows if parameters are missing or too much and so on...
- Highlight of named arguments
- Improve handling of command line variables when resolving variables
- Remove handling of python files to reduce the processor load in certain situations
v0.5.3
added
-
Resolving static variables, closes #18
- RobotCode tries to resolve variables that are definied at variables section, command line variables and builtin variables. This make it possible to import libraries/resources/variables with the correct path and parameters.
Something like this:
*** Settings *** Resource ${RESOURCE_DIR}/some_settings.resource Library alibrary a_param=${LIB_ARG} Resource ${RESOURCE_DIR}/some_keywords.resource
- If you hover over a variable, you will see, if the variable can be resolved
- RobotCode tries to resolve variables that are definied at variables section, command line variables and builtin variables. This make it possible to import libraries/resources/variables with the correct path and parameters.
-
show quick pick for debug/run configuration
- if there is no launch configuration selected and you want to run code with "Start Debugging" or "Run without Debugging", robotcode will show you a simple quick pick, where you can select a predefined configuration
-
some cosmetic changes in updating Test Explorer
-
correct handling of showing inline values and hover over variables in debugger
-
correct handling of variable assignment with an "equal" sign
-
add more regression tests
v0.5.1
added
- extend README.md
- added section about style customization
- extend feature description
- added file icons for robot files
- starting with VSCode Version 1.64, if the icon theme does not provide an icon for robot files, these icons are used
- add automatic debug configurations
- you don't need to create a launch.json to run tests in the debugger view
- correct step-in FINALLY in debugger
- test explorer activates now only if there are robot files in workspace folder
v0.5.0
added
- Added support for RobotFramework 5.0
- Debugger supports TRY/EXCEPT, WHILE,... correctly
- (Semantic)- highlighter detects new statements
- Formatter not uses internal tidy tool
- handle EXPECT AS's variables correctly
- Complete new statements
- Some completion templates for WHILE, EXCEPT, ...
- Discovering tests is now more error tolerant
- Semantic tokenizing now also detects ERROR and FATAL_ERROR tokens
- some cosmetic corrections in discoring tests
note: RobotFramework 5.0 Alpha 1 has a bug when parsing the EXCEPT AS statement,
so the highlighter does not work correctly with this version.
This bug is fixed in the higher versions.