Skip to content

Commit

Permalink
Merge pull request #66 from mghdotdev/release/version-1-6-3
Browse files Browse the repository at this point in the history
Release/version 1 6 3
  • Loading branch information
mghdotdev authored Dec 28, 2023
2 parents 6b59ed1 + d57e800 commit c6aa02b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Miva IDE CHANGELOG

## v1.6.3

* Fixed Miva Script expression syntax hightlighting error.

## v1.6.2

* Updated CHANGELOG header to be consistant with README.
* Updated CHANGELOG header to be consistent with README.
* Fixed MvASSIGNARRAY completion bugs.

## v1.6.1
Expand Down
5 changes: 4 additions & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,12 @@ This is the existing development flow. When new LSK or Empressa versions are rel
- [x] Add "What's New" popup after upgrading.
- [x] Fix completions when inside mvt:item functions.

### v1.6.3

- [x] Fix syntax issue in Miva Script where an expression scope is active inside embedded JavaScript curly code blocks.

### v1.X.0

- [ ] Fix syntax issue in Miva Script where an expression scope is active inside embedded JavaScript curly code blocks.
- [ ] Fix indentation issues when running Reindent Lines.
- mvt:comment with pipes

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-miva-ide",
"displayName": "Miva IDE",
"description": "Syntax highlighting, snippets and tools for building websites with Miva.",
"version": "1.6.2",
"version": "1.6.3",
"engines": {
"vscode": "^1.77.0"
},
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/MV/mv.injection.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@
]
},
"expression": {
"begin": "{",
"begin": "\\{(?!\\n)",
"beginCaptures": {
"0": {
"name": "punctuation.definition.expression.begin.mv"
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/MV/mv.injection.tmLanguage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ repository:

# =-======================== Expression ========================-= #
expression:
begin: '{'
begin: '\{(?!\n)'
beginCaptures:
0: {name: punctuation.definition.expression.begin.mv}
end: '}'
Expand Down

0 comments on commit c6aa02b

Please sign in to comment.