Samuel Weibel

Results 60 comments of Samuel Weibel

In case this helps anybody: ```Dockerfile FROM alpine:3.15 as downloader ARG rport_version=0.4.2 ARG frontend_build=0.4.1-build-731 RUN apk add unzip WORKDIR /app/ RUN wget -q https://github.com/cloudradar-monitoring/rport/releases/download/${rport_version}/rport_${rport_version}_Linux_x86_64.tar.gz -O rportd.tar.gz RUN wget -q https://downloads.rport.io/frontend/stable/rport-frontend-stable-${frontend_build}.zip...

The problem about the changing hostname is exactly as @foxriver76 said: in the Docker image we actually have to change the hostname at first start-up: It is stored during the...

About the "hidden" still running stuff: any call that gets "silently" cancelled could still create an error log message (even if the DB connection for this adapter instance is down,...

> We had this ... then the logfile exploded for users :-( so simply logging any case will not help ... we need to rate limit this somehow like "a...

I doubt that `dev-server watch` supports `schedule` for one simple reason: dev-server wants to start the adapter itself (so you can debug it). You can of course always use `dev-server...

What's the current state of this PR? I should add some documentation about the dev-server, but I'm uncertain if I should still add it to the current documentation on master...

From what I can tell (in the now formatted JSON), it is about writing rules in natural language. This is in fact an interesting idea, but it would mean to...

How about by default simply grouping it by the already existing `common.type` in `io-package.json` ([example](https://github.com/UncleSamSwiss/ioBroker.loxone/blob/221437b11e0f25b470bb1241ea06ccc43c769d9f/io-package.json#L223))? The user can then still edit the grouping somewhere if he want to.

This PR looks great and is exactly what we are also missing in kratos (for the same reason: language selection). @woylie Is there anything blocking you? Can we help in...