PureBasic 4.00 Beta 4 for Linux

Developed or developing a new product in PureBasic? Tell the world about it.
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

PureBasic 4.00 Beta 4 for Linux

Post 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.
quidquid Latine dictum sit altum videtur
Brice Manuel

Post by Brice Manuel »

Thank you, Fred and Freak
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Post by DoubleDutch »

Thanks for all the hard work on OSX and Linux. Can't wait for 4.1 on Windows. :)
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
Pinhead
User
User
Posts: 47
Joined: Fri Sep 09, 2005 11:24 pm

Post by Pinhead »

Thanks to all!

I see, some of my Problems are fixed. :D
dracflamloc
Addict
Addict
Posts: 1648
Joined: Mon Sep 20, 2004 3:52 pm
Contact:

Post by dracflamloc »

Will test this one out soon
User avatar
bembulak
Enthusiast
Enthusiast
Posts: 575
Joined: Mon Mar 06, 2006 3:53 pm
Location: Austria

Post by bembulak »

Thank you very much!
cheers,

bembulak
Inf0Byt3
PureBasic Fanatic
PureBasic Fanatic
Posts: 2236
Joined: Fri Dec 09, 2005 12:15 pm
Location: Elbonia

Post by Inf0Byt3 »

Ok, you made me fix my bootloader aaarrgh :D.
None are more hopelessly enslaved than those who falsely believe they are free. (Goethe)
Konne
Enthusiast
Enthusiast
Posts: 434
Joined: Thu May 12, 2005 9:15 pm

Post by Konne »

Awesome!
Could Fred now spend some time for the 'still pretty buggy' Windows PB Version?
Apart from that Mrs Lincoln, how was the show?
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post 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?
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

The IDE still has "4 beta 3" in the about window.
Edit: So does the compiler.
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

Yes, a small mistake (the version in the about box is read from the compiler version anyway).
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

Ok, I was worried if I had somehow mixed everything up.
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post 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
-Beach
Inf0Byt3
PureBasic Fanatic
PureBasic Fanatic
Posts: 2236
Joined: Fri Dec 09, 2005 12:15 pm
Location: Elbonia

Post 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.
None are more hopelessly enslaved than those who falsely believe they are free. (Goethe)
Post Reply