Page 1 of 1

PureBasic 4.00 Beta 4 for Linux

Posted: Tue Apr 03, 2007 11:25 pm
by freak
Hello everybody,

after a lot of work has been done on the OSX side, we finally had more time to get
back to fixing bugs in the Linux version. So a new beta is available now on your download account.

As for what has been fixed: Just look at the bugs forum for that.
All the major problems that were reported should be fixed now. If not, just post again.

We hope this to be the last beta release before going final with 4.0 for Linux,
so please keep the testing on and report anything that goes wrong so we can
get a stable final release.

The PureBasic Team.

Posted: Tue Apr 03, 2007 11:49 pm
by Brice Manuel
Thank you, Fred and Freak

Posted: Tue Apr 03, 2007 11:53 pm
by DoubleDutch
Thanks for all the hard work on OSX and Linux. Can't wait for 4.1 on Windows. :)

Posted: Wed Apr 04, 2007 12:10 am
by Pinhead
Thanks to all!

I see, some of my Problems are fixed. :D

Posted: Wed Apr 04, 2007 12:48 am
by dracflamloc
Will test this one out soon

Posted: Wed Apr 04, 2007 12:31 pm
by bembulak
Thank you very much!

Posted: Wed Apr 04, 2007 1:06 pm
by Inf0Byt3
Ok, you made me fix my bootloader aaarrgh :D.

Posted: Sat Apr 07, 2007 1:12 pm
by Konne
Awesome!
Could Fred now spend some time for the 'still pretty buggy' Windows PB Version?

Posted: Sun Apr 08, 2007 9:32 pm
by Trond
Konne wrote:Awesome!
Could Fred now spend some time for the 'still pretty buggy' Windows PB Version?
The features from 3.94 are more stable than the 3.94 version, but you can see he says fixed on the quad bugs so maybe those are working as well for 4.10?

Posted: Mon Apr 09, 2007 10:44 am
by Trond
The IDE still has "4 beta 3" in the about window.
Edit: So does the compiler.

Posted: Mon Apr 09, 2007 11:21 am
by Fred
Yes, a small mistake (the version in the about box is read from the compiler version anyway).

Posted: Mon Apr 09, 2007 1:38 pm
by Trond
Ok, I was worried if I had somehow mixed everything up.

Posted: Thu Apr 12, 2007 2:42 am
by Beach
So far so good!

Quick question... can the treegadget row height be adjusted? The row height is much larger now with PB4 - looks like about 24 pixels. Here is an example:

Image

Also, I do get a little screen corruption when I scroll down the tree - it could be my machine... anyone else notice this also? Here is a screen shot of that:

Image

Thanks guys!

Oh, here is the code for above:

Code: Select all

If OpenWindow(0, 0, 0, 200, 180, "TreeGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
  TreeGadget(0, 10, 10, 180, 160) 
    For a = 0 To 10
        AddGadgetItem (0, -1, "Normal Item "+Str(a), 0, 0)
        AddGadgetItem (0, -1, "Normal Item "+Str(a), 0, 0)
        AddGadgetItem (0, -1, "Node "+Str(a), 0, 0)
        Node = CountGadgetItems(0)-1
        AddGadgetItem(0, -1, "Sub-Item 1", 0, 1) 
        SetGadgetItemState(0,Node,#PB_Tree_Expanded)
        AddGadgetItem(0, -1, "Sub-Item 2", 0, 1)
        AddGadgetItem(0, -1, "Sub-Item 3", 0, 2)
        AddGadgetItem(0, -1, "Sub-Item 4", 0, 2)
        AddGadgetItem (0, -1, "File "+Str(a), 0, 0) 
      Next
    Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf

Posted: Sat Apr 28, 2007 8:40 pm
by Inf0Byt3
Hi Beach, just tried your snippet on my Mepis and it does that here too... I guess it's a drawing problem (GTK's). I noticed that scrambling in allmost every program I have installed on Linux and that has any scrolling thingie in it.