Skip to content

Commit 393c095

Browse files
committed
Changelog
1 parent 2ce762a commit 393c095

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

hacky-file-getter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function getDataURL(blob) {
106106
const reader = new FileReader();
107107
reader.onload = e => reader.result
108108
? res(reader.result)
109-
: rej(new Error('File might be too large (could not generate a data URI of the file).'));
109+
: rej(new Error('File might be too large (could not generate a data URI of the file). Try generating a .zip instead?'));
110110
reader.onerror = rej
111111
reader.readAsDataURL(blob);
112112
});

index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ <h3><em>Convert a Scratch project to HTML</em></h3>
108108
<p id="note-4"><a href="#ref-4"><sup>4</sup></a>If a cloud variable with the name "☁ eval" is set, it'll run the variable value as JavaScript and store it in a cloud variable named "☁ eval output"; if there is an error, it'll be stored in "☁ eval error." If you're using a custom cloud server, then cloud variables whose names start with "☁ local storage" will store their values in localStorage instead of in the server.</p>
109109
<h2>Update history</h2>
110110
<p>See the code and previous versions on <a href="https://github.com/SheepTester/htmlifier/">Github</a>.</p>
111+
<h3>2020-06-13</h3>
112+
<ul>
113+
<li>More options for styling variable/list monitors</li>
114+
<li>Option to generate a .zip of files</li>
115+
<li>Option to preview the HTMLified project</li>
116+
<li>Readded the option for a progress counter despite lack of demand</li>
117+
<li>Warn if a file might be too large for JavaScript to HTMLify</li>
118+
<li>Fixed HTMLifying 2.0 projects</li>
119+
</ul>
111120
<h3>2020-06-01</h3>
112121
<ul>
113122
<li>Option to remove clone/list length limits</li>

0 commit comments

Comments
 (0)