PureBasic 5.51 is out

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

PureBasic 5.51 is out

Post by Fred »

Hello !

- Final version is out !

The first beta for 5.51 is available. It brings all the bugs fixes from 5.44 and new specific 5.50+ bug fixes. We don't expect much regression, so feel free to test it and tell us if it looks OK !

Have fun,

The Fantaisie Software Team
User avatar
OldSkoolGamer
Enthusiast
Enthusiast
Posts: 148
Joined: Mon Dec 15, 2008 11:15 pm
Location: Nashville, TN
Contact:

Re: PureBasic 5.51 beta 1 is out

Post by OldSkoolGamer »

Thanks Fred and Team for the new beta, will download and try it out later.
User avatar
kenmo
Addict
Addict
Posts: 1967
Joined: Tue Dec 23, 2003 3:54 am

Re: PureBasic 5.51 beta 1 is out

Post by kenmo »

Thanks Fred, testing now!
Joris
Addict
Addict
Posts: 885
Joined: Fri Oct 16, 2009 10:12 am
Location: BE

Re: PureBasic 5.51 beta 1 is out

Post by Joris »

Oooops posted in the wrong PB-update topic. A bug I suppose in V5.51.

http://www.purebasic.fr/english/viewtop ... 4&start=30
Yeah I know, but keep in mind ... Leonardo da Vinci was also an autodidact.
User avatar
DK_PETER
Addict
Addict
Posts: 898
Joined: Sat Feb 19, 2011 10:06 am
Location: Denmark
Contact:

Re: PureBasic 5.51 beta 1 is out

Post by DK_PETER »

I've been looking forward to this.
Thank you. :)
Current configurations:
Ubuntu 20.04/64 bit - Window 10 64 bit
Intel 6800K, GeForce Gtx 1060, 32 gb ram.
Amd Ryzen 9 5950X, GeForce 3070, 128 gb ram.
Fredi
Enthusiast
Enthusiast
Posts: 143
Joined: Wed Jul 23, 2008 10:45 pm

Re: PureBasic 5.51 beta 1 is out

Post by Fredi »

Thanks Fred :)
Lebostein
Addict
Addict
Posts: 807
Joined: Fri Jun 11, 2004 7:07 am

Re: PureBasic 5.51 beta 1 is out

Post by Lebostein »

Thanks!
How I set the compiler path now for Mac OS?
User avatar
mk-soft
Always Here
Always Here
Posts: 5335
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: PureBasic 5.51 beta 1 is out

Post by mk-soft »

Thanks :wink:

Works now with Xcode 8.1
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.51 beta 1 is out

Post by Fred »

Lebostein wrote:Thanks!
How I set the compiler path now for Mac OS?
Do you mean to use it from commandline ? It's in PureBasic.app/MacOS/Content/Resources
User avatar
mk-soft
Always Here
Always Here
Posts: 5335
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: PureBasic 5.51 beta 1 is out

Post by mk-soft »

Purebasic is now complete a APP packet :wink: .It´s a good way

But we can´t open the examples :mrgreen: . At first we must copy the examples outside of the packet

P.S. I have updated Xcode to v8.2. Purebasic runs...

Code: Select all

; Export Purebasic v5.4x and v5.5x Examples by mk-soft ;)
path.s = #PB_Compiler_Home + "examples/"
target.s = PathRequester("Purebasic MacOS - Export Examples Folder", GetHomeDirectory())
If target
  target + "pb-examples/"
  If CreateDirectory(target)
    CopyDirectory(path, target, "*", #PB_FileSystem_Recursive)
    MessageRequester("Info", "Ready.")
  Else
    MessageRequester("Error", "Create directory")
  EndIf
EndIf
:wink:
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.51 beta 1 is out

Post by Fred »

You can if you set the source code path typing by hand in preferences, new user will have it right though.
User avatar
DoubleDutch
Addict
Addict
Posts: 3219
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: PureBasic 5.51 beta 1 is out

Post by DoubleDutch »

@Fred will you be adding the new OSVersion information (for both Windows and OSX) for the final 5.51 ?
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.51 is out

Post by Fred »

Final version is out ! :)
coder14
Enthusiast
Enthusiast
Posts: 327
Joined: Tue Jun 21, 2011 10:39 am

Re: PureBasic 5.51 is out

Post by coder14 »

Fred wrote:Final version is out ! :)
Thanks Fred! :D

Why does this work in 5.40/5.44 LTS but not in 5.50/5.51 (Mac OS-X)? :shock:

Code: Select all

OpenWindow(0, 0, 0, 300, 300, "Drag 'n' Drop",
           #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
EnableWindowDrop(0, #PB_Drop_Files, #PB_Drag_Copy)

Repeat
  Select WaitWindowEvent()
    Case #PB_Event_CloseWindow
      End
    Case #PB_Event_WindowDrop
      If EventDropType() = #PB_Drop_Files
        Debug EventDropFiles()
      EndIf
  EndSelect
ForEver
I can't use the lovely RegisterFontFile function in the LTS versions. :cry:
User avatar
DoubleDutch
Addict
Addict
Posts: 3219
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: PureBasic 5.51 is out

Post by DoubleDutch »

Thanks for the release. :)

Windows 10.1 and OSX Sierra are released, but OSVersion() doesn't know about them?
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
Post Reply