Page 1 of 2
PureBasic 5.51 is out
Posted: Tue Dec 06, 2016 1:38 pm
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
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 07, 2016 2:37 am
by OldSkoolGamer
Thanks Fred and Team for the new beta, will download and try it out later.
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 07, 2016 4:07 am
by kenmo
Thanks Fred, testing now!
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 07, 2016 11:38 am
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
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 07, 2016 5:12 pm
by DK_PETER
I've been looking forward to this.
Thank you.

Re: PureBasic 5.51 beta 1 is out
Posted: Sun Dec 11, 2016 12:33 am
by Fredi
Thanks Fred

Re: PureBasic 5.51 beta 1 is out
Posted: Tue Dec 13, 2016 8:09 pm
by Lebostein
Thanks!
How I set the compiler path now for Mac OS?
Re: PureBasic 5.51 beta 1 is out
Posted: Tue Dec 13, 2016 8:23 pm
by mk-soft
Thanks
Works now with Xcode 8.1
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 14, 2016 6:33 am
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
Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 14, 2016 11:25 am
by mk-soft
Purebasic is now complete a APP packet

.It´s a good way
But we can´t open the examples

. 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

Re: PureBasic 5.51 beta 1 is out
Posted: Wed Dec 14, 2016 3:31 pm
by Fred
You can if you set the source code path typing by hand in preferences, new user will have it right though.
Re: PureBasic 5.51 beta 1 is out
Posted: Thu Dec 15, 2016 9:36 pm
by DoubleDutch
@Fred will you be adding the new OSVersion information (for both Windows and OSX) for the final 5.51 ?
Re: PureBasic 5.51 is out
Posted: Mon Dec 19, 2016 10:28 am
by Fred
Final version is out !

Re: PureBasic 5.51 is out
Posted: Mon Dec 19, 2016 10:58 am
by coder14
Fred wrote:Final version is out !

Thanks Fred!
Why does this work in 5.40/5.44 LTS but not in 5.50/5.51 (Mac OS-X)?
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.

Re: PureBasic 5.51 is out
Posted: Mon Dec 19, 2016 11:00 am
by DoubleDutch
Thanks for the release.
Windows 10.1 and OSX Sierra are released, but OSVersion() doesn't know about them?