Skip to content

Commit

Permalink
fixed jit-compiling dropdown choices (e.g. "item /last/ of list")
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Feb 4, 2023
1 parent 0012076 commit 572b367
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
12 changes: 10 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@
* **Documentation Updates:**
* **Translation Updates:**

## 8.1.1:
## 8.1.3:
* **Notable Fixes:**
* fixed jit-compiling dropdown choices (e.g. "item /last/ of list")

### 2023-02-04
* threads: fixed jit-compiling dropdown choices (e.g. "item /last/ of list")
* gui: prepared v8.1.3 patch

## 8.1.2:
* **Notable Fixes:**
* fixed #3176 - triggering user interaction hat blocks

### 2023-02-03
### 2023-02-04
* objects: fixed #3176 - triggering user interaction hat blocks
* gui: prepared v8.1.2 patch

Expand Down
4 changes: 2 additions & 2 deletions snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
<script src="src/symbols.js?version=2021-03-03"></script>
<script src="src/widgets.js?version=2022-10-19"></script>
<script src="src/blocks.js?version=2023-02-03"></script>
<script src="src/threads.js?version=2023-02-03"></script>
<script src="src/threads.js?version=2023-02-04"></script>
<script src="src/objects.js?version=2023-02-04"></script>
<script src="src/scenes.js?version=2022-10-25"></script>
<script src="src/gui.js?version=2023-02-03"></script>
<script src="src/gui.js?version=2023-02-04"></script>
<script src="src/paint.js?version=2021-07-05"></script>
<script src="src/lists.js?version=2023-01-31"></script>
<script src="src/byob.js?version=2023-02-01"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ modules.gui = '2022-February-04';

// Declarations

var SnapVersion = '8.1.2';
var SnapVersion = '8.1.3';

var IDE_Morph;
var ProjectDialogMorph;
Expand Down
4 changes: 2 additions & 2 deletions src/threads.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ StagePickerMorph, CustomBlockDefinition*/

/*jshint esversion: 11, bitwise: false, evil: true*/

modules.threads = '2023-February-03';
modules.threads = '2023-February-04';

var ThreadManager;
var Process;
Expand Down Expand Up @@ -8782,7 +8782,7 @@ JSCompiler.prototype.compileInput = function (inp) {
return 'new List([' + this.compileInputs(value) + '])';
default:
if (value instanceof Array) {
return '"' + this.escape(value[0]) + '"';
return '["' + this.escape(value[0]) + '"]';
}
throw new Error(
'compiling does not yet support\n' +
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var snapVersion = '8.1.2',
var snapVersion = '8.1.3',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit 572b367

Please sign in to comment.