Skip to content

Commit

Permalink
chore: upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
qarlosalberto committed Aug 6, 2023
1 parent 7481880 commit dd57ea9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/teroshdl/auto_package/templates/info.nj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"displayName": "TerosHDL",
"publisher": "teros-technology",
"description": "Powerful IDE for ASIC/FPGA: state machine viewer, linter, documentation, snippets... and more! ",
"version": "5.0.8",
"version": "5.0.9",
"engines": {
"vscode": "^1.74.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/teroshdl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "TerosHDL",
"publisher": "teros-technology",
"description": "Powerful IDE for ASIC/FPGA: state machine viewer, linter, documentation, snippets... and more! ",
"version": "5.0.8",
"version": "5.0.9",
"engines": {
"vscode": "^1.74.0"
},
Expand Down
8 changes: 7 additions & 1 deletion packages/teroshdl/resources/release_notes/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,17 @@
</a>
</p>
<br>
<p>Full documentation and tutorials:
<a href="https://terostechnology.github.io">
https://terostechnology.github.io
</a>
</p>
<br>

<h4 id="release-notes"> Minor changes v5.0.5 and v5.0.8</h4>
<h4 id="release-notes"> Minor changes v5.0.5 and v5.0.9</h4>
<p>
<ul>
<li> GUI improvements ⭐</li>
<li> Auto detection of compilation order in simulations ⭐</li>
<li> Linter is executed from file directory, so it's possible to use relative include directories ⭐</li>
<li> Fix error in documenter with templates</li>
Expand Down
2 changes: 1 addition & 1 deletion packages/teroshdl/src/features/documenter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class Documenter_manager extends Base_webview {
const config = this.get_config();

let uri = vscode.Uri.file(default_path);
vscode.window.showSaveDialog({ filters: filter, defaultUri: uri }).then(fileInfos => {
vscode.window.showSaveDialog({ title: "Save documentation", filters: filter, defaultUri: uri }).then(fileInfos => {
if (fileInfos?.path !== undefined) {
let path_norm = utils.normalize_path(fileInfos?.path);
this.show_export_message(path_norm);
Expand Down

0 comments on commit dd57ea9

Please sign in to comment.