pxt-core 9.0.7 → 9.1.2

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.
@@ -1,13 +1,5 @@
1
1
  # Online Accounts and MakeCode
2
2
 
3
- ### ~ hint
4
-
5
- #### Sign in with MakeCode Arcade
6
-
7
- **Note**: This feature is only available in [**MakeCode Arcade**](https://arcade.makecode.com).
8
-
9
- ### ~
10
-
11
3
  ## What is a Online Account?
12
4
 
13
5
  An online account is a user account with a provider of online services such as Microsoft or Google. MakeCode allows you to sign in using an account with either Microsoft or Google.
@@ -22,7 +14,7 @@ Google accounts are for sign-in access to Google's services such as GMail, YouTu
22
14
 
23
15
  ## How does it work in MakeCode?
24
16
 
25
- A number of new features are coming that will only be available to signed-in users. These features need to know your identity so they can do things for you like store data in the cloud, and connect you to other users. The first of these features is one we're calling [Cloud Sync](/identity/cloud-sync). With Cloud Sync, when you're signed into MakeCode, we'll store your projects in the cloud where they're accessible from anywhere.
17
+ A number of new features are coming that will only be available to signed-in users. These features need to know your identity so they can do things for you like store data in the cloud, and connect you to other users. The first of these features is one we're calling [Cloud Sync](/identity/cloud-sync). With Cloud Sync, when you're signed into MakeCode, we'll store your projects in the cloud where they're accessible from anywhere. [Multiplayer](https://arcade.makecode.com/--multiplayer) is another feature in MakeCode Arcade which is only availabled to signed-in users.
26
18
 
27
19
  Click the sign in button in the upper right corner to log into MakeCode.
28
20
 
@@ -42,7 +34,7 @@ No. Sign in only if you want to take advantage of features like Cloud Sync.
42
34
 
43
35
  ## Does it cost money?
44
36
 
45
- Nope! Creating an MSA account is free. Using MakeCode is also free. As a reminder, MSA accounts work across a range of Microsoft products and services, so you can use it outside MakeCode. Some of these products and services may not be free (Minecraft Marketplace content, for example), but this is outside the MakeCode ecosystem.
37
+ Nope! Creating a Microsoft or Google account is free. Using MakeCode is also free. As a reminder, Microsoft accounts work across a range of Microsoft products and services, so you can use it outside MakeCode. Some of these products and services may not be free (Minecraft Marketplace content, for example), but this is outside the MakeCode ecosystem.
46
38
 
47
39
  ## What will other users see?
48
40
 
@@ -54,17 +46,17 @@ It is possible! Do you play Minecraft, game on an Xbox, subscribe to Office 365,
54
46
 
55
47
  ## Does this mean I have to create a new email address?
56
48
 
57
- No. You can create an MSA using your current email address if it is not hosted by Microsoft (e.g.: Gmail, Yahoo Mail, and others). When creating your MSA account, just enter your existing email address.
49
+ No. You can create a Microsoft or Google account using your current email address.
58
50
 
59
- Create a Microsoft Account using your current email address here https://account.microsoft.com/account.
51
+ Find out more about creating a Microsoft Account using your current email address here: https://account.microsoft.com/account.
60
52
 
61
53
  ## Can I use my school or work account?
62
54
 
63
- If your school or employer's email system is managed by Microsoft Azure Active Directory, then generally it should work in MakeCode subject to restrictions put in place by your IT dept.
55
+ If your school or employer's email system is managed by Microsoft or Google, then generally it should work in MakeCode subject to restrictions put in place by your IT department.
64
56
 
65
57
  ## When I sign in, what information does MakeCode collect about me?
66
58
 
67
- The privacy and safety of our users is very important to us. Microsoft MakeCode adheres to Microsoft's Privacy Policy https://makecode.com/privacy. We do not collect or use personal data beyond that needed to operate and support MakeCode features and services.
59
+ The privacy and safety of our users is very important to us. Microsoft MakeCode adheres to [Microsoft's Privacy Policies](https://makecode.com/privacy). We do not collect or use personal data beyond that needed to operate and support MakeCode features and services. Read the [MakeCode Privacy Frequently Asked Questions](https://makecode.com/privacy-faq) page for more information.
68
60
 
69
61
  ## How can I completely remove my data and profile information?
70
62
 
@@ -76,4 +68,4 @@ No. At the time you delete your profile, all of your cloud saved projects are ex
76
68
 
77
69
  ## How does this work with GitHub?
78
70
 
79
- GitHub provides a source code repository for your projects to help with version control (learn more here https://arcade.makecode.com/github). You can still sign into MakeCode with a Microsoft Account and use Cloud Sync to store your projects in the cloud, even while using GitHub.
71
+ GitHub provides a source code repository for your projects to help with version control (learn more here https://arcade.makecode.com/github). You can still sign into MakeCode with a Microsoft or Google Account and use Cloud Sync to store your projects in the cloud, even while using GitHub.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "9.0.7",
3
+ "version": "9.1.2",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
package/theme/common.less CHANGED
@@ -1471,6 +1471,10 @@ p.ui.font.small {
1471
1471
  }
1472
1472
  }
1473
1473
 
1474
+ .sandbox .simPanel .simtoolbar {
1475
+ display: none;
1476
+ }
1477
+
1474
1478
  /***********************************
1475
1479
  Headless Simtoolbar (Minecraft)
1476
1480
  ************************************/
@@ -1693,7 +1697,7 @@ p.ui.font.small {
1693
1697
  Mini sim view
1694
1698
  *******************************/
1695
1699
 
1696
- #root.miniSim:not(.fullscreensim) {
1700
+ #root.miniSim:not(.fullscreensim, .sandbox) {
1697
1701
  /* Layout */
1698
1702
  .simPanel.ui.items {
1699
1703
  position: fixed;
@@ -2105,7 +2109,7 @@ p.ui.font.small {
2105
2109
  display: inline-block!important;
2106
2110
  }
2107
2111
 
2108
- #root.miniSim:not(.fullscreensim) {
2112
+ #root.miniSim:not(.fullscreensim, .sandbox) {
2109
2113
  div.simframe {
2110
2114
  margin-bottom: -0.4rem
2111
2115
  }
@@ -2171,6 +2175,7 @@ p.ui.font.small {
2171
2175
  .fullscreensim .simtoolbar .ui.button {
2172
2176
  font-size: 1rem;
2173
2177
  }
2178
+
2174
2179
  .collapsedEditorTools #mobiletogglesim {
2175
2180
  bottom: @editorToolsCollapsedMobileHeight;
2176
2181
  }
@@ -2392,12 +2397,12 @@ button.ui.button.hostmultiplayergame-button {
2392
2397
  --multiplayer-presence-icon-4: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='29' fill='%234DA64D'%3E%3Cpath d='M12.754 14.686a7 7 0 100-14 7 7 0 000 14zm-8.5 2a3.5 3.5 0 00-3.5 3.5v.5c0 2.393 1.523 4.417 3.685 5.793 2.174 1.384 5.117 2.207 8.315 2.207 3.199 0 6.141-.823 8.315-2.206 2.163-1.377 3.685-3.4 3.685-5.794v-.5a3.5 3.5 0 00-3.5-3.5h-17z'/%3E%3C/svg%3E");
2393
2398
  }
2394
2399
 
2395
- #root:not(.fullscreensim) .multiplayer-presence {
2400
+ #root:not(.fullscreensim, .sandbox) .multiplayer-presence {
2396
2401
  margin: 0;
2397
2402
  margin-bottom: -.5rem;
2398
2403
  }
2399
2404
 
2400
- .miniSim:not(.fullscreensim):not(.tabTutorial) .multiplayer-presence {
2405
+ .miniSim:not(.fullscreensim, .sandbox):not(.tabTutorial) .multiplayer-presence {
2401
2406
  display: none;
2402
2407
  }
2403
2408