Skip to content

Commit 829538d

Browse files
committed
update CHANGELOG
1 parent 9d523a6 commit 829538d

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@
184184
"name": "Run Extension",
185185
"type": "extensionHost",
186186
"request": "launch",
187-
"env": {
188-
"ROBOT_THREADPOOL_POOL_MAX_WORKERS": "6",
189-
"ROBOT_PROCESS_POOL_MAX_WORKERS": "4"
190-
},
187+
// "env": {
188+
// "ROBOT_THREADPOOL_POOL_MAX_WORKERS": "8",
189+
// "ROBOT_PROCESS_POOL_MAX_WORKERS": "4"
190+
// },
191191
"args": [
192192
"--extensionDevelopmentPath=${workspaceFolder}",
193193
],

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,28 @@ All notable changes to the "robotcode" extension will be documented in this file
44

55
## [Unreleased]
66

7+
### added
8+
9+
710
## 0.5.1
811

12+
- Resolving static variables, closes [#18](https://github.com/d-biehl/robotcode/issues/18)
13+
- 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.
14+
Something like this:
15+
16+
```robotframework
17+
*** Settings ***
18+
Resource ${RESOURCE_DIR}/some_settings.resource
19+
Library alibrary a_param=${LIB_ARG}
20+
Resource ${RESOURCE_DIR}/some_keywords.resource
21+
```
22+
23+
- If you hover over a variable, you will see, if the variable can be resolved
24+
25+
- show quick pick for debug configuration
26+
927
### added
28+
1029
- extend README.md
1130
- added section about style customization
1231
- extend feature description

0 commit comments

Comments
 (0)