nextcloud in WebViewGadget() -> crash

Linux specific forum
infratec
Always Here
Always Here
Posts: 7654
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

nextcloud in WebViewGadget() -> crash

Post by infratec »

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.
Last edited by infratec on Thu Oct 02, 2025 9:23 pm, edited 1 time in total.
infratec
Always Here
Always Here
Posts: 7654
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: nextcloud in WebViewGadget()

Post by infratec »

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
Post Reply