Yes. The new client is build on a new and up to date mac. Therefore, it is using a the most recent xcode for sure. Yes, maybe this is the reason.
I wonder why others, who saved stuff to that folder, haven't reported issues yet?
Anyway, thanks!
Search found 1179 matches
- Tue Feb 24, 2026 4:27 pm
- Forum: Mac OSX
- Topic: PB 6.21 - Has GetUserDirectory(#PB_Directory_ProgramData) changed?
- Replies: 10
- Views: 165
- Tue Feb 24, 2026 2:35 pm
- Forum: Mac OSX
- Topic: PB 6.21 - Has GetUserDirectory(#PB_Directory_ProgramData) changed?
- Replies: 10
- Views: 165
Re: PB 6.21 - Has GetUserDirectory(#PB_Directory_ProgramData) changed?
No it didn't changed, we use this API, so it's probably the API which is returning something else:
[[NSFileManager defaultManager] URLsForDirectory:NSApplicationSupportDirectory inDomains:Domain]
Thank you Fred.
But my app, compiled with previous PB versions, still uses the home folder ...
- Tue Feb 24, 2026 12:13 pm
- Forum: Mac OSX
- Topic: PB 6.21 - Has GetUserDirectory(#PB_Directory_ProgramData) changed?
- Replies: 10
- Views: 165
PB 6.21 - Has GetUserDirectory(#PB_Directory_ProgramData) changed?
Hi
Our last app used GetUserDirectory(#PB_Directory_ProgramData) + "appName" to store settings. They were build with PB 6.02.
There, the returned path was usually " /Users/<username>/. " (with a dot at the end to create .appname folder)
Now, with PB 6.21, it looks like it returns " /Users ...
Our last app used GetUserDirectory(#PB_Directory_ProgramData) + "appName" to store settings. They were build with PB 6.02.
There, the returned path was usually " /Users/<username>/. " (with a dot at the end to create .appname folder)
Now, with PB 6.21, it looks like it returns " /Users ...
- Fri Nov 21, 2025 9:20 am
- Forum: General Discussion
- Topic: WebView with links and target="_blank"
- Replies: 6
- Views: 1932
Re: WebView with links and target="_blank"
Thank you Justin. I yesterday solved it by injecting script to catch links on a[target="_blank"] and call a bound local function. Not elegant, but working for my needs.
Not bad to have your solution on the forum here, so maybe other will profit from that, too.
Not bad to have your solution on the forum here, so maybe other will profit from that, too.
- Thu Nov 20, 2025 10:47 am
- Forum: General Discussion
- Topic: WebView with links and target="_blank"
- Replies: 6
- Views: 1932
Re: WebView with links and target="_blank"
So, no one has a solution for this? Links with target="_blank" are not supported and do not work in WebViewGadget or do undefined things like opening another WebView instance?
If I have control over the website, I may be able to intercept these links and run a local bound function call. But if the ...
If I have control over the website, I may be able to intercept these links and run a local bound function call. But if the ...
- Tue Nov 18, 2025 2:47 pm
- Forum: Bugs - Documentation
- Topic: PB6.21 - WebViewGadget and QT Subsystem?
- Replies: 3
- Views: 2901
Re: PB6.21 - WebViewGadget and QT Subsystem?
Thanks for clarification. Maybe you can move this topic to the documentation category as the documentation is not mentioning this at all? It is a major difference between the gtk and qt subsystems on Linux.
- Tue Nov 18, 2025 2:43 pm
- Forum: Linux
- Topic: PB6.21 - WebViewGadget Linux distribution question
- Replies: 4
- Views: 3028
Re: PB6.21 - WebViewGadget Linux distribution question
Thanks. So this is an issue.
Before considering Snap I would rather go the AppImage way. I will have to dig in deeper...
Before considering Snap I would rather go the AppImage way. I will have to dig in deeper...
- Tue Nov 18, 2025 10:40 am
- Forum: Linux
- Topic: PB6.21 - WebViewGadget Linux distribution question
- Replies: 4
- Views: 3028
PB6.21 - WebViewGadget Linux distribution question
If using the GTK version of PureBasic to compile a program which is using the WebViewgadget, I have issues compliling executables that always work.
If I compile on Ubuntu 18, it has libwebview2gtk-4.0 dependency and if I compile on Ubuntu 24, it has libwebview2gtk-4.1 . Due to this, the executable ...
If I compile on Ubuntu 18, it has libwebview2gtk-4.0 dependency and if I compile on Ubuntu 24, it has libwebview2gtk-4.1 . Due to this, the executable ...
- Tue Nov 18, 2025 10:36 am
- Forum: Bugs - Documentation
- Topic: PB6.21 - WebViewGadget and QT Subsystem?
- Replies: 3
- Views: 2901
PB6.21 - WebViewGadget and QT Subsystem?
The WebViewGadget seems not available on QT subsystem? I have not found any information on this in the documentation? Is this missing?
- Mon Nov 17, 2025 8:15 am
- Forum: General Discussion
- Topic: WebView with links and target="_blank"
- Replies: 6
- Views: 1932
Re: WebView with links and target="_blank"
Thanks for testing. I'm basically looking for a way to intercept this and handle it by myself. I already have cross platform functions for correctly handling URIs and I like to use this if someone clicks such a link.
- Fri Nov 14, 2025 11:11 am
- Forum: General Discussion
- Topic: WebView with links and target="_blank"
- Replies: 6
- Views: 1932
WebView with links and target="_blank"
Hi,
The following code illustrates my problem (I'm on Linux with PB6.21):
OpenWindow(0, 100, 100, 400, 400, "Test", #PB_Window_SystemMenu)
WebViewGadget(0, 0, 0, 400, 400)
SetGadgetItemText(0, #PB_WebView_HtmlCode,
~"<a href=\"https://www.google.com\" target=\"_blank\">https://www.google.com ...
The following code illustrates my problem (I'm on Linux with PB6.21):
OpenWindow(0, 100, 100, 400, 400, "Test", #PB_Window_SystemMenu)
WebViewGadget(0, 0, 0, 400, 400)
SetGadgetItemText(0, #PB_WebView_HtmlCode,
~"<a href=\"https://www.google.com\" target=\"_blank\">https://www.google.com ...
- Tue Nov 04, 2025 1:00 pm
- Forum: Mac OSX
- Topic: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
- Replies: 11
- Views: 4035
- Tue Nov 04, 2025 12:25 pm
- Forum: Mac OSX
- Topic: How to build an universal application in PB
- Replies: 1
- Views: 3678
Re: How to build an universal application in PB
That was just very helpful. Thanks! 
- Tue Nov 04, 2025 11:48 am
- Forum: Mac OSX
- Topic: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
- Replies: 11
- Views: 4035
Re: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
Fred, I just wonder why I have to determine PUREBASIC_HOME? I mean, based from the pbcompiler location, it is always two directories up. So if PUREBASIC_HOME is not set, you can simply got two levels up and get the libraries/includes from there if available?
So I would not have to check for them on ...
So I would not have to check for them on ...
- Tue Nov 04, 2025 11:33 am
- Forum: Mac OSX
- Topic: [DONE] PB6.21 MacOS - compile both x64 and arm. But x64 fails with linker error?
- Replies: 11
- Views: 4035