Skip to content

Commit

Permalink
docs(v1.0.3): update
Browse files Browse the repository at this point in the history
  • Loading branch information
sketchbuch committed Oct 12, 2023
1 parent 1f76b13 commit d6ff477
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.3](https://github.com/sketchbuch/vscode-file-theme-processor/compare/v1.0.2...v1.0.3) (2023-10-12)

- Updated readme. The readme showed an example using "vscode.Uri.parse()" when updating localResourceRoots. This was corrected to "vscode.Uri.file()" as parse did not let extension resources load on windows.

## [1.0.2](https://github.com/sketchbuch/vscode-file-theme-processor/compare/v1.0.0...v1.0.2) (2023-10-02)

- Updated readme
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private render() {
webviewView.webview.options = {
localResourceRoots: [
...themeData.localResourceRoots.map((resouceRoot) => {
return vscode.Uri.parse(resouceRoot)
return vscode.Uri.file(resouceRoot)
}),
...
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-file-theme-processor",
"version": "1.0.2",
"version": "1.0.3",
"description": "Provides VSCode Webviews with access to file icon theme data and generates required css to render file icon themes in Webviews.",
"author": "Sketchbuch",
"bugs": {
Expand Down

0 comments on commit d6ff477

Please sign in to comment.