├── .github └── CONTRIBUTING.md ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── src ├── block_images │ ├── arrows.png │ └── flag.png ├── build_translations.py ├── commands.js ├── defs.css ├── dev.html ├── extra_strings.py ├── index.html ├── inline-dev.html ├── lib │ └── style.css ├── package_commands.py ├── scratchblocks.js ├── translations-all.js └── translations.js └── tests ├── all-blocks-de.txt ├── all-blocks.txt ├── images.txt ├── languages.txt ├── line-test.txt ├── lt-gt.txt ├── of-block.txt ├── snap-hacks.txt ├── stop-block.txt └── stress-test.txt /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | node_modules 4 | *.pyc 5 | src/_cache 6 | build/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/package.json -------------------------------------------------------------------------------- /src/block_images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/block_images/arrows.png -------------------------------------------------------------------------------- /src/block_images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/block_images/flag.png -------------------------------------------------------------------------------- /src/build_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/build_translations.py -------------------------------------------------------------------------------- /src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/commands.js -------------------------------------------------------------------------------- /src/defs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/defs.css -------------------------------------------------------------------------------- /src/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/dev.html -------------------------------------------------------------------------------- /src/extra_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/extra_strings.py -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/index.html -------------------------------------------------------------------------------- /src/inline-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/inline-dev.html -------------------------------------------------------------------------------- /src/lib/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/lib/style.css -------------------------------------------------------------------------------- /src/package_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/package_commands.py -------------------------------------------------------------------------------- /src/scratchblocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/scratchblocks.js -------------------------------------------------------------------------------- /src/translations-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/translations-all.js -------------------------------------------------------------------------------- /src/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/src/translations.js -------------------------------------------------------------------------------- /tests/all-blocks-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/all-blocks-de.txt -------------------------------------------------------------------------------- /tests/all-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/all-blocks.txt -------------------------------------------------------------------------------- /tests/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/images.txt -------------------------------------------------------------------------------- /tests/languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/languages.txt -------------------------------------------------------------------------------- /tests/line-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/line-test.txt -------------------------------------------------------------------------------- /tests/lt-gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/lt-gt.txt -------------------------------------------------------------------------------- /tests/of-block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/of-block.txt -------------------------------------------------------------------------------- /tests/snap-hacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/snap-hacks.txt -------------------------------------------------------------------------------- /tests/stop-block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/stop-block.txt -------------------------------------------------------------------------------- /tests/stress-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratchblocks/HEAD/tests/stress-test.txt --------------------------------------------------------------------------------