Skip to content

Commit 2aa21e3

Browse files
authored
Fix stopping py-enigma code (#1135)
Due to there not being an `after` in the pyodide vendored package the stop button was disabled
1 parent 0ad0097 commit 2aa21e3

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9-
## [0.28.6] - 2024-10-29
9+
## [0.28.7] - 2024-11-08
10+
11+
### Fixed
12+
13+
- Bug causing py-enigma code to disable stop button
14+
15+
## [0.28.6] - 2024-11-08
1016

1117
### Fixed
1218

@@ -19,7 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1925
- REACT_APP_API_ENDPOINT env var is now only a default for the editor-wc prop, which can be overridden (#1124)
2026
- added "Help" link to the information panel in the sidebar as the first link
2127

22-
### Removed
28+
### Removed
2329

2430
- REACT_APP_AUTHENTICATION_URL env var no longer used and is instead a editor-wc prop (#1124)
2531

@@ -80,7 +86,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8086
- Build to include public files (#1112)
8187
- Persisting choice of tabbed/split view when running `python` code (#1114)
8288

83-
8489
## [0.27.1] - 2024-10-01
8590

8691
### Fixed
@@ -966,7 +971,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
966971

967972
- Events in Web Component indicating whether Mission Zero criteria have been met (#113)
968973

969-
[unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.28.6...HEAD
974+
[unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.28.7...HEAD
975+
[0.28.7]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.7
970976
[0.28.6]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.6
971977
[0.28.5]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.5
972978
[0.28.4]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@raspberrypifoundation/editor-ui",
3-
"version": "0.28.6",
3+
"version": "0.28.7",
44
"private": true,
55
"dependencies": {
66
"@apollo/client": "^3.7.8",

src/PyodideWorker.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ const PyodideWorker = () => {
165165
`${process.env.ASSETS_URL}/pyodide/packages/py_enigma-0.1-py3-none-any.whl`,
166166
);
167167
},
168+
after: () => {},
168169
},
169170
turtle: {
170171
before: async () => {

0 commit comments

Comments
 (0)