File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed
resources/com/parallax/server/blocklyprop/internationalization Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ footer.licenselink = License
2626footer.changelog = Change log
2727footer.librarieslink = External libraries
2828footer.clientdownloadlink = BlocklyProp-client
29- footer.appversion = v0.91
30- footer.buildversion = 184
29+ footer.appversion = v0.92
30+ footer.buildversion = 199
3131
3232html.content_missing = Content missing
3333
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ menu.your_projects = Jouw projecten
1111menu.project_list = Projecten lijst
1212menu.profile = Profiel
1313
14- footer.appversion = v0.91
15- footer.buildversion = 184
14+ footer.appversion = v0.92
15+ footer.buildversion = 199
1616
1717home.latest_projects.title = Laatste projecten
1818home.c_project.title = C Project
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments