Other Don't Wait For v5.51... It is already here

Erel

B4X founder
Staff member
Licensed User
Longtime User
I'm happy to release B4J v5.50: https://www.b4x.com/b4j.html
This version adds support for resumable subs (Wait For / Sleep): https://www.b4x.com/android/forum/posts/498072/
This is the most important language improvement since the addition of classes in B4A v2.0.

Resumable subs make it much simpler to handle asynchronous tasks.

Additional improvements:
- Debugger improvements.
- Node_AnimationCompleted event.

Example:
B4X:
Sub btn_Action
   Dim b As Button = Sender
   For i = 10 To 0 Step - 1
     b.Text = i
     Sleep(100)
   Next
   b.Text = "Takeoff!"
End Sub

takeoff-gif.54879
 

juvanum

Active Member
Licensed User
Longtime User
Hi,
What should I do to receive the email for new software-baj releases?
Thanks you

(Italian: cosa devo fare per ricevere una email quando ci sono dei nuovi rilasci?)
 
Upvote 0

jmon

Well-Known Member
Licensed User
Longtime User
Thank you for this release, some really cool things recently. So cool that I will rewrite lots of code with the new features!

Could we be notified by email of new releases? Or could there be a "new releases" thread that we could follow ?
 
Upvote 0

Swissmade

Well-Known Member
Licensed User
Longtime User
You don't need to reply to the thread. Click on the watch thread link near the top right corner:

SS-2017-05-15_08.06.05.png
ok Thanks Erel.
Never have seen this.
Sleeping I think.
 
Upvote 0
Top