Skip to content

Commit 7db154d

Browse files
authored
Merge pull request #680 from parallaxinc/demo
Merging demo tip into master for Public Release #1 milestone.
2 parents 5e5477c + 57887ac commit 7db154d

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

src/main/resources/com/parallax/server/blocklyprop/internationalization/translations.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ footer.licenselink = License
2626
footer.changelog = Change log
2727
footer.librarieslink = External libraries
2828
footer.clientdownloadlink = BlocklyProp-client
29-
footer.appversion = v0.91
30-
footer.buildversion = 184
29+
footer.appversion = v0.92
30+
footer.buildversion = 199
3131

3232
html.content_missing = Content missing
3333

src/main/resources/com/parallax/server/blocklyprop/internationalization/translations_nl.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ menu.your_projects = Jouw projecten
1111
menu.project_list = Projecten lijst
1212
menu.profile = Profiel
1313

14-
footer.appversion = v0.91
15-
footer.buildversion = 184
14+
footer.appversion = v0.92
15+
footer.buildversion = 199
1616

1717
home.latest_projects.title = Laatste projecten
1818
home.c_project.title = C Project

src/main/webapp/cdn/blockly/generators/propc/console.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Blockly.Blocks.console_print = {
3535
this.appendValueInput('MESSAGE')
3636
.setCheck('String')
3737
.appendField("Terminal print text");
38+
this.setInputsInline(true);
3839
this.setPreviousStatement(true, null);
3940
this.setNextStatement(true, null);
4041
}

src/main/webapp/cdn/blockly/generators/propc/oled.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ Blockly.Blocks.oled_print_number = {
337337
.appendField("OLED print number ")
338338
this.appendDummyInput()
339339
.appendField(new Blockly.FieldDropdown([
340-
["DEC", "DEC"],
341-
["BIN", "BIN"],
342-
["OCT", "OCT"],
343-
["HEX", "HEX"]
340+
["Decimal", "DEC"],
341+
["Hexadecimal", "HEX"],
342+
["Binary", "BIN"],
343+
//["OCT", "OCT"],
344344
]), "type");
345345
this.setInputsInline(true);
346346
this.setPreviousStatement(true, null);

src/main/webapp/cdn/blockly/language/common/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Blockly.Blocks.base_delay = {
4848
init: function () {
4949
this.setColour(colorPalette.getColor('programming'));
5050
this.appendValueInput("DELAY_TIME", 'Number')
51-
.appendField("delay (ms)")
51+
.appendField("pause (ms)")
5252
.setCheck('Number');
5353
this.setInputsInline(true);
5454
this.setPreviousStatement(true, null);

0 commit comments

Comments
 (0)