Skip to content

Commit a118f82

Browse files
authored
Merge pull request #509 from parallaxinc/develop
Release v1.5.4
2 parents 5377df4 + fdc501a commit a118f82

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blocklyprop-solo",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "A simplified implementation of Google's Blockly project configured to support Parallax robots and sensors.",
55
"main": "index.js",
66
"scripts": {

src/modules/blockly/generators/propc/aliaes.js

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ Blockly.propc.string_sprint_multiple = Blockly.propc.console_print_multiple;
5757
Blockly.propc.fb360_set = Blockly.propc.fb360_setup;
5858

5959
/* OLED */
60+
Blockly.Blocks.oled_get_max_width = Blockly.Blocks.oled_get_max_height;
61+
Blockly.propc.oled_get_max_width = Blockly.propc.oled_get_max_height;
62+
6063
Blockly.propc.oled_print_multiple = Blockly.propc.console_print_multiple;
6164

6265
/* E-PAPER */

src/modules/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const EnableSentry = true;
4444
* {b#} is the beta release number.
4545
* {rc#} is the release candidate number.
4646
*/
47-
export const APP_VERSION = '1.5.3';
47+
export const APP_VERSION = '1.5.4';
4848

4949
/**
5050
* Constant string that represents the base, empty project header

0 commit comments

Comments
 (0)