PureBasic 5.50 final is out !

Developed or developing a new product in PureBasic? Tell the world about it.
Hi-Toro
Enthusiast
Enthusiast
Posts: 265
Joined: Sat Apr 26, 2003 3:23 pm

Re: PureBasic 5.50 final is out !

Post by Hi-Toro »

Only just seen this. Love the vehicle stuff! Thanks, Fred and co.
James Boyd
http://www.hi-toro.com/
Death to the Pixies!
User avatar
RichAlgeni
Addict
Addict
Posts: 914
Joined: Wed Sep 22, 2010 1:50 am
Location: Bradenton, FL

Re: PureBasic 5.50 beta 1 is out

Post by RichAlgeni »

netmaestro wrote:Some signs at one of my actual workplaces:

Our customers deserve the best - so what the hell are you doing here?

Prices subject to change according to your attitude

Here every day is free coffee tomorrow

No whining

Menu choices: You can take it or leave it
Clause in my license agreement to customers: 'All work done correctly the first time will carry a 25% surcharge.'
User avatar
TI-994A
Addict
Addict
Posts: 2512
Joined: Sat Feb 19, 2011 3:47 am
Location: Singapore
Contact:

Re: PureBasic 5.50 beta 1 is out

Post by TI-994A »

RichAlgeni wrote:'All work done correctly the first time will carry a 25% surcharge.'
Work shall commence upon receipt of 50% advance. 8)
Texas Instruments TI-99/4A Home Computer: the first home computer with a 16bit processor, crammed into an 8bit architecture. Great hardware - Poor design - Wonderful BASIC engine. And it could talk too! Please visit my YouTube Channel :D
24bx03
New User
New User
Posts: 2
Joined: Sun Sep 11, 2016 12:19 pm

Re: PureBasic 5.50 final is out !

Post by 24bx03 »

I'm new to this forum. Where can I download the updated compiler?
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8425
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Re: PureBasic 5.50 final is out !

Post by netmaestro »

Go to http://www.purebasic.com and click 'download'. Demo links for the platform of your choice are there. If you eventually buy the product you will be able to log in there and get betas and previous versions as well as the full uncrippled latest compilers.
BERESHEIT
24bx03
New User
New User
Posts: 2
Joined: Sun Sep 11, 2016 12:19 pm

Re: PureBasic 5.50 final is out !

Post by 24bx03 »

Please disregard my last question. I finally figured it out. Went to the main website and logged in there. Got version 5.5.
es_91
Enthusiast
Enthusiast
Posts: 242
Joined: Thu Jan 27, 2011 12:00 pm
Location: DE

Re: PureBasic 5.50 final is out !

Post by es_91 »

Fred wrote:

Code: Select all

- Added: RegisterFontFile() to use custom fonts file easily
Thanks - A wonderful and much appreciated feature! 8)

How do you think about building that feature also into 5.44 LTS, if there will be? Would be nice, there. :)
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: PureBasic 5.50 final is out !

Post by ts-soft »

es_91 wrote:How do you think about building that feature also into 5.44 LTS, if there will be? Would be nice, there. :)
Sorry, but: LTS = No new feature, no syntax-change, only bugfixes!
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
User avatar
Didelphodon
PureBasic Expert
PureBasic Expert
Posts: 448
Joined: Sat Dec 18, 2004 11:56 am
Location: Vienna - Austria
Contact:

Re: PureBasic 5.50 final is out !

Post by Didelphodon »

Been busy for a long time now so I hadn't time for testing the most recent versions. Now I tried version 5.5 with my private includes which have a lot of CompilerIfs in them and I get a "CompilerIf without CompilerEndIf" error. I have to say that with 5.42lts everything worked without any problems. Actually it seems to me that if a CompilerEndIf is the last statment without a trailing CRLF that triggers that error. Added a CRLF after and it worked. However, this solution doesn't seem apply "universal" as it seems - there are still "CompilerIf without CompilerEndIf" around my code-base and can't find a solution, especially as it always brings up the last line number of the according source. Any ideas or similar insights? Just wanted to ask before posting a bug-report.
Go, tell it on the mountains.
Fred
Administrator
Administrator
Posts: 16623
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.50 final is out !

Post by Fred »

If you can replicate it, don't hesitate to post a bug report
coder14
Enthusiast
Enthusiast
Posts: 327
Joined: Tue Jun 21, 2011 10:39 am

Re: PureBasic 5.50 final is out !

Post by coder14 »

Fred wrote:If you can replicate it, don't hesitate to post a bug report
OK! :D

This was working in 5.40 LTS but is not working in 5.50 final and 5.51 final (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
Fred
Administrator
Administrator
Posts: 16623
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.50 final is out !

Post by Fred »

Please post in the appropriate forum, thank you.
coder14
Enthusiast
Enthusiast
Posts: 327
Joined: Tue Jun 21, 2011 10:39 am

Re: PureBasic 5.50 final is out !

Post by coder14 »

Fred wrote:Please post in the appropriate forum, thank you.
OK! :D

Posting in Bugs - Mac OSX.
Post Reply