Skip to content

Commit

Permalink
Release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Oct 5, 2019
1 parent a3019cd commit fc35c83
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.5.1 (2019-10-05)

* Updated extension for VSCode 1.38.1. This resolved several issues
that occurred when using newer VSCode versions:
Expand Down
Binary file modified demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 11 additions & 34 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": "gfmarkup",
"displayName": "GameFAQs Markup",
"description": "Syntax highlighting and preview for GameFAQs Markup files",
"version": "0.5.0",
"version": "0.5.1",
"publisher": "mtkennerly",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function activate(context: vscode.ExtensionContext) {
diagnoseIssues(event.document, diagnostics);
}));

vscode.languages.registerFoldingRangeProvider({ scheme: "untitled", language: "gfmarkup" }, new GfmFoldingRangeProvider());
vscode.languages.registerFoldingRangeProvider({ scheme: "*", language: "gfmarkup" }, new GfmFoldingRangeProvider());
}

export function deactivate() { }

0 comments on commit fc35c83

Please sign in to comment.