Skip to content

Commit fe8dc37

Browse files
committed
ready for v0.3.1
1 parent 70381b9 commit fe8dc37

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
## 0.3.1
22
- Export as PNG
33
- Theme support (not fully implemented, only one theme currently 'original')
4-
- Improved colouring on links and linked deployments
5-
- Bug fixes on linked templates, quelle suprise
4+
- VS Code theme colouring on links between nodes and box around linked deployments
5+
- Fixes to expression evaluation (uri, replace) and guid() function added
6+
- Yet more fixes on linked templates
7+
- Large scale internal refactoring for better code structure & TypeScript
68

79

810
## 0.3.0

src/lib/arm-exp-parser.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ export default class ARMExpressionParser {
5959
}
6060
}
6161

62-
// It looks like a 'plain' function call
62+
// It looks like a 'plain' function call without . something after it
63+
// For historic reasons we treat these separate and I don't want to mess with it, as it works
6364
match = exp.match(/(\w+)\((.*)\)/);
6465
if(match) {
6566
let funcName = match[1].toLowerCase();
@@ -109,7 +110,7 @@ export default class ARMExpressionParser {
109110
}
110111
}
111112

112-
// It looks like a string literal
113+
// It looks like a string literal in single quotes
113114
match = exp.match(/^\'(.*)\'$/);
114115
if(match) {
115116
return match[1];

0 commit comments

Comments
 (0)