Search found 9217 matches

by Fred
Thu Nov 13, 2025 1:32 pm
Forum: Announcement
Topic: Musicbox - The Virtual Punch Tape Editor
Replies: 3
Views: 225

Re: Musicbox - The Virtual Punch Tape Editor

Interesting !
by Fred
Thu Nov 13, 2025 1:32 pm
Forum: Raspberry PI
Topic: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'
Replies: 12
Views: 236

Re: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'

I see ! Or use HeaderSection from 6.30 :lol:
by Fred
Thu Nov 13, 2025 10:51 am
Forum: Raspberry PI
Topic: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'
Replies: 12
Views: 236

Re: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'

This should work, I don't think the procedure is needed here

; PB v6.21 (Debian 13) Fix C-Backend PB_FreeGtkBase over C-Macro
CompilerIf #PB_Compiler_OS = #PB_OS_Linux And #PB_Compiler_Version = 621
CompilerIf #PB_Compiler_Thread And #PB_Compiler_Backend = #PB_Backend_C
!#define PB_FreeGtkBase ...
by Fred
Wed Nov 12, 2025 11:44 am
Forum: Bugs - Linux
Topic: PB 6.30 b4 - #PB_Window_BorderLess|#PB_Window_Tool
Replies: 1
Views: 490

Re: PB 6.30 b4 - #PB_Window_BorderLess|#PB_Window_Tool

Probably another wayland VS xserver stuff, as the QT code is indeed the same for both.
by Fred
Wed Nov 12, 2025 11:42 am
Forum: Bugs - Linux
Topic: PB 6.30 b4 - ResizeWindow() not work
Replies: 1
Views: 558

Re: PB 6.30 b4 - ResizeWindow() not work

I don't think it's related to PB, but how wayland is working. Unless GTK, QT uses wayland by default on Pi, so the rules apply to it. More info here:

viewtopic.php?p=646377#p646377
by Fred
Wed Nov 12, 2025 11:16 am
Forum: Bugs - C backend
Topic: Can not use a structure in an Import
Replies: 12
Views: 1797

Re: Can not use a structure in an Import


I still can not compile the code with the C compiler. (PB 6.30 beta 4 x86 windows)

Now I get a PureBasic - Assembler error window with:

error: exected expression before ',' token 69864 | .cSize equ 2

purebasic.c .69884:26 error: unknown type name 'get'
69884 | movzx eax, byte [edx] ; get type ...
by Fred
Wed Nov 12, 2025 9:25 am
Forum: Coding Questions
Topic: How to update UI gadgets inside a procedure
Replies: 13
Views: 486

Re: How to update UI gadgets inside a procedure

This is how UI works, it processes the UI messages one by one on the main thread, so if you are doing something which locks the main thread, UI can't be updated. That's why if you have a real blocking operation (like compressing a big file etc.), you need to use thread. It's not something specific ...
by Fred
Tue Nov 11, 2025 2:16 pm
Forum: Raspberry PI
Topic: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'
Replies: 12
Views: 236

Re: PBv6.21 arm64 Trixie - Assembler error 'PB_FreeGtkBase'

May be it was a bug fixed in 6.30. We didn't changed the build system for 6.30, it still build on raspberry debian 12, so it shouldn't have any impacts between 6.21 and 6.30
by Fred
Fri Nov 07, 2025 9:28 am
Forum: Announcement
Topic: PureBasic 6.30 beta 4 is ready !
Replies: 117
Views: 21710

Re: PureBasic 6.30 beta 4 is ready !

Good idea
by Fred
Thu Nov 06, 2025 5:11 pm
Forum: Bugs - Windows
Topic: [Done] How to find the reason for compiler-problems?
Replies: 11
Views: 478

Re: How to find the reason for compiler-problems?

It should not, I will take a closer look
by Fred
Wed Nov 05, 2025 8:38 pm
Forum: Tricks 'n' Tips
Topic: PureLibrary Helper Functions
Replies: 5
Views: 300

Re: PureLibrary Helper Functions

The pfshadoko tool is now shipped in the compilers directory so it should be easy to add a tool in the IDE to use it
by Fred
Tue Nov 04, 2025 11:52 am
Forum: Mac OSX
Topic: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
Replies: 11
Views: 259

Re: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?

It's how other apps works on Linux/OSX as you usually don't have absolute paths. Deducing the location from the commandline is clunky and doesn't always work.
by Fred
Tue Nov 04, 2025 10:25 am
Forum: Mac OSX
Topic: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
Replies: 11
Views: 259

Re: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?

You can also use lipo tool to build an universal binary and ship only one version