Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"@zip.js/zip.js": "2.4.20",
"adm-zip": "^0.5.12",
"axios": "^1.12.2",
"blockly": "13.0.0",
"blockly": "13.1.0",
"browserify": "17.0.0",
"chai": "^3.5.0",
"chalk": "^4.1.2",
Expand Down Expand Up @@ -151,10 +151,10 @@
},
"overrides": {
"@blockly/field-grid-dropdown": {
"blockly": "13.0.0"
"blockly": "13.1.0"
},
"@blockly/plugin-workspace-search": {
"blockly": "13.0.0"
"blockly": "13.1.0"
},
"combine-source-map": {
"source-map": "0.4.4"
Expand Down
7 changes: 4 additions & 3 deletions pxtblocks/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -828,8 +828,9 @@ function initAccessibilityMessages() {
SCREENREADER_HINT: lf("Use the arrow keys to navigate. Press %1 to toggle screenreader accessibility mode."),
// Aria labels for the workspace tree.
WORKSPACE_LABEL_PLAIN: lf("Blocks workspace."),
WORKSPACE_LABEL_1_STACK: lf("Blocks workspace. 1 stack of blocks"),
WORKSPACE_LABEL_MANY_STACKS: lf("Blocks workspace. %1 stacks of blocks"),
WORKSPACE_ROLEDESCRIPTION: lf("workspace"),
WORKSPACE_LABEL_1_STACK: lf("1 stack of blocks"),
WORKSPACE_LABEL_MANY_STACKS: lf("%1 stacks of blocks"),
WORKSPACE_LABEL_MUTATOR_WORKSPACE: lf("Block editor workspace"),
WORKSPACE_LABEL_FLYOUT_WORKSPACE: lf("%1 blocks"),
// Workspace contents announcement (the 'I' announce-info shortcut).
Expand Down Expand Up @@ -915,7 +916,7 @@ function initAccessibilityMessages() {
CURRENT_BLOCK_ANNOUNCEMENT: lf("Current block: %1"),
PARENT_BLOCKS_ANNOUNCEMENT: lf("Parent blocks: %1"),
NO_PARENT_ANNOUNCEMENT: lf("Current block has no parent"),
// Screenreader mode toggle (Cmd/Ctrl+Alt+Z).
// Screenreader mode toggle (Alt/Option+Shift+A).
SCREENREADER_MODE_ENABLED: lf("Screenreader mode is on, press %1 to turn it off"),
SCREENREADER_MODE_DISABLED: lf("Screenreader mode is off, press %1 to turn it on"),
// Used for Blockly's toast close aria label.
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/blocks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ export class Editor extends toolboxeditor.ToolboxEditor {
}
});

// Route Blockly's built-in screenreader toggle (Ctrl/Cmd+Alt+Z) through
// Route Blockly's built-in screenreader toggle (Alt/Option+Shift+A) through
// MakeCode's persistent setting so the keyboard shortcut, the Settings
// menu checkbox, and the stored preference all stay in sync.
const toggleScreenreader = Blockly.ShortcutRegistry.registry.getRegistry()[Blockly.ShortcutItems.names.TOGGLE_SCREENREADER];
Expand Down
Loading