scratch-blocks 2.0.0-spork.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -20
- package/TRADEMARK +1 -1
- package/dist/main.mjs +2 -0
- package/package.json +10 -3
- package/tsconfig.json +3 -4
- package/TODO.md +0 -16
- package/dist/main.js +0 -2
- package/dist/types/index.d.ts +0 -2
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/src/renderer/constants.d.ts +0 -41
- package/dist/types/src/renderer/constants.d.ts.map +0 -1
- package/index.ts +0 -4
- /package/dist/{main.js.LICENSE.txt → main.mjs.LICENSE.txt} +0 -0
package/README.md
CHANGED
|
@@ -2,32 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
Scratch Blocks is a library for building creative computing interfaces.
|
|
4
4
|
|
|
5
|
-
[](https://dl.circleci.com/status-badge/redirect/gh/LLK/scratch-blocks/tree/develop)
|
|
6
|
-
|
|
7
5
|

|
|
8
6
|
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
Scratch Blocks is a fork of Google's [Blockly](https://github.com/google/blockly) project that provides a design
|
|
12
|
-
specification and codebase for building creative computing interfaces. Together with the [Scratch Virtual Machine
|
|
13
|
-
(VM)](https://github.com/scratchfoundation/scratch-vm) this codebase allows for the rapid design and development of visual
|
|
14
|
-
programming interfaces. Unlike [Blockly](https://github.com/google/blockly), Scratch Blocks does not use [code
|
|
15
|
-
generators](https://developers.google.com/blockly/guides/configure/web/code-generators), but rather leverages the
|
|
16
|
-
[Scratch Virtual Machine](https://github.com/scratchfoundation/scratch-vm) to create highly dynamic, interactive programming
|
|
17
|
-
environments.
|
|
7
|
+
## Version 2.0
|
|
18
8
|
|
|
19
|
-
|
|
9
|
+
The Scratch and Blockly teams are excited to announce the release of Scratch Blocks 2.0! This release is no longer a
|
|
10
|
+
fork of Blockly, but rather depends on Blockly as a library. We've also updated from version (mumble mumble) of
|
|
11
|
+
Blockly to version 12, which includes many, many bug fixes and improvements.
|
|
20
12
|
|
|
21
|
-
|
|
13
|
+
There will likely be a few bumps in the road as we work toward a user-facing release of this work, but we're excited
|
|
14
|
+
to share the code and look forward to your feedback! If you see any problems, please check the
|
|
15
|
+
[issues](https://github.com/scratchfoundation/scratch-blocks/issues) and if you don't see it there, please consider
|
|
16
|
+
filing an issue with as much detail as possible. Thank you!
|
|
22
17
|
|
|
23
|
-
|
|
18
|
+
## Introduction
|
|
24
19
|
|
|
25
|
-
Scratch Blocks
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
20
|
+
Scratch Blocks builds on the [Blockly](https://github.com/RaspberryPiFoundation/blockly) library from Google and the
|
|
21
|
+
[Raspberry Pi Foundation](https://www.raspberrypi.org/), to provide a design specification and codebase for building
|
|
22
|
+
creative computing interfaces. Together with the
|
|
23
|
+
[Scratch Virtual Machine (VM)](https://github.com/scratchfoundation/scratch-vm) this codebase allows for the rapid
|
|
24
|
+
design and development of visual programming interfaces. Like
|
|
25
|
+
[Blockly](https://github.com/RaspberryPiFoundation/blockly), Scratch Blocks is written in TypeScript and bundled with
|
|
26
|
+
webpack. Unlike [Blockly](https://github.com/RaspberryPiFoundation/blockly), Scratch Blocks does not use
|
|
27
|
+
[code generators](https://developers.google.com/blockly/guides/configure/web/code-generators), but rather leverages
|
|
28
|
+
the [Scratch Virtual Machine](https://github.com/scratchfoundation/scratch-vm) to create highly dynamic, interactive
|
|
29
|
+
programming environments.
|
|
31
30
|
|
|
32
31
|
## Documentation
|
|
33
32
|
|
package/TRADEMARK
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
The Scratch trademarks, including the Scratch name, logo, the Scratch Cat, Gobo, Pico, Nano, Tera and Giga graphics (the "Marks"), are property of the
|
|
1
|
+
The Scratch trademarks, including the Scratch name, logo, the Scratch Cat, Gobo, Pico, Nano, Tera and Giga graphics (the "Marks"), are property of the Scratch Foundation. Marks may not be used to endorse or promote products derived from this software without specific prior written permission.
|