PureBasic 4.00 - Beta 5

Developed or developing a new product in PureBasic? Tell the world about it.
Bonne_den_kule
Addict
Addict
Posts: 841
Joined: Mon Jun 07, 2004 7:10 pm

Post by Bonne_den_kule »

Num3 wrote:Fred can't download with Firefox, says "File could not be read", after 48kb of transfer!
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

> Did you forget to include a new readme file? (It says beta 4.)

Fred said it's a bug-fix release, so I doubt there's anything new to say.
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
techjunkie
Addict
Addict
Posts: 1126
Joined: Wed Oct 15, 2003 12:40 am
Location: Sweden
Contact:

Re: PureBasic 4.00 - Beta 5

Post by techjunkie »

Fred wrote:almost no new features inside.
Thanks Fred! :D ALMOST no new features?!? So what new features is included? :lol:
Image
(\__/)
(='.'=) This is Bunny. Copy and paste Bunny into your
(")_(") signature to help him gain world domination.
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

Some undocumented sound featured, but don't tell it too loud ;).
techjunkie
Addict
Addict
Posts: 1126
Joined: Wed Oct 15, 2003 12:40 am
Location: Sweden
Contact:

Post by techjunkie »

Fred wrote:Some undocumented sound featured, but don't tell it too loud ;).
I won't... :wink: 11 x [BACKSPACE]
Image
(\__/)
(='.'=) This is Bunny. Copy and paste Bunny into your
(")_(") signature to help him gain world domination.
akee
Enthusiast
Enthusiast
Posts: 496
Joined: Wed Aug 18, 2004 9:52 am
Location: Penang, Malaysia

Post by akee »

Woo... What happened here...? [Alt-BackSpace 11x]
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Post by Psychophanta »

I've almost skipped beta4... :)
Thanks for beta 5!
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
SoulReaper
Enthusiast
Enthusiast
Posts: 372
Joined: Sun Apr 03, 2005 2:14 am
Location: England

Post by SoulReaper »

Thank for beta 5 Fred & team look forward to checking this mother out :) :wink:
Intrigued
Enthusiast
Enthusiast
Posts: 501
Joined: Thu Jun 02, 2005 3:55 am
Location: U.S.A.

Post by Intrigued »

Problem: I can't seem to get animated .gifs working in beta 5, ideas?

;)
Intrigued - Registered PureBasic, lifetime updates user
User avatar
yoxola
Enthusiast
Enthusiast
Posts: 386
Joined: Sat Feb 25, 2006 4:23 pm

Post by yoxola »

Seems Examples are not updated yet, many codes can't be directly compiled with WindowID and EventID things, have to be manually converted to work, I thnik it will take time till the Final releases...

Anyway thanks for the nice release!!
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

All the examples should now compile, could you tell me which one doesn't ?
techjunkie
Addict
Addict
Posts: 1126
Joined: Wed Oct 15, 2003 12:40 am
Location: Sweden
Contact:

Post by techjunkie »

Fred wrote:All the examples should now compile, could you tell me which one doesn't ?
Gone through most of the examples, Printer.pb seems to have a couple of errors.
[22:15:16] Waiting for executable to start...
[22:15:16] Executable started.
[22:15:21] [ERROR] Printer.pb (Line: 8 )
[22:15:21] [ERROR] LoadFont() can't be called inside a StartDrawing()/StopDrawing() block.
[EDIT]

and ToolBar.pb,
[22:21:48] [COMPILER] Line 22: ToolBarToolTip(): Incorrect number of parameters.
Image
(\__/)
(='.'=) This is Bunny. Copy and paste Bunny into your
(")_(") signature to help him gain world domination.
akee
Enthusiast
Enthusiast
Posts: 496
Joined: Wed Aug 18, 2004 9:52 am
Location: Penang, Malaysia

Post by akee »

I'm now coding my first project in PB 4 and I must say that I really feel a great improvement compared to PB 3.94 in terms of getting what you need done. So far I only hit one speed bump when I could not find a FindStringReverse() function. Other than that everything's fantastic. :)

Great Job Fred!!! (hat off)
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

techjunkie: corrected, thank you.

akee: thanks ;)
User avatar
Comtois
Addict
Addict
Posts: 1431
Joined: Tue Aug 19, 2003 11:36 am
Location: Doubs - France

Post by Comtois »

MeshManual.PB is not correct

Code: Select all

Data.f 1.0,0.0,0.0;,                //0 colour  

Must be a long for color .

I cant use RGB() for color I have to write this macro

Code: Select all

Macro MaCouleur(Rouge,Vert,Bleu) 
  Rouge << 16 + Vert << 8 + Bleu 
EndMacro


Bug or feature ?
Please correct my english
http://purebasic.developpez.com/
Post Reply