PureBasic 5.10 beta 3

Developed or developing a new product in PureBasic? Tell the world about it.
Fred
Administrator
Administrator
Posts: 16686
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

PureBasic 5.10 beta 3

Post by Fred »

Hi there,

The third beta release is available on your online account, it comes with many fixes and we are a looking forward for a great final release ! Don't hesitate to report any bugs and check if fixed bugs are really fixed :). The english doc is now finished, so you can read it for the new commands. More examples have been added as well.

Have fun !

The Fantaisie Software Team.
User avatar
[blendman]
Enthusiast
Enthusiast
Posts: 297
Joined: Thu Apr 07, 2011 1:14 pm
Location: 3 arks
Contact:

Re: PureBasic 5.10 beta 3

Post by [blendman] »

great !

Thanks
User avatar
djes
Addict
Addict
Posts: 1806
Joined: Sat Feb 19, 2005 2:46 pm
Location: Pas-de-Calais, France

Re: PureBasic 5.10 beta 3

Post by djes »

Yes!
User avatar
Kurzer
Enthusiast
Enthusiast
Posts: 666
Joined: Sun Jun 11, 2006 12:07 am
Location: Near Hamburg

Re: PureBasic 5.10 beta 3

Post by Kurzer »

Great! Thank you!



<-- Happy :D




BTW: What are the two new files "PureBasic.exp" and "PureBasic.lib" for? You'll find them in the PureBasic Homedirectory (C:\Program Files\PureBasic\).
It seems, that PureBasic runs very well without this two new files.
PB 6.02 x64, OS: Win 7 Pro x64 & Win 11 x64, Desktopscaling: 125%, CPU: I7 6500, RAM: 16 GB, GPU: Intel Graphics HD 520, User age in 2024: 56y
"Happiness is a pet." | "Never run a changing system!"
User avatar
Demivec
Addict
Addict
Posts: 4091
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

Re: PureBasic 5.10 beta 3

Post by Demivec »

Wonderful!

Just a note on the english doc (and maybe the others being worked on), there is no link to the 'System' library of commands on the 'Reference Manual - Index'. The only way to get there is by searching.
akj
Enthusiast
Enthusiast
Posts: 665
Joined: Mon Jun 09, 2003 10:08 pm
Location: Nottingham

Re: PureBasic 5.10 beta 3

Post by akj »

@Fred:

You say:
The english doc is now finished, so you can read it for the new commands.
But I don't see any mention in the F1 help of the new System library.
Also no mention of multicharacter comparisons in StringField().
Anthony Jordan
Fred
Administrator
Administrator
Posts: 16686
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.10 beta 3

Post by Fred »

true, both are missing, it's now added.
Denis
Enthusiast
Enthusiast
Posts: 704
Joined: Fri Apr 25, 2003 5:10 pm
Location: Doubs - France

Re: PureBasic 5.10 beta 3

Post by Denis »

Fred,
how to get english doc for french coders, only french or german help file is available with PB installer.
Merci
A+
Denis
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: PureBasic 5.10 beta 3

Post by ts-soft »

Denis wrote:Fred,
how to get english doc for french coders, only french or german help file is available with PB installer.
Merci
deselect all languages :wink:
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
Denis
Enthusiast
Enthusiast
Posts: 704
Joined: Fri Apr 25, 2003 5:10 pm
Location: Doubs - France

Re: PureBasic 5.10 beta 3

Post by Denis »

ts-soft wrote:deselect all languages :wink:
It's Ok ts-soft. Tks :D
Fred, May be it'll be beter to put english language as a choice to select. :idea:
A+
Denis
User avatar
Tenaja
Addict
Addict
Posts: 1949
Joined: Tue Nov 09, 2010 10:15 pm

Re: PureBasic 5.10 beta 3

Post by Tenaja »

Thanks Fred and team!
Klaus_1963
User
User
Posts: 29
Joined: Wed Nov 25, 2009 9:37 am

Re: PureBasic 5.10 beta 3

Post by Klaus_1963 »

Great!

But I'm never satisfied, sorry :evil: : if I create a new form with the new FormDesinger, the both procedures InitWindow_0() and Windows_0_Event() will be created. If I now switch to code, I can't insert my source directly. So I have to copy this "form-code" in to a new xy.pb file, to insert the source I like to implement. I'm a little bit lazy, so if I switch to Code I would have different choices:

1. A new file opens with a copy of the form source

2. A new file opens with a copy of the form source plus the following code:

Code: Select all

InitWindow_0()
Repeat 
    Event = WindowEvent() 

    Window_0_Events(Event)
    
 Until Event = #PB_Event_CloseWindow
(if you press the compile/run button, you can directly see what you've produced)

However: if this should already be possible now and I'd not get it - SORRY -

And of course: absolutely great would be a FormDesigner like in VB: so you can change between form and code, enter own code, change to form view, edit form and so on... :wink:

I hope you understand my bad english :oops:

Merci
PureBasic 4.72 LTS - Windows / MacOS / Linux / strong coffee / stronger coffee / Coffee intravenously...
User avatar
ostapas
Enthusiast
Enthusiast
Posts: 192
Joined: Thu Feb 18, 2010 11:10 pm

Re: PureBasic 5.10 beta 3

Post by ostapas »

Klaus_1963, +100
Little John
Addict
Addict
Posts: 4527
Joined: Thu Jun 07, 2007 3:25 pm
Location: Berlin, Germany

Re: PureBasic 5.10 beta 3

Post by Little John »

Cool, thank you! 8)

Fred, maybe you can enable line continuation also for lines that end with "-"?
That would add considerably more flexibility for writing code.

Currently with PB 5.10 Beta 3, the following works fine:

Code: Select all

Debug LongVariableName_01 +
      LongVariableName_02 +
      LongVariableName_03 +
      LongVariableName_04
But if there is subtraction instead of addition at least on one line, we'll get a syntax error:

Code: Select all

Debug LongVariableName_01 +
      LongVariableName_02 -
      LongVariableName_03 +
      LongVariableName_04
Regards, Little John
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8433
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Re: PureBasic 5.10 beta 3

Post by netmaestro »

Big thanks to Fred & co. for this huge update to our favorite language. With b3 it's firming up nicely as usual with most issues gone, including some longstanding ones. Great work!

(we need a thumbs-up smiley, just pretend you see one here)
BERESHEIT
Post Reply