Other B4J v9.30 is available for download

Erel

B4X founder
Staff member
Licensed User
Longtime User
Download link: https://www.b4x.com/b4j.html

Improvements:
  • Long hex literal numbers: 0xff00ff00ff00
  • New methods: Bit.OrLong / AndLong / XorLong / ShiftLeftLong / ShiftRightLong / NotLong / UnsignedShiftRightLong / ParseLong
  • Fix the "incompatible types" warning with the relatively new Json type.
  • Json.ToCompactString method.
  • Several debugger fixes: crash on startup, missed assignments in some cases, single field objects were not always observable.
  • Code editor jumps to a sub when adding an event with the designer, including when the sub already exists.
  • LogColor and "jump to line" feature:

    1635083607060-png.120716

  • SimpleMediaManager (v1.08) is included as an internal library.
  • Updated internal libraries: jCore (9.30), Json (1.21), B4XPreferencesDialog (1.74), BCTextEngine (1.92), XUI Views (2.53), KeyValueStore (2.31), jRandomAccessFile (2.34)
  • Bug fixes and other minor improvements.
 

behnam_tr

Active Member
Licensed User
Longtime User
thank you for update and support ....
After the update, I see this warning for log lists and maps/

B4X:
'root As Map
'root as list
Log(root)

Object converted to String. This is probably a programming mistake. (warning #7)
 
Upvote 0

aeric

Expert
Licensed User
Longtime User
thank you for update and support ....
After the update, I see this warning for log lists and maps/

B4X:
'root As Map
'root as list
Log(root)

Object converted to String. This is probably a programming mistake. (warning #7)
I thought this existed in other previous versions too.
If you don’t like the warning, just add an ignore comment after it.
B4X:
 Log(root)  'ignore
 
Upvote 0
Top