@robotical/martyblocksjr 1.0.8 → 1.2.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 +2 -7
- package/editions/free/src/app.bundle.js +1 -1
- package/editions/free/src/app.bundle.js.map +1 -1
- package/editions/free/src/assets/blockicons/MartyCelebrate.svg +1476 -0
- package/editions/free/src/assets/blockicons/MartyEyesColour.svg +2 -0
- package/editions/free/src/assets/blockicons/MartyLedEyesP1.svg +2 -0
- package/editions/free/src/assets/blockicons/MartyLedEyesP2.svg +2 -0
- package/editions/free/src/assets/blockicons/MartyLedEyesP3.svg +2 -0
- package/editions/free/src/assets/lobby/privacyOff.svg +8 -0
- package/editions/free/src/assets/lobby/privacyOn.svg +8 -0
- package/editions/free/src/css/editor.css +76 -1
- package/editions/free/src/css/editormodal.css +0 -4
- package/editions/free/src/css/lobby.css +17 -13
- package/editions/free/src/gettingstarted.html +1 -1
- package/editions/free/src/home.html +5 -1
- package/editions/free/src/inapp/blocks.html +54 -0
- package/editions/free/src/inapp/images/celebrate.png +0 -0
- package/editions/free/src/inapp/images/marty_eyes_colour.png +0 -0
- package/editions/free/src/inapp/images/marty_led_eyes_P1.png +0 -0
- package/editions/free/src/inapp/images/marty_led_eyes_P2.png +0 -0
- package/editions/free/src/inapp/images/marty_led_eyes_P3.png +0 -0
- package/editions/free/src/inapp/privacy.html +107 -0
- package/editions/free/src/inapp/style/interface.css +0 -2
- package/editions/free/src/inapp/style/privacy.css +70 -0
- package/editions/free/src/localizations/ca.json +34 -0
- package/editions/free/src/localizations/cy.json +34 -0
- package/editions/free/src/localizations/da.json +34 -0
- package/editions/free/src/localizations/de.json +34 -0
- package/editions/free/src/localizations/el.json +34 -0
- package/editions/free/src/localizations/en.json +260 -6
- package/editions/free/src/localizations/es.json +34 -0
- package/editions/free/src/localizations/fr.json +34 -0
- package/editions/free/src/localizations/it.json +34 -0
- package/editions/free/src/localizations/ja.json +34 -0
- package/editions/free/src/localizations/ko.json +414 -0
- package/editions/free/src/localizations/nl.json +34 -0
- package/editions/free/src/localizations/no.json +34 -0
- package/editions/free/src/localizations/pl.json +34 -0
- package/editions/free/src/localizations/pt-br.json +34 -0
- package/editions/free/src/localizations/pt.json +34 -0
- package/editions/free/src/localizations/sv.json +34 -0
- package/editions/free/src/localizations/th.json +34 -0
- package/editions/free/src/localizations/tr.json +34 -0
- package/editions/free/src/localizations/uk.json +414 -0
- package/editions/free/src/localizations/zh-cn.json +34 -0
- package/editions/free/src/localizations/zh-tw.json +34 -0
- package/editions/free/src/media.json +1 -0
- package/firebase-debug.log +60 -0
- package/martyBlocksJRCliProfile +20 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -10,11 +10,6 @@ Platform | Status
|
|
|
10
10
|
iOS | Released in App Store
|
|
11
11
|
Android | Released in Google Play
|
|
12
12
|
|
|
13
|
-
## Release Schedule
|
|
14
|
-
|
|
15
|
-
As of this writing, the Android version now supports Android 4.4
|
|
16
|
-
and above.
|
|
17
|
-
|
|
18
13
|
## Architecture Overview
|
|
19
14
|
The diagram below illustrates the architecture of ScratchJr and
|
|
20
15
|
how the iOS (functional), Android (functional) and pure HTML5 (future)
|
|
@@ -44,7 +39,7 @@ Regardless of whether you are doing iOS development or Android development, you
|
|
|
44
39
|
*These instructions assume you are building both versions on Mac OSX, with [Homebrew](http://brew.sh) installed.*
|
|
45
40
|
|
|
46
41
|
1. Clone or update the code for this repo
|
|
47
|
-
2. Ensure you have node and npm [installed](
|
|
42
|
+
2. Ensure you have node and npm [installed](https://www.npmjs.com/get-npm).
|
|
48
43
|
3. Run <tt>sudo easy_install pysvg</tt> to install python svg libraries
|
|
49
44
|
4. Run <tt>brew install librsvg</tt> to install commandline `rsvg-convert`
|
|
50
45
|
5. Run <tt>brew install imagemagick</tt> to install commandline `magick`
|
|
@@ -83,7 +78,7 @@ set up your own [app analytics](https://firebase.google.com/products/analytics)
|
|
|
83
78
|
All changes should be made in a fork. Before making a pull request, ensure all changes pass our linter:
|
|
84
79
|
* <tt>npm run lint</tt>
|
|
85
80
|
|
|
86
|
-
For more information, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
81
|
+
For more information, see [CONTRIBUTING.md](https://github.com/LLK/scratchjr/blob/develop/.github/CONTRIBUTING.md).
|
|
87
82
|
|
|
88
83
|
## Code credits
|
|
89
84
|
ScratchJr would not be possible without free and open source libraries, including:
|