Skip to content

Commit

Permalink
Merge branch 'pr/1718' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Laské committed Jan 30, 2025
2 parents 2adf51c + f11ad73 commit fcf965d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Info Update : Planet Activity #1709
- Minute numbers still visible in clock activity even after switching to Nice Clock #1713
- Default Promotion to Queen in Chess Activity #1704
- Error loading Etoys activity #1717

## [1.8.0] - 2024-04-10
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ To remove media content for **Abecedarium**, remove directories:

The activity will look for media content on the server referenced in [activities/Abecedarium.activity/database/db_url.json](activities/Abecedarium.activity/database/db_url.json), by default `http://server.sugarizer.org/activities/Abecedarium.activity/`.

To remove resources for **Etoys**, remove directory [activities/Etoys.activity/resources](activities/Etoys.activity/resources) and replace the value `resources/etoys.image` in [activities/Etoys.activity/index.html](activities/Etoys.activity/index.html) by the remote location of the resources, for example `http://server.sugarizer.org/activities/Etoys.activity/resources/etoys.image`.
To remove resources for **Etoys**, remove directory [activities/Etoys.activity/resources](activities/Etoys.activity/resources) and the file [activities/Etoys.activity/etoys.image](activities/Etoys.activity/etoys.image). Then replace the value `resources/etoys.image` in [activities/Etoys.activity/index.html](activities/Etoys.activity/index.html) by the remote location of the resources, for example `http://server.sugarizer.org/activities/Etoys.activity/etoys.image`.

To remove resources for **Scratch**, remove directory [activities/Scratch.activity/static/internal-assets](activities/Scratch.activity/static/internal-assets) and remove the value `class="offlinemode"` in [activities/Scratch.activity/index.html](activities/Scratch.activity/index.html).

Expand Down
File renamed without changes.
7 changes: 5 additions & 2 deletions activities/Etoys.activity/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,16 @@
<script src="squeak.min.js"></script>
<script>
window.onload = function() {
SqueakJS.runSqueak("resources/etoys.image", sqCanvas, {
SqueakJS.runSqueak("etoys.image", sqCanvas, {
appName: "Etoys",
fixedWidth: 1200,
fixedHeight: 900,
fullscreen: true,
spinner: sqSpinner,
files: ["etoys.changes", "EtoysV5.stc"],
files: [
"resources/etoys.changes",
"resources/EtoysV5.stc"
],
root: "/Etoys",
templates: { "/Etoys": "resources" },
onQuit: function() {
Expand Down

0 comments on commit fcf965d

Please sign in to comment.