Page 7 of 8
Re: PureBasic 6.30 beta 3 is ready !
Posted: Tue Oct 07, 2025 10:25 pm
by minimy
It's been a while since I entered the forum but I see that the working creatures are still working.
Wow! PB is growing and growing.
Great! we have new GUI for games!
Excellent new ScreenGadget, thanks pf_shadoko!
1000 x 1000 thanks PB team!
I need rebuild my game again?

naahhh!

Re: PureBasic 6.30 beta 3 is ready !
Posted: Tue Oct 07, 2025 10:48 pm
by miso
Thank you Fred and Team and PfShadoko!
Re: PureBasic 6.30 beta 3 is ready !
Posted: Thu Oct 16, 2025 6:00 am
by pjsmith67
this code compiles in 6.21 but does not 6.3b3, it says the declaration does not match the real procedure.
Code: Select all
Prototype test_protocol()
Declare foo(*a.test_protocol)
Procedure foo(*a.test_protocol)
EndProcedure
If I change it to this, it works.
Code: Select all
Prototype test_protocol()
Declare foo(*a)
Procedure foo(*a.test_protocol)
EndProcedure
Phil
Re: PureBasic 6.30 beta 3 is ready !
Posted: Thu Oct 16, 2025 6:02 am
by idle
pjsmith67 wrote: Thu Oct 16, 2025 6:00 am
this code compiles in 6.21 but does not 6.3b3, it says the declaration does not match the real procedure.
Code: Select all
Prototype test_protocol()
Declare foo(*a.test_protocol)
Procedure foo(*a.test_protocol)
EndProcedure
If I change it to this, it works.
Code: Select all
Prototype test_protocol()
Declare foo(*a)
Procedure foo(*a.test_protocol)
EndProcedure
Phil
it's been reported. you can drop the * in the declare and it will probably work
Re: PureBasic 6.30 beta 3 is ready !
Posted: Thu Oct 16, 2025 12:22 pm
by Rinzwind
Any chance of per monitor dpi support?
Re: PureBasic 6.30 beta 3 is ready !
Posted: Fri Oct 17, 2025 1:09 pm
by HeX0R
Code: Select all
____
.__ /_ |
__| |___ | |
/__ __/ | |
|__| |___|
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 2:46 pm
by Fred
2025-10-24: beta 4 is out, mostly for bug fixes.
Code: Select all
- Switched to hidraw backend for HID lib on Linux/Raspberry
- Added: #PB_Menu_Services, #PB_Menu_Hide, #PB_Menu_HideOthers and #PB_Menu_ShowAll constants on macOS to allow to localize the system menu easily
- Added: Automatic localization of system dialogs and toolbars on macOS to the current system language
Bugfixes for this version:This list was created automatically. All updated bug threads from the date of the last final version have been determined.
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 3:38 pm
by box_80
Thanks PB Team and PfShadoko for the updates and bug fixes. I'm excited of the possibilities allowed with the HID and ScreenGadget libraries. Being able to use gadgets on both 2D and 3D screens is very convenient. I hope to program peripheral devices in the future, so having the HID and SerialPort libraries is very useful also.
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 4:39 pm
by zikitrake
Thank you, PB Team!!!
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 4:55 pm
by threedslider
Thanks to the team, as always !
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 5:07 pm
by mrbungle
Thank you, Fred and team!
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 5:35 pm
by PeDe
The HID(raw) library now also works with the low-speed device with the Raspberry Pi OS and P400.
You can ignore the error I described here:
viewtopic.php?p=646123#p646123
Thank you
Peter
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 6:01 pm
by akee
Thanks PB team...
Re: PureBasic 6.30 beta 4 is ready !
Posted: Fri Oct 24, 2025 7:49 pm
by User_Russian
In MacOS, an application is created containing two versions of the executable file with the names App and App.strip. Do really need 2 versions of a file?
Re: PureBasic 6.30 beta 4 is ready !
Posted: Sat Oct 25, 2025 2:31 pm
by minimy