Skip to content

Commit f7ce44f

Browse files
committed
Added additional blockly section icons.
Restructured collapsed blocks for better overview. Smaller UI adjustements to better UI experience.
1 parent f2de1ef commit f7ce44f

File tree

12 files changed

+435
-290
lines changed

12 files changed

+435
-290
lines changed

app/chrome_app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"short_name": "Coding with Chrome",
1010
"description": "Learn, improve, or teach coding skills within a Chrome browser.",
1111
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSWdCJSwkgFTY9d993Quot277oCS2PCM2H/F6U28NE8D3Z21GXS/7qW8XCGShB054Wboq62pP679f9tB9F+GRHzOh/an4zIu+Uhb3ZKVzZLJbHsP8N+E5wk3wgwOBgE+UXCy9I8i1RpfzutJ4aha+YEzvCsVpo6UwsuWiXORB9yRU5NuooYX+fhVpWZmrZJo4vqzQhuoJ/uWiQujABXXo4qdrclwSw8+JlpWLMqHHQ6HE8Sf7VWDdGvRdYP6LRZobWqovb659qEumJ0bxhwXtHkWgPHQWtW35T/r/oH8uuke35pH+YtBtaOqN5U3bYGPinP0bYrI33OSLUJx/DrC1wIDAQAB",
12-
"version": "5.4.20",
12+
"version": "5.4.23",
1313
"oauth2": {
1414
"client_id": "418162477970-2qmsb2sp3m522hf292154favsjgpsj9n.apps.googleusercontent.com",
1515
"scopes": [

app/nw_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binary",
3-
"version": "5.4.20",
3+
"version": "5.4.23",
44
"main": "js/background.js",
55
"window": {
66
"title": "Coding with Chrome",

locales/deu/blocks/phaser_blocks.js

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,22 @@ Locales['deu'] = Locales['deu'] || {};
2828
/* eslint-disable max-len */
2929
Object.assign(Locales['deu'], {
3030
'BLOCKS_PHASER_AUDIO': 'Audio',
31+
'BLOCKS_PHASER_COLLIDE_WITH': 'kollidiert mit',
3132
'BLOCKS_PHASER_CREATE': 'Erstellen',
33+
'BLOCKS_PHASER_EXAMPLE_FILES': 'Beispiel Dateien',
34+
'BLOCKS_PHASER_FILES': 'Dateien',
3235
'BLOCKS_PHASER_GAME': 'Spiel',
33-
'BLOCKS_PHASER_PRELOAD': 'Vorrausladen',
36+
'BLOCKS_PHASER_GENERATOR': 'Generatoren',
3437
'BLOCKS_PHASER_INPUT': 'Eingabe',
35-
'BLOCKS_PHASER_UPDATE': 'Aktualisieren',
36-
'BLOCKS_PHASER_RENDERER': 'Renderer',
37-
'BLOCKS_PHASER_FILES': 'Dateien',
38-
'BLOCKS_PHASER_EXAMPLE_FILES': 'Beispiel Dateien',
38+
'BLOCKS_PHASER_INPUTS': 'Eingaben',
3939
'BLOCKS_PHASER_ON_CREATE': 'beim Erstellen',
4040
'BLOCKS_PHASER_OPEN_FILE_LIBRARY': 'Öffne Datei Bibliothek',
41-
'BLOCKS_PHASER_COLLIDE_WITH': 'kollidiert mit',
41+
'BLOCKS_PHASER_PHYSICS_SPRITE': 'Physics Sprite',
42+
'BLOCKS_PHASER_PRELOAD': 'Vorrausladen',
43+
'BLOCKS_PHASER_RENDERER': 'Renderer',
44+
'BLOCKS_PHASER_SPRITE': 'Sprite',
45+
'BLOCKS_PHASER_TEXT': 'Text Objekt',
46+
'BLOCKS_PHASER_TILE_SPRITE': 'Tile Sprite',
47+
'BLOCKS_PHASER_UPDATE': 'Aktualisieren',
48+
'BLOCKS_PHASER_WORLD': 'Welt',
4249
});

locales/eng/blocks/phaser_blocks.js

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,22 @@ Locales['eng'] = Locales['eng'] || {};
2828
/* eslint-disable max-len */
2929
Object.assign(Locales['eng'], {
3030
'BLOCKS_PHASER_AUDIO': 'Audio',
31+
'BLOCKS_PHASER_COLLIDE_WITH': 'collide with',
3132
'BLOCKS_PHASER_CREATE': 'Create',
33+
'BLOCKS_PHASER_EXAMPLE_FILES': 'Example Files',
34+
'BLOCKS_PHASER_FILES': 'Files',
3235
'BLOCKS_PHASER_GAME': 'Game',
33-
'BLOCKS_PHASER_PRELOAD': 'Preload',
36+
'BLOCKS_PHASER_GENERATOR': 'Generators',
3437
'BLOCKS_PHASER_INPUT': 'Input',
35-
'BLOCKS_PHASER_UPDATE': 'Update',
36-
'BLOCKS_PHASER_RENDERER': 'Renderer',
37-
'BLOCKS_PHASER_FILES': 'Files',
38-
'BLOCKS_PHASER_EXAMPLE_FILES': 'Example Files',
38+
'BLOCKS_PHASER_INPUTS': 'Inputs',
3939
'BLOCKS_PHASER_ON_CREATE': 'on create',
4040
'BLOCKS_PHASER_OPEN_FILE_LIBRARY': 'Open file library',
41-
'BLOCKS_PHASER_COLLIDE_WITH': 'collide with',
41+
'BLOCKS_PHASER_PHYSICS_SPRITE': 'Physics Sprite',
42+
'BLOCKS_PHASER_PRELOAD': 'Preload',
43+
'BLOCKS_PHASER_RENDERER': 'Renderer',
44+
'BLOCKS_PHASER_SPRITE': 'Sprite',
45+
'BLOCKS_PHASER_TEXT': 'Text Object',
46+
'BLOCKS_PHASER_TILE_SPRITE': 'Tile Sprite',
47+
'BLOCKS_PHASER_UPDATE': 'Update',
48+
'BLOCKS_PHASER_WORLD': 'World',
4249
});

0 commit comments

Comments
 (0)