Skip to content

Commit

Permalink
update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilja Postnovs committed May 16, 2024
1 parent 50076ed commit 8f90abf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.19.0 (16-05-2024)

- New preference entry added: `ui5.plugin.parsingDelay`

## 1.18.1 (15-04-2024)

- [UI5 Linter](https://github.com/iljapostnovs/ui5plugin-linter) updated to v1.15.1
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ui5plugin",
"displayName": "SAPUI5 Extension",
"description": "Extension for working with UI5 projects",
"version": "1.18.2",
"version": "1.19.0",
"publisher": "iljapostnovs",
"license": "Apache-2.0",
"author": "Ilja Postnovs <ilja.postnovs@gmail.com>",
Expand Down Expand Up @@ -422,8 +422,8 @@
},
"ui5.plugin.parsingDelay": {
"type": "number",
"default": 1000,
"markdownDescription": "Delay for parsing the files. Increase it for heavy projects."
"default": 500,
"markdownDescription": "Delay for parsing JS/TS files. Increase it for complex projects."
}
},
"commands": [
Expand Down Expand Up @@ -559,4 +559,4 @@
"publisherId": "ec65c605-dbb1-4486-bd8a-a99b8c9e30da",
"isPreReleaseVersion": false
}
}
}
2 changes: 1 addition & 1 deletion src/classes/utils/FileWatcherMediator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class FileWatcherMediator {
}

delete FileWatcherMediator._parsingTimeout[document.fileName];
}, 1000);
}, vscode.workspace.getConfiguration("ui5.plugin").get<number>("parsingDelay"));
}
} else if (document.fileName.endsWith(".view.xml")) {
const viewContent = document.getText();
Expand Down

0 comments on commit 8f90abf

Please sign in to comment.