Skip to content

Commit 49703c5

Browse files
authored
Merge pull request #7 from WyattSL/experimental
experimental
2 parents f2334db + 873be6f commit 49703c5

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
## 1.6.2
2+
- Hotfix for HoverDocs
3+
14
## 1.6.1
2-
- Nightly functions are now highlighted.
5+
- Support for the new nightly functions.
36

47
## 1.6.0
58
- Introduced support for error checking, will currently check for disallowed functions inside encryption/decryption. Will be expanded in future releases.

extension.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ function activate(context) {
1919
if (Array.isArray(docs)) {
2020
docs = docs.join("\n\n\n")
2121
}
22-
if (Encryption.includes(word)) docs = docs + "\n\n\**This function cannot be used in encryption.*";
22+
if (Encryption.includes(word)) docs = docs + "\n\n\This function cannot be used in encryption.";
2323
if (docs) {
2424
return new vscode.Hover({
2525
language: "greyscript",
26-
value: new vscode.MarkdownString(docs, true)
26+
value: docs
2727
});
2828
}
2929
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"email": "[email protected]",
99
"url": "https://github.com/WyattSL"
1010
},
11-
"version": "1.6.1",
11+
"version": "1.6.2",
1212
"repository": {
1313
"type": "git",
1414
"url": "https://github.com/WyattSL/greyscript.git"

0 commit comments

Comments
 (0)