Page 9 of 9

Re: PureBasic 5.50 final is out !

Posted: Sun Aug 21, 2016 2:01 pm
by Hi-Toro
Only just seen this. Love the vehicle stuff! Thanks, Fred and co.

Re: PureBasic 5.50 beta 1 is out

Posted: Fri Aug 26, 2016 10:58 pm
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.'

Re: PureBasic 5.50 beta 1 is out

Posted: Sat Aug 27, 2016 4:29 am
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)

Re: PureBasic 5.50 final is out !

Posted: Sun Sep 11, 2016 12:32 pm
by 24bx03
I'm new to this forum. Where can I download the updated compiler?

Re: PureBasic 5.50 final is out !

Posted: Sun Sep 11, 2016 12:36 pm
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.

Re: PureBasic 5.50 final is out !

Posted: Sun Sep 11, 2016 12:41 pm
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.

Re: PureBasic 5.50 final is out !

Posted: Mon Oct 10, 2016 4:56 pm
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. :)

Re: PureBasic 5.50 final is out !

Posted: Mon Oct 10, 2016 5:09 pm
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!

Re: PureBasic 5.50 final is out !

Posted: Fri Nov 18, 2016 1:14 pm
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.

Re: PureBasic 5.50 final is out !

Posted: Sat Nov 19, 2016 6:14 am
by Fred
If you can replicate it, don't hesitate to post a bug report

Re: PureBasic 5.50 final is out !

Posted: Mon Dec 19, 2016 1:30 pm
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

Re: PureBasic 5.50 final is out !

Posted: Mon Dec 19, 2016 1:49 pm
by Fred
Please post in the appropriate forum, thank you.

Re: PureBasic 5.50 final is out !

Posted: Mon Dec 19, 2016 2:46 pm
by coder14
Fred wrote:Please post in the appropriate forum, thank you.
OK! :D

Posting in Bugs - Mac OSX.