Skip to content

Commit

Permalink
prepared v10.1.2 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Oct 13, 2024
1 parent 6770614 commit d9efec8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# Snap! (BYOB) History

## in development:

## 10.1.2:
* **Notable Fixes:**
* only bind rings that replace list items to the list as environment if they are referred to by a non-numerical index (OOP 2.0)
* fixed #3403 editing a primitive and changing a default input
* fixed naming a custom block category to a JS property such as "constructor"

### 2024-09-13
* objects: fixed naming a custom block category to a JS property such as "constructor"
* prepared v10.1.2 patch

### 2024-09-12
* threads: only bind rings replaced in a list to the list as environment if they are referred to by a non-numerical index (OOP 2.0)
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=2024-09-13"></script>
<script src="src/widgets.js?version=2024-07-24"></script>
<script src="src/blocks.js?version=2024-10-11"></script>
<script src="src/threads.js?version=2024-10-12"></script>
<script src="src/threads.js?version=2024-10-13"></script>
<script src="src/objects.js?version=2024-10-13"></script>
<script src="src/scenes.js?version=2024-05-28"></script>
<script src="src/gui.js?version=2024-10-12"></script>
<script src="src/gui.js?version=2024-10-13"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2024-09-16"></script>
<script src="src/byob.js?version=2024-10-10"></script>
Expand Down
4 changes: 2 additions & 2 deletions src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ BlockVisibilityDialogMorph, ThreadManager, isString, SnapExtensions, snapEquals

// Global stuff ////////////////////////////////////////////////////////

modules.gui = '2024-October-12';
modules.gui = '2024-October-13';

// Declarations

var SnapVersion = '10.1.1';
var SnapVersion = '10.1.2';

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

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

modules.threads = '2024-October-12';
modules.threads = '2024-October-13';

var ThreadManager;
var Process;
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*global self, caches*/
/*jshint esversion: 6*/
var snapVersion = '10.1.1',
var snapVersion = '10.1.2',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit d9efec8

Please sign in to comment.