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
2 changes: 1 addition & 1 deletion extern/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -5230,7 +5230,7 @@ Lang.Msgs = {
'It is a collection of blocks that can read text in a variety of voice using the Clova.',
hardware_need_update_title: 'Entry HW update',
hardware_need_update_content:
"Please update to the latest version,\nif you are using below version.\nEntry website only supported v1.9.51 or later.\nPlease remove the web browser cache,\nif any block doesn't appear after updating.",
"Please update to the latest version,\nif you are using below version.\nEntry website only supported v1.9.64 or later.\nPlease remove the web browser cache,\nif any block doesn't appear after updating.",
ai_utilize_audio_description:
'It is a collection of blocks that recognize speech using microphone.',
ai_utilize_video_description:
Expand Down
2 changes: 1 addition & 1 deletion extern/lang/ko.js
Original file line number Diff line number Diff line change
Expand Up @@ -5601,7 +5601,7 @@ Lang.Msgs = {
'nVoice 음성합성 기술로 다양한 목소리로 문장을 읽는 블록모음 입니다. (한국어 엔진 지원)',
hardware_need_update_title: '업데이트 안내',
hardware_need_update_content:
'보안 업데이트로 인해 하드웨어 연결 프로그램은\n1.9.51 버전 이상만 사용할 수 있습니다.\n더 낮은 버전이라면 최신 버전을 다운로드 받아 주세요.',
'보안 업데이트로 인해 하드웨어 연결 프로그램은\n1.9.64 버전 이상만 사용할 수 있습니다.\n더 낮은 버전이라면 최신 버전을 다운로드 받아 주세요.',
ai_utilize_video_description:
'카메라를 이용하여 사람(신체), 얼굴, 사물 등을 인식하는 블록들의 모음입니다. (IE 및 iOS 미지원)',
lecture_header_restart_msg: '처음부터 다시 시작하시겠습니까?',
Expand Down
1 change: 1 addition & 0 deletions extern/util/static_mini.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ EntryStatic.getAllBlocks = function () {
'_if',
'if_else',
'wait_until_true',
'stop_object',
],
},
{
Expand Down
584 changes: 411 additions & 173 deletions src/playground/blocks/hardware/block_robotisRBKoala.js

Large diffs are not rendered by default.

841 changes: 642 additions & 199 deletions src/playground/blocks/hardware/block_robotisRBPracticalAssembly.js

Large diffs are not rendered by default.

1,714 changes: 1,640 additions & 74 deletions src/playground/blocks/hardware/block_whalesbot_eagle_1001.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/textcoding/util/textCodingUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ class TextCodingUtil {
return EntryStatic.pythonDisabled;
}
EntryStatic.pythonDisabled = Object.keys(Entry.block).filter(
(key) => Entry.block[key]?.isNotFor.indexOf('python_disable') >= 0
(key) => Entry.block[key]?.isNotFor?.indexOf('python_disable') >= 0
);
return EntryStatic.pythonDisabled;
}
Expand Down
Loading