If I try to open a nextcloud web page in a WebViewGadget() the nextcloud page opens, but if I open the talk application it crashes
It looks like gtk4 is needed.
Any ideas?
Btw. in macOS the nextcloud I recieve the message: browser to old (Ok, the user can 'continue with unsupported browser', but it's ugly)
In windows it works without problems.
nextcloud in WebViewGadget() -> crash
nextcloud in WebViewGadget() -> crash
Last edited by infratec on Thu Oct 02, 2025 9:23 pm, edited 1 time in total.
Re: nextcloud in WebViewGadget()
A small code for testing:
Code: Select all
EnableExplicit
Define URL$
URL$ = InputRequester("Nextcloud URL", "Enter the URL of your nextcloud", "https://nextcloud.")
If URL$
OpenWindow(0, 0, 0, 1024, 768, "Nextcloud Test", #PB_Window_SystemMenu|#PB_Window_ScreenCentered)
;WebGadget(0, 10, 10, 1004, 748, URL$, #PB_Web_Edge)
WebViewGadget(0, 10, 10, 1004, 748)
SetGadgetText(0, URL$)
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf