Francois Steyn
Francois Steyn
Im having a similar issue using beta12. When it renders initially, its too big, after clicking `left` or `right`, it fixes itself and renders correctly ``` @Route(value = "demo") public...
This needs some refactoring and checking, but should get you started!! ``` @ClientCallable public void handleChartClickEvent(final Integer dataPointIndex, final String categoryLabel) { } private String getChartClickEvent() { final String id...
How about handling this on the JS side? For example: on java side, always set as array, then unwrap it on JS side (if required) when there is only 1...
#145 is included in this PR, can you please remove it?
from `mediamtx` container: ``` ERR: json: cannot unmarshal string into Go struct field alias.webrtcAdditionalHosts of type []string ``` from the `printer1` container: ``` [tcp @ 0x55901c3e10] Failed to resolve hostname...
1. Related to the screenshot / connection refused: Its not clear where you want to connect... is this browser or something else? 2. Use common-liveview without any modifications 3. Printer_id...
You have conflicting configuration options 1. Please change `bambu-web-env.txt` to this: ```properties bambu.dark-mode=true bambu.use-bouncy-castle=true bambu.live-view-url=/_camerastream/ bambu.printers.myprinter1.name=Bambu 1 bambu.printers.myprinter1.device-id=00********38 bambu.printers.myprinter1.access-code=******* bambu.printers.myprinter1.ip=192.168.10.231 bambu.printers.myprinter1.model=x1c bambu.printers.myprinter1.stream.live-view=true bambu.users.myusername.password=********************************* bambu.users.myusername.role=admin quarkus.http.limits.max-body-size=150M ``` 2. Since max-body-size above...
3. Leave everything with fixme's as is... its a template and gets replaced with the compose.yml ------ A. http://192.168.1.227:8889/myprinter1 B. http://192.168.1.227:8080/_camerastream/myprinter1 If A works and B doesnt it means something...
> I also note that there are no published ports for the printer container... not sure if this should be like this or not? Its perfect. The printer container doesnt...
Looks like the rewrite in `reverse-proxy.conf` is causing some issues, please replace it with: ``` rewrite ^/_camerastream/([^.]*[^/])$ /$1/ break; ``` If this works, I will update the template, otherwise please...