You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Adds security measures for the arduino_functions block:
Prevents adding to the backpack (isBackpackable)
Prevents dragging the block (onDragStart)
Prevents deleting the block (isDeletable)
Prevents duplicating the block (isDuplicatable)
Prevents copying the block (isCopyable)
Prevents pasting the block (isPasteable)
Prevents moving the block (isMovable)
Prevents editing the block (isEditable)
These changes ensure that the arduino_functions block, which contains the setup() and loop() functions, can only exist once in the workspace and cannot be accidentally tampered with.
– Implementation of detailed backpack configuration with custom options and event handlers.
– Addition of logic for validating and managing blocks, especially for "arduino_functions" type blocks.
– Improvement of translation management and UI updates based on the selected language.
– Introduction of logging statements that are only output in development mode to reduce debugging information.
– Improvement of code structure and readability by adding comments and separating logic into different methods.
- Test now searches for both possible reset button texts
- Supports both English ("Reset code") and German ("Code zurücksetzen") translations
- Uses regular expressions for flexible text searches
- Improves the robustness of the test across different language settings
- Test now searches for both possible reset button texts
- Supports both English ("Reset code") and German ("Code zurücksetzen") translations
- Uses regular expressions for flexible text searches
- Improves the robustness of the test across different language settings
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…ific instance limits
Adds security measures for the arduino_functions block:
These changes ensure that the arduino_functions block, which contains the setup() and loop() functions, can only exist once in the workspace and cannot be accidentally tampered with.