Releases: erkexzcx/valetudopng
Releases · erkexzcx/valetudopng
v1.0.17
v1.0.16
v1.0.15
v1.0.14
v1.0.13
Changes:
- Fixes #4 (TLS does not work with MQTT connections).
- Introduced new configuration fields for TLS:
# Leave empty or delete these fields if TLS is not used
tls_enabled: false
tls_min_version: # Available values are 1.0, 1.1, 1.2 and 1.3. Defaults to Go's default (1.2) if not set.
tls_ca_path:
tls_insecure: false
v1.0.12
v1.0.11
v1.0.10
Changes:
- Added
map.png_compression
value in configuration file, defaults (or if does not exists) to0
(BestSpeed
).
This should be useful for those attempting to host this service on robot. For example, here is the approximate difference between these values:
# 0 - best speed
Image rendered! drawing:12ms, encoding:17ms, size:89.3kB
# 1 - best compression
Image rendered! drawing:12ms, encoding:192ms, size:77.8kB
# 2 - default compression
Image rendered! drawing:12ms, encoding:24ms, size:79.9kB
# 3 - no compression
Image rendered! drawing:12ms, encoding:2ms, size:2.0MB
As you can see, 3
shines here since it doesn't use much of CPU, which is useful when hosting on robot. Note that robot's wifi is simply 💩 and you should use 3
with min_refresh_int
set to something at least 5s
or more. It cannot instantly send 2mb of file due to a very slow robot's wifi.