Skip to content

Commit

Permalink
Merge pull request #315 from Program-AR/merge-main
Browse files Browse the repository at this point in the history
Merge hotfixes to develop
  • Loading branch information
dlopezalvas authored Oct 16, 2024
2 parents ccaf5b4 + c55adbc commit 5fb7e2f
Show file tree
Hide file tree
Showing 9 changed files with 339 additions and 287 deletions.
6 changes: 5 additions & 1 deletion locales/en-us/blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,11 @@
"rotateGrades": "Rotate grades",
"isAVowel": "Is a vowel ?",
"repeatEmpty": "Repeat",
"JumpForward": "Jump forward"
"JumpForward": "Jump forward",
"leftBorder": "Am I on the left edge?",
"rightBorder": "Am I on the right edge?",
"bottomBorder": "Am I on the bottom edge?",
"topBorder": "Am I on the top edge?"
},
"procedures": {
"definition": "Define",
Expand Down
6 changes: 5 additions & 1 deletion locales/es-ar/blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@
"rotateGrades": "Girar grados",
"isAVowel": "¿ Hay vocal ?",
"repeatEmpty": "Repetir",
"JumpForward": "Saltar hacia adelante"
"JumpForward": "Saltar hacia adelante",
"leftBorder": "¿Estoy en el borde de la izquierda?",
"rightBorder": "¿Estoy en el borde de la derecha?",
"bottomBorder": "¿Estoy en el borde de abajo?",
"topBorder": "¿Estoy en el borde de arriba?"
},
"procedures": {
"definition": "Definir",
Expand Down
6 changes: 5 additions & 1 deletion locales/pt-br/blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@
"jumpDown": "Saltar para baixo",
"jumpUp": "Saltar para cima",
"goInAlligator": "Vai em jacaré",
"backToLeftBorder": "Voltar para a margem esquerda"
"backToLeftBorder": "Voltar para a margem esquerda",
"leftBorder": "Estou na borda esquerda?",
"rightBorder": "Estou na borda direita?",
"bottomBorder": "Estou na borda inferior?",
"topBorder": "Estou na borda superior?"
},
"procedures": {
"definition": "Definir",
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"js-interpreter": "^5.1.2",
"makensis": "^2.0.8",
"mini-css-extract-plugin": "^2.4.5",
"pilas-bloques-exercises": "^1.4.33",
"pilas-bloques-exercises": "^1.4.34",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
Expand Down
2 changes: 1 addition & 1 deletion public/pilas.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<head>
<script src="libs/pilasweb.js?v=0.5.0"></script>
<script src="libs/pilas-bloques-exercises.js?v=1.4.33"></script>
<script src="libs/pilas-bloques-exercises.js?v=1.4.34"></script>
</head>

</html>
2 changes: 1 addition & 1 deletion scripts/copyEmberPB.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PB_APP_VERSION="1.17.6"
PB_APP_VERSION="1.17.9"

echo "==> Downloading Pilas Bloques app online..."
mkdir -p tmp
Expand Down
20 changes: 20 additions & 0 deletions src/components/blockly/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,26 @@ export const commonBlocks: BlockType[] = [
intlId: 'cameToTheEnd',
categoryId: 'sensors'
},
{
id: 'BordeArriba',
intlId: 'topBorder',
categoryId: 'sensors'
},
{
id: 'BordeAbajo',
intlId: 'bottomBorder',
categoryId: 'sensors'
},
{
id: 'BordeIzquierdo',
intlId: 'leftBorder',
categoryId: 'sensors'
},
{
id: 'BordeDerecho',
intlId: 'rightBorder',
categoryId: 'sensors'
},
{
id: 'Si',
intlId: 'simpleAlternative',
Expand Down
Loading

0 comments on commit 5fb7e2f

Please sign in to comment.