Page 1 of 1

PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 4:30 pm
by Fred
Just a quick beta release with the fixed bugs included, to continue the bug hunt. Only the OS X packages have been uploaded, and the beta number is still '1'.

Have fun,

The Fantaisie Software Team.

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 5:32 pm
by Polo
Thanks, will try it out!

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 6:31 pm
by J. Baker
Cool, will go through the bug check again. ;)

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 7:10 pm
by f1roe
Bravo ! et merci pour ce laborieu travail.

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 10:50 pm
by DoubleDutch
Thanks. :)

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sat Aug 04, 2012 11:00 pm
by Andre
A good step forward, as the linker errors (with Cocoa, not with Carbon sub-system) are gone :-)

But does the Cocoa version change anything with the font handling?

As I have to use a MacOS-specific "workaround" again, which was already needed in an earlier OSX PB version:

Code: Select all

 CompilerIf #PB_Compiler_OS = #PB_OS_MacOS
   DrawingFont(FontID(GetGadgetFont(gad)))
 CompilerElse
    DrawingFont(GetGadgetFont(gad))
 CompilerEndIf

sh:g++ command not found

Posted: Sun Aug 05, 2012 2:02 pm
by csk
No sure what else I need to install. I am getting error when I tried to run the provided samples on both x86 and x64 versions:

sh:g++ command not found

Mountain Lion 10.8
Xcode 4.4

Re: sh:g++ command not found

Posted: Sun Aug 05, 2012 2:03 pm
by Polo
csk wrote:No sure what else I need to install. I am getting error when I tried to run the provided samples on both x86 and x64 versions:

sh:g++ command not found

Mountain Lion 10.8
Xcode 4.4
Install command tools from Xcode (Preferences / Download)

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sun Aug 05, 2012 2:28 pm
by csk
Hi Polo,

Tks. That does it.

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Sun Aug 05, 2012 5:00 pm
by Polo
Fred, can you please add the fullscreen button to PB IDE? ;)

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Mon Aug 06, 2012 6:05 pm
by Fred
PB now display this message if g++ isn't found while compiling:

Code: Select all

XCode (with 'commandline tools') needs to be installed to use PureBasic.
XCode is found on the AppStore or on the installation DVD for older OS X versions.

If XCode is already installed, please ensure than the 'commandline tools' are installed
(XCode/Preferences/Downloads for new XCode, or re-run the installer for older versions).
Should solve the XCode thing a bit more easily.

Re: PureBasic 4.70 beta 1.1 is out (OS X only)

Posted: Mon Aug 06, 2012 7:28 pm
by fsw
Fred wrote:PB now display this message if g++ isn't found while compiling:

Code: Select all

... or re-run the installer for older versions).
...
This is exactly what I had to do.
So this addition is very welcome.
Good job!