Skip to content

Commit

Permalink
Fix stopping py-enigma code (#1135)
Browse files Browse the repository at this point in the history
Due to there not being an `after` in the pyodide vendored package the
stop button was disabled
  • Loading branch information
sra405 authored Nov 8, 2024
1 parent 0ad0097 commit 2aa21e3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

## [0.28.6] - 2024-10-29
## [0.28.7] - 2024-11-08

### Fixed

- Bug causing py-enigma code to disable stop button

## [0.28.6] - 2024-11-08

### Fixed

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

### Removed
### Removed

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

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


## [0.27.1] - 2024-10-01

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

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

[unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.28.6...HEAD
[unreleased]: https://github.com/RaspberryPiFoundation/editor-ui/compare/v0.28.7...HEAD
[0.28.7]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.7
[0.28.6]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.6
[0.28.5]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.5
[0.28.4]: https://github.com/RaspberryPiFoundation/editor-ui/releases/tag/v0.28.4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@raspberrypifoundation/editor-ui",
"version": "0.28.6",
"version": "0.28.7",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.8",
Expand Down
1 change: 1 addition & 0 deletions src/PyodideWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ const PyodideWorker = () => {
`${process.env.ASSETS_URL}/pyodide/packages/py_enigma-0.1-py3-none-any.whl`,
);
},
after: () => {},
},
turtle: {
before: async () => {
Expand Down

0 comments on commit 2aa21e3

Please sign in to comment.