Page 1 of 5
PureBasic 5.41 LTS final is out !
Posted: Tue Nov 24, 2015 10:47 am
by Fred
Hi there !
- Final version is out, Merry Christmas to all
- Beta 5 is out, should fix some Linux & OS X issues !
- Beta 4 is out, with some more bug fixes. Should be the last one before the final release, so don't hesitate to give it a spin with your projects to validate it ! Thanks
- Beta 3 is out, with some fixes for OpenGL/Linux, and updated doc !
- Beta 2 is out, with the usual bugfixes !
- A new bug fix version is available for testing on your online account. Here is the change note:
Code: Select all
- Updated assemblers to lastest version on Windows, Linux and OS X
- Added 'auto' support for ScrollArea InnerWidth/Height in dialog lib
- French doc spellchecked by 'GG'
Don't hesitate to test it with your projects so we can detect any regressions faster !
Have fun,
The Fantaisie Software Team
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 10:53 am
by User_Russian
Thanks.
Fred wrote:Updated assemblers to lastest version on Windows, Linux and OS X
FASM?
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 10:56 am
by davido
@Fred,
Nice to see the Assemblers are up to date. Incredible, and in such a short time.
Thank you.
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:08 am
by User_Russian
Fred wrote:dialog lib
Which version of PB, "dialog library" it will be supported by visual designer of windows?
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:17 am
by Michael Vogel
Seems that there are some problems for the moment...
You don't have permission to access /dynamiclinks/PureBasic_Windows_5.41...
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:17 am
by falsam
@Fred: Error when I click the download link
Forbidden
You don't have permission to access /dynamiclinks/PureBasic_Windows_5.41_beta_1_x86_(07sw0t).exe on this server.
Apache/2.2.22 (Debian) Server at purebasic.com Port 80
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:19 am
by pwd
falsam wrote:@Fred: Error when I click the download link
Forbidden
You don't have permission to access /dynamiclinks/PureBasic_Windows_5.41_beta_1_x86_(07sw0t).exe on this server.
Apache/2.2.22 (Debian) Server at purebasic.com Port 80
Same here, can't download any package of "PureBasic 5.41 Beta 1"
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:19 am
by Bisonte
falsam wrote:@Fred: Error when I click the download link
Forbidden
You don't have permission to access /dynamiclinks/PureBasic_Windows_5.41_beta_1_x86_(07sw0t).exe on this server.
Apache/2.2.22 (Debian) Server at purebasic.com Port 80
Same here...
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:27 am
by Fred
Oops, should be solved now !
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:29 am
by Michael Vogel
Fred wrote:Oops, should be solved now !
Brilliant, thanks.
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 11:30 am
by falsam
Fred wrote:Oops, should be solved now !
Yes it's resolved. Thank you

Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 1:57 pm
by Keya
ALL GOOD so far here!

ive briefly tested 5.41 on Linux32, Linux64, Win32, Win64, Mac64, including of course with inline asm indirect and !direct. I dont have a Mac32 system to test but hope to soon!
Thankyou again SO much Fred!!! wow the power of the absolute latest assemblers with all their new features and instructions ...
buzzing with new toy excitement here!!! lol

time for me to make some coffee and properly read the fasm & yasm helpfiles heehee
$ ./yasm --version
yasm 1.3.0
Compiled on Nov 24 2015.
Copyright (c) 2001-2014 Peer Johnson and other Yasm developers.
Fresh out of the oven!
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Tue Nov 24, 2015 4:45 pm
by kenmo
Thanks for the fixes!!
EDIT:
FYI the Windows x86 installer says "5.40" is being installed.
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Wed Nov 25, 2015 6:39 am
by Danilo
Keya wrote:ALL GOOD so far here!

ive briefly tested 5.41 on Linux32, Linux64, Win32, Win64, Mac64, including of course with inline asm indirect and !direct. I dont have a Mac32 system to test but hope to soon!
You could just install PB/Mac 32bit on a 64bit Mac to create 32bit apps. It's like Windows in this regard, 64bit and 32bit programs run in a 64bit OS.
Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Wed Nov 25, 2015 7:21 pm
by supercdfr
just try the asm sample :
Code: Select all
Procedure test()
! MOV ebx, ll_monlabel
monlabel:
EndProcedure
test()
All i get is a "undefined symbol ll_monlabel".
i try with l_monlabel, but it works only outside the procedure.
Normal ?