Other B4i v6.30 BETA is available for download

Erel

B4X founder
Staff member
Licensed User
Longtime User
I'm happy to release B4i v6.30 BETA. This update includes many important IDE improvements.
  • Find all references, quick search and find subs / modules tool windows were rewritten and are now syntax colored, the text is selectable and you can jump directly to the selected position:

    B4i_l8l9oeqOQK.png


  • Subs code appears in the quick info windows:

    firefox_SyafEiBjCQ.png


    This code is also selectable and clickable.
  • Show Sub in window:

    B4i_2hqlw0sYeQ.png


    Allows showing subs in a floating windows. The text is selectable and clickable.
    This can be triggered from all kinds of places including:

    firefox_5S7dmQl9uv.png


    And:

    B4J_HA5KV1VUy1.png


  • Warning and errors do not hide other information:

    firefox_3kGGyEKGSF.png


  • Copy warnings from list of warnings.
  • Generate 'Create Type' Sub:

    1hITEYnYZ4.gif

  • Copy events:

    firefox_OyHHuNwE8Y.png

  • Modules list is saved in lexicographic order to avoid unexpected changes with source control tools.
  • Fixed incorrect missing file warning in some cases.
  • Resources in implicitly referenced b4x libs are now accessible.
  • BarButton with custom font reserved when clicked.
  • DateTime formatters locale is set to en_US_POSIX.

    Use this code to set it to the device locale (less recommended):
    B4X:
    Sub SetDateTimeLocaleToDeviceLocale
       Dim loc As NativeObject
       loc = loc.Initialize("NSLocale").GetField("currentLocale")
       Dim no As NativeObject = DateTime
       no.GetField("dateFormat").SetField("locale", loc)
       no.GetField("timeFormat").SetField("locale", loc)
    End Sub
  • Other minor improvements and bug fixes.

Developers who are eligible for a free upgrade will receive an email with the download link.

This is a BETA version.
 

LWGShane

Well-Known Member
Licensed User
Longtime User
Tell me something, your HTML emails you send out, they are so nice, embedded with images etc. Is there an app you use for that

According to Google, the emails are sent from SendGrid.

upload_2019-12-10_5-7-15.png
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Thanks Mr E. email received! Tell me something, your HTML emails you send out, they are so nice, embedded with images etc
These are html emails. The images are not embedded. They are regular img elements.

I use this tool to make the html more compatible with email clients: https://htmlemail.io/inline/
 
Upvote 0
Top