Skip to content

Commit

Permalink
ready for v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-uk committed Oct 5, 2019
1 parent 70381b9 commit fe8dc37
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## 0.3.1
- Export as PNG
- Theme support (not fully implemented, only one theme currently 'original')
- Improved colouring on links and linked deployments
- Bug fixes on linked templates, quelle suprise
- VS Code theme colouring on links between nodes and box around linked deployments
- Fixes to expression evaluation (uri, replace) and guid() function added
- Yet more fixes on linked templates
- Large scale internal refactoring for better code structure & TypeScript


## 0.3.0
Expand Down
5 changes: 3 additions & 2 deletions src/lib/arm-exp-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export default class ARMExpressionParser {
}
}

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

// It looks like a string literal
// It looks like a string literal in single quotes
match = exp.match(/^\'(.*)\'$/);
if(match) {
return match[1];
Expand Down

0 comments on commit fe8dc37

Please sign in to comment.