Page 3 of 8
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 02, 2020 8:33 am
by thyphoon

Fantastic ! Thanks Fred and all the team ^_^
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 02, 2020 12:15 pm
by Little John
kenmo wrote:Here's an odd observation... in past IDE versions the Preferences opens to the first "General" page.
In the 5.72 Beta the Preferences opens to the "Language" page and "General" is scrolled off the top...

The same happens on my system (Windows 10, DPI 125%), when I've chosen "English" as IDE language preference. "Language" is the
1st sub-item of "General".
Strangely enough, when I've chosen "Deutsch" as IDE language preference, then the preferences open to the "Tastenkürzel" (engl. Shortcuts) page, which is the
2nd sub-item of "General".

Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 02, 2020 3:50 pm
by ar-s
Thanks a lot to all the team !
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 02, 2020 3:56 pm
by Kurzer
Thank you very much, Fred & Team for this Bugfix Release.

Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Tue Feb 04, 2020 10:27 am
by stevie1401
I would be very happy if you could work with the PB-IDE under Linux again. Unfortunately it is unusable at the moment.
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Wed Feb 05, 2020 10:07 am
by wayne-c
The document tabs that belong to a project are now in a very aggressive blue - can this be disabled somewhere? or at least set the tab's text color to white? (PB 5.72 LTS Beta 1 (x64) macOS)
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Wed Feb 05, 2020 6:17 pm
by swhite
stevie1401 wrote:I would be very happy if you could work with the PB-IDE under Linux again. Unfortunately it is unusable at the moment.
I too would be happy if there was more work done on the Linux version but I would not say it is unusable. I have it installed on OpenSuse 15.1 and it works quite well except for the odd times where the IDE disappears when you press the Down-Arrow or Enter key.
The compiled console apps work just fine without any issues. I have quite a few in the field controlling equipment, pumping fuel, handling credit card transactions etc.
Simon
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Fri Feb 07, 2020 10:48 am
by deeproot
Have not had time to check-out the new Beta yet - but soon and looking forward to it
swhite wrote:I too would be happy if there was more work done on the Linux version but I would not say it is unusable. I have it installed on OpenSuse 15.1 and it works quite well except for the odd times where the IDE disappears when you press the Down-Arrow or Enter key.
Essentially I agree with Simon - recent versions of Linux PureBasic work pretty well for me (on MX Linux) but suffer from the same occasional IDE problem. Annoying but not a show-stopper!
The resulting compiled program works fine and closely equivalent to the Windows and Mac versions. My Linux application is already in use by several customers, though numbers are very small compared to the other platforms. However, I'm getting a strong impression of greater interest in the Linux desktop option so would be happy to see more improvement with the stability of the PB IDE. Each release seems better though - great job by the team!
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Fri Feb 07, 2020 11:23 am
by Psychophanta
Nice and great work, as always

Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 09, 2020 5:03 pm
by yrreti
Am I missing something here?
I haven't been on the forum as much lately, but I still am very much interested in PureBasic.
I am a registered and licensed user of PureBasic, but can not figure out how to download
this latest PureBasic 5.72 LTS Beta 1 version?
I see some have downloaded it, but can't see or understand how in the posts.
The download web page only leads to the free version.
Thanks for your help.
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 09, 2020 5:14 pm
by #NULL
There is a login button in the top right corner of the PureBasic website.
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Sun Feb 09, 2020 5:22 pm
by yrreti
ha ha thanks #null
Talk about missing the fine print. I sure missed it.
Thanks very much for your help.
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Fri Feb 21, 2020 8:44 am
by Denimus
Did not wanted to create topic for this, but, should this be considered as "bug"?
So,
ListView treats blank spot clicks as click on item oppose to
Tree, that doesn't, witch makes it impossible to use
ListView in some cases.
Code: Select all
If OpenWindow(0, 0, 0, 330, 170, "List vs Tree", $C80001)
ListViewGadget(1, 10, 10, 150, 150)
TreeGadget(2, 170, 10, 150, 150)
For i = 1 To 2
For u = 1 To 3
AddGadgetItem(i, -1, "Node "+u, 0, 0)
Next
Next
Repeat : Event = WaitWindowEvent()
If Event = #PB_Event_Gadget
If EventType() = #PB_EventType_LeftDoubleClick
Debug EventGadget()
EndIf
EndIf
Until Event = #PB_Event_CloseWindow
EndIf
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Fri Feb 21, 2020 9:28 am
by Fred
Just post in coding question, this has nothing to do with the topic.
Re: PureBasic 5.72 LTS Beta 1 is available !
Posted: Mon Feb 24, 2020 12:48 pm
by Joubarbe
I don't see
this bug in the list, is it fixed?