Page 2 of 3

Posted: Fri Mar 10, 2006 12:33 pm
by oryaaaaa
Thanks, Fred. :D

Posted: Fri Mar 10, 2006 12:38 pm
by flaith
oryaaaaa wrote:Thanks, Fred. :D
Image

Posted: Fri Mar 10, 2006 12:42 pm
by Michael Vogel
The more betas the better Purebasic will be :wink:

Posted: Fri Mar 10, 2006 2:50 pm
by Droopy
Yes :D

Posted: Fri Mar 10, 2006 6:39 pm
by Psychophanta
Again direct ASM color lines is ignored!!! :evil:

Posted: Fri Mar 10, 2006 6:51 pm
by freak
There is no need to play mad here.. mistakes can happen.

Posted: Fri Mar 10, 2006 6:57 pm
by Psychophanta
freak wrote:There is no need to play mad here.. mistakes can happen.
8)

Posted: Fri Mar 10, 2006 6:59 pm
by Hroudtwolf
freak wrote:There is no need to play mad here.. mistakes can happen.
Thats True.
And don't forget, people... all pb-updates are cost-free for pb owners.
Therefore we have have to give thank to Fred and the PureBasic-Team.
Everyone can help to make PB better by finding BUGs in the BETAs and report them correctly.

Posted: Fri Mar 10, 2006 7:04 pm
by Psychophanta
Right. I just try to help PB team :).
Sorry my way sometimes. :oops:

Posted: Fri Mar 10, 2006 11:43 pm
by coma
thanks !!! :D

Posted: Sat Mar 11, 2006 1:02 am
by freak
The asm line coloring should be fixed once again.

Re: PureBasic 4.00 - Beta 6

Posted: Sat Mar 11, 2006 1:12 am
by Intrigued
Edwin Knoppert wrote:
Fred wrote:Hello folks,

The sixth release of forthcoming PureBasic 4.00 is available for testing, grab it while it's hot. It fixed a bunch of bugs and improve the reliability of this version. We encourage everyone who can switch to do it now, so the last bugs could be ironed quickly. Some news:
- OpenWindow() syntax has been changed: the flags is now at the end (before the ParentID), to respect the other commands definition. It's also optional, so opening a working window is a bit quicker to type ;)
- New preference in the IDE: "Always hide error log". it ignores the per-source setting and forces the log to stay hidden always.
Thanks to all the beta testers, you do a great job and we are confident than the v4.00 will be a solid release.

Enjoy !

The Fantaisie Software Team.
Where is this quote taken from??
I was wondering that myself. I see the ReadMe file is still touting Beta 4 titling.

I know thought that Fred & Crew are hard at work to get PB 4.0 to shoot soda or beers on command.

:-D

Posted: Sat Mar 11, 2006 8:47 am
by jbernard13
Thank You Fred and Purebasic team

Posted: Sun Mar 12, 2006 10:19 am
by Comtois
All examples using OpenWindow must be update :)
It would be nice if all examples use the #PB_constantes.

In example Particule.pb

Code: Select all

MaterialBlendingMode   (0, 2)   ; <<< 2 ? what's this ?

Code: Select all

Debug #PB_Material_Add          ; 1 
Debug #PB_Material_AlphaBlend   ; 3
Debug #PB_Material_Color        ; 4

Posted: Mon Mar 13, 2006 11:06 am
by jqn
Hey,

SOME PROBLEM WITH PBCOMPILER.EXE??

I'm always using the batch compiler PBcompiler.exe, but in Beta 6 it says "Syntax error!" on every "if":

Code: Select all

OpenConsole()
a.s=input()
if a = "END"
  END
endif
END
It returns:

Code: Select all

PBCompiler "C:\test.PB" /exe "C:\test.exe"

******************************************
PureBasic v4.00 - Beta 6 (Windows - x86)
******************************************

Compiling C:\test.PB
Loading external libraries...
Starting compilation...
Error: Line 3 - Syntax error!

JOAQUIN