What's new? Nothing, it's just a bug-fix release.

edit:
Version 1.06:
-replace SYS_StringEqual call with a faster routine if possible
that means all commands like "If String.s" will run faster
e.g.:
Code: Select all
Procedure a(x)
Protected a,b,c
a = x
EndProcedure
#r = 40000000
s.s = ""
st1 = ElapsedMilliseconds()
For i = 1 To #r
a(2)
If s
EndIf
Next
t1 = ElapsedMilliseconds()-st1
MessageRequester("",Str(t1))
with opt: ca. 375 ms