Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Write Your Python Program - CHANGELOG

* ? (?)
* 1.3.0 (2024-12-01)
* Fix bug with union of unions
* Improve scrolling #148
* Improve highlighting of current line #155
* Improve rendering of classes and functions #154
* Several other bugfixes
* 1.2.1 (2024-11-05)
* Fix assets for visualization
* 1.2.0 (2024-11-04)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Write Your Python Program!",
"description": "A user friendly python environment for beginners",
"license": "See license in LICENSE",
"version": "1.2.1",
"version": "1.3.0",
"publisher": "StefanWehr",
"icon": "icon.png",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/programflow-visualization/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function getProgFlowVizCallback(context: vscode.ExtensionContext, outChan
vscode.window.showWarningMessage('Not a Python file');
return;
}
vscode.window.activeTextEditor?.document.save();
await vscode.window.activeTextEditor?.document.save();

const content = await FileHandler.getContentOf(file);
const fileHash = Md5.hashStr(content);
Expand Down
Loading