Skip to content

Commit 84a6a1b

Browse files
authored
microbit: enable sign-in & cloud sync (#4970)
1 parent eb4b83c commit 84a6a1b

File tree

5 files changed

+28
-1
lines changed

5 files changed

+28
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ electron-out
1919
hexcache
2020
build
2121
crowdinstats.csv
22+
.pxt/
2223

2324
*.user
2425
*.sw?

docs/static/providers/github-mark.png

4.17 KB
Loading

docs/static/providers/google-logo.svg

+1
Loading
+1
Loading

pxtarget.json

+25-1
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,35 @@
2525
"thumbnails": true,
2626
"publishing": true,
2727
"importing": true,
28+
"showBadges": false,
2829
"preferredPackages": [
2930
"Microsoft/pxt-neopixel"
3031
],
3132
"githubPackages": true,
3233
"cloudProviders": {
33-
"github": {}
34+
"github": {
35+
"id": "github",
36+
"name": "GitHub",
37+
"icon": "/static/providers/github-mark.png",
38+
"identity": false,
39+
"order": 3
40+
},
41+
"microsoft": {
42+
"id": "microsoft",
43+
"name": "Microsoft",
44+
"icon": "/static/providers/microsoft-logo.svg",
45+
"identity": true,
46+
"redirect": true,
47+
"order": 1
48+
},
49+
"google": {
50+
"id": "google",
51+
"name": "Google",
52+
"icon": "/static/providers/google-logo.svg",
53+
"identity": true,
54+
"redirect": true,
55+
"order": 2
56+
}
3457
}
3558
},
3659
"compile": {
@@ -396,6 +419,7 @@
396419
"bluetoothPartialFlashing",
397420
"simScreenshot",
398421
"simGif",
422+
"identity",
399423
"blocksErrorList"
400424
],
401425
"bluetoothUartFilters": [

0 commit comments

Comments
 (0)