Skip to content

Commit 7aa49e0

Browse files
authored
Merge pull request #168 from skogsbaer/sw/fix-163
fix #163
2 parents bcca103 + 344b45e commit 7aa49e0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ChangeLog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Write Your Python Program - CHANGELOG
22

3-
* ? (?)
3+
* 1.3.0 (2024-12-01)
44
* Fix bug with union of unions
5+
* Improve scrolling #148
6+
* Improve highlighting of current line #155
7+
* Improve rendering of classes and functions #154
8+
* Several other bugfixes
59
* 1.2.1 (2024-11-05)
610
* Fix assets for visualization
711
* 1.2.0 (2024-11-04)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Write Your Python Program!",
44
"description": "A user friendly python environment for beginners",
55
"license": "See license in LICENSE",
6-
"version": "1.2.1",
6+
"version": "1.3.0",
77
"publisher": "StefanWehr",
88
"icon": "icon.png",
99
"engines": {

src/programflow-visualization/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function getProgFlowVizCallback(context: vscode.ExtensionContext, outChan
1919
vscode.window.showWarningMessage('Not a Python file');
2020
return;
2121
}
22-
vscode.window.activeTextEditor?.document.save();
22+
await vscode.window.activeTextEditor?.document.save();
2323

2424
const content = await FileHandler.getContentOf(file);
2525
const fileHash = Md5.hashStr(content);

0 commit comments

Comments
 (0)