Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pxt v9 #1030

Merged
merged 33 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fc95f40
dump-pxt-v9
THEb0nny Aug 5, 2023
634676f
Update style.less
THEb0nny Aug 5, 2023
cd16b27
common-modal-header
THEb0nny Aug 5, 2023
a5e3ce0
blocks-or-JS-editor-toggle
THEb0nny Aug 5, 2023
bf193b4
fix-brend-logo-and-project-logo-overlay
THEb0nny Aug 6, 2023
66e681b
fix-color-editordropdown
THEb0nny Aug 6, 2023
0bb8f25
Update loader.svg
THEb0nny Aug 7, 2023
bc5a116
Update loader.svg
THEb0nny Aug 8, 2023
373f8aa
Update pxtarget.json
THEb0nny Aug 13, 2023
9a6db25
Update pxtarget.json
THEb0nny Aug 13, 2023
c425eaf
blocklySearchArea-hide-on-mobile
THEb0nny Aug 13, 2023
97e7b7a
blocklySearchArea-expanding-horiz
THEb0nny Aug 13, 2023
e6655f3
Update footer.html
THEb0nny Aug 14, 2023
d0213a3
blocklyTreeIcon-fontawsome-fix
THEb0nny Aug 17, 2023
ba1b415
blocklyFlyoutLabel-fontawsome-fix
THEb0nny Aug 17, 2023
df93f1b
blocklyTreeIconfunctions-fontawsome
THEb0nny Aug 17, 2023
756689d
icons-update
THEb0nny Aug 17, 2023
81cd3c3
sizing-fonts-icons
THEb0nny Aug 17, 2023
e53165f
broadcast-extension-changes
THEb0nny Aug 18, 2023
679c5e2
storage-category-properties-moved
THEb0nny Aug 18, 2023
16848e5
storage-ext-update-color
THEb0nny Aug 19, 2023
f0b4170
storage-extension-fix
THEb0nny Aug 19, 2023
f232532
Update storage-core.ts
THEb0nny Aug 19, 2023
4c78f6f
Update storage-core.ts
THEb0nny Aug 19, 2023
1fdd770
csv-separator-support
THEb0nny Aug 19, 2023
60118ef
libs-pxt-update
THEb0nny Aug 21, 2023
2caa2fa
Revert "libs-pxt-update"
THEb0nny Aug 21, 2023
ab7b2f8
brodcast-pxt-update
THEb0nny Aug 21, 2023
931177d
bump-pxt-9.1.10
THEb0nny Aug 21, 2023
6809c13
icon-properties-update
THEb0nny Aug 21, 2023
b607b7b
removed-margin-to-the-category-btn
THEb0nny Aug 22, 2023
e375c58
Update blockly-toolbox.less
THEb0nny Aug 22, 2023
22b47ef
blocklySearchArea-margin-top-zero
THEb0nny Aug 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docfiles/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<a class="item" href="https://makecode.com/privacy" target="_blank" rel="noopener">Privacy &amp; Cookies</a>
<a class="item" href="https://makecode.com/termsofuse" target="_blank" rel="noopener"> Terms Of Use</a>
<a class="item" href="https://makecode.com/trademarks" target="_blank" rel="noopener">Trademarks</a>
<div class="item">© 2018 Microsoft</div>
<div class="item">© 2023 Microsoft</div>
</div>
<div class="ui container horizontal small divided link list">
<a class="ui centered item" href="https://makecode.com/" title="Microsoft MakeCode" target="_blank" rel="noopener">Powered by Microsoft MakeCode</a>
Expand Down
4 changes: 4 additions & 0 deletions docs/static/icons/immersive-reader-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/static/icons/immersive-reader.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 82 additions & 0 deletions docs/static/loader.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/static/orglogowide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions editor/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum ParityType {
"space"
}
declare interface SerialOptions {
baudrate?: number;
baudRate?: number;
databits?: number;
stopbits?: number;
parity?: ParityType;
Expand Down Expand Up @@ -97,7 +97,7 @@ class WebSerialPackageIO implements pxt.packetio.PacketIO {
let io = WebSerialPackageIO.portIos.filter(i => i.port == port)[0];
if (!io) {
const options: SerialOptions = {
baudrate: 460800,
baudRate: 460800,
buffersize: 4096
};
io = new WebSerialPackageIO(port, options);
Expand Down
2 changes: 1 addition & 1 deletion fieldeditors/field_music.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class FieldMusic extends pxtblockly.FieldImages implements Blockly.FieldC
this.columns_ = parseInt(options.columns) || 4;
this.width_ = parseInt(options.width) || 450;

this.setText = Blockly.FieldDropdown.prototype.setText;
//this.setText = Blockly.FieldDropdown.prototype.setText;
this.updateSize_ = (Blockly.Field as any).prototype.updateSize_;

if (!pxt.BrowserUtils.isIE() && !soundCache) {
Expand Down
2 changes: 1 addition & 1 deletion fieldeditors/field_ports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class FieldPorts extends pxtblockly.FieldImages implements Blockly.FieldC
this.columns_ = parseInt(options.columns) || 4;
this.width_ = parseInt(options.width) || 300;

this.setText = Blockly.FieldDropdown.prototype.setText;
//this.setText = Blockly.FieldDropdown.prototype.setText;
this.updateSize_ = (Blockly.Field as any).prototype.updateSize_;
}

Expand Down
3 changes: 3 additions & 0 deletions libs/broadcast/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Brodcast

The library to ...
3 changes: 1 addition & 2 deletions libs/broadcast/broadcast.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/**
* Message broadcasting
*/
//% weight=70
//% color="#58AB41"
//% color="#58AB41" weight=80 icon="\uf27a" advanced=true
namespace broadcast {
const broadcastEventId = control.allocateNotifyEvent();
const broadcastDoneEventId = control.allocateNotifyEvent();
Expand Down
6 changes: 5 additions & 1 deletion libs/broadcast/pxt.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"name": "broadcast",
"version": "0.0.2",
"description": "Broadcasting messages - beta",
"files": [
"broadcast.ts"
],
"testFiles": [
"test.ts"
],
"public": true,
"dependencies": {
"core": "file:../core"
"core": "file:../core"
}
}
Empty file added libs/broadcast/test.ts
Empty file.
9 changes: 9 additions & 0 deletions libs/broadcast/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": true,
"outDir": "built",
"rootDir": "."
},
"exclude": ["pxt_modules/**/*test.ts"]
}
32 changes: 3 additions & 29 deletions libs/ev3/ns.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@

//% color="#68C3E2" weight=100 icon="\uf106"
//% groups='["Buttons", "Screen", "Power"]'
//% labelLineWidth=60
namespace brick {
}


//% color="#C8509B" weight=95 icon="\uf10f"
//% labelLineWidth=100
//% groups='["Touch Sensor", "Color Sensor", "Ultrasonic Sensor", "Gyro Sensor", "Infrared Sensor", "Remote Infrared Beacon", "Calibration"]'
Expand All @@ -16,46 +14,22 @@ namespace sensors {
//% groups='["Move", "Counters", "Properties"]'
//% labelLineWidth=50
namespace motors {

}

//% color="#00852B" icon="\uf1b9" weight=85
//% labelLineWidth=0
namespace chassis {

}

//% labelLineWidth=0
namespace behaviors {

}

//% color="#D67923" weight=80 icon="\uf10e"
//% groups='["Sounds", "Tone", "Volume", "Tempo"]'
namespace music {

}

//% color="#5F3109" icon="\uf107"
namespace control {

}

//% color="#011C32"
namespace serial {

}

//% color="#58AB41"
namespace loops {

}

//% color="#1E5AA8"
namespace light {

}

//% color="#b0b0b0" advanced=true weight=5
namespace storage {

//% icon="\uf0d0"
namespace automation {
}
3 changes: 0 additions & 3 deletions libs/game/pxt.json

This file was deleted.

Loading
Loading