Skip to content

Commit

Permalink
Fix dumb but big bug: didn't rename ratio16to9 -> customSize oof
Browse files Browse the repository at this point in the history
  • Loading branch information
SheepTester committed Mar 29, 2020
1 parent 9c37610 commit fac116a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions htmlifier/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ <h3><em>Convert a Scratch project to HTML</em></h3>
<p id="note-1"><a href="#ref-1"><sup>1</sup></a>You may have to deal with privacy laws around cookies outside of Scratch.</p>
<p id="note-2"><a href="#ref-2"><sup>2</sup></a>Compatibility mode forces projects to run at 30 FPS, like in Scratch 2.0. Turning this off allows the project to run at a higher framerate (usually 60 FPS, depending on the computer screen's refresh rate).</p>
<h2>Update history</h2>
<h3>2020-03-29</h3>
<ul>
<li>Fixed custom stage sizes</li>
</ul>
<h3>2020-03-27</h3>
<ul>
<li>Show an image such as a gif while loading</li>
Expand Down Expand Up @@ -189,9 +193,6 @@ <h3>2019-02-09</h3>
title: title.value,
username: username.value,
log,
/* no-offline */
ratio16to9: wider.checked,
/* /no-offline */
progressBar: progressBar.checked,
fullscreen: fullscreen.checked,
monitorColour: useColour.checked ? monitorColour.value : null,
Expand All @@ -200,6 +201,7 @@ <h3>2019-02-09</h3>
projectId: id.value,
loadingImage: useLoadingImage ? loadingImage.files[0] : null,
/* no-offline */
customRatio: wider.checked,
width: wider.checked ? width.value : 480,
height: wider.checked ? height.value : 360,
// extension: extensionURL.value || null
Expand Down

0 comments on commit fac116a

Please sign in to comment.