Skip to content

Commit

Permalink
Removed "∑" from list properties menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Apr 17, 2024
1 parent ef94b03 commit 4dbd871
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Snap! (BYOB) History

## in development:
* **Notable Changes:**
* Removed "∑" from list properties menu
* **Notable Fixes:**
* fixed #3342
* fixed #3336
Expand All @@ -15,6 +17,7 @@
* fixed a spelling glitch in the camera dialog, thanks, bruh-9000!
* fixed another spelling glitch in the Danish translation
* Dutch translation update, thanks, Nykki Rusticus!
* blocks: Removed "∑" from list properties menu (commented out for backwards compatibility)

## 9.2.14:
* **New Features:**
Expand Down
2 changes: 1 addition & 1 deletion snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<script src="src/morphic.js?version=2024-03-01"></script>
<script src="src/symbols.js?version=2024-01-24"></script>
<script src="src/widgets.js?version=2023-05-24"></script>
<script src="src/blocks.js?version=2024-04-05"></script>
<script src="src/blocks.js?version=2024-04-17"></script>
<script src="src/threads.js?version=2024-04-17"></script>
<script src="src/objects.js?version=2024-01-15"></script>
<script src="src/scenes.js?version=2022-10-29"></script>
Expand Down
4 changes: 2 additions & 2 deletions src/blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ SVG_Costume, embedMetadataPNG, ThreadManager, snapEquals*/

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

modules.blocks = '2024-April-05';
modules.blocks = '2024-April-17';

var SyntaxElementMorph;
var BlockMorph;
Expand Down Expand Up @@ -498,7 +498,7 @@ SyntaxElementMorph.prototype.labelParts = {
'sorted' : ['sorted'],
'shuffled' : ['shuffled'],
'reverse' : ['reverse'],
'\u03a3' : ['\u03a3'], // Greek capital Sigma, sum of all numbers
// '\u03a3' : ['\u03a3'], // Greek capital Sigma, sum of all numbers
'~' : null,
'text' : ['text'],
'lines' : ['lines'],
Expand Down

0 comments on commit 4dbd871

Please sign in to comment.