diff --git a/librespeed/CHANGELOG.md b/librespeed/CHANGELOG.md index cd84ee979..2de13c1bc 100644 --- a/librespeed/CHANGELOG.md +++ b/librespeed/CHANGELOG.md @@ -1,8 +1,13 @@ +## 5.4.1b (03-04-2025) + +- Fix default PGID +- Fix ingress port + ## 5.4.1a (03-04-2025) -- Fixed ingress -- Added config for IPINFO_APIKEY -- Added descriptions for configs +- Fix ingress +- Add config for IPINFO_APIKEY +- Add descriptions for configs ## 5.4.1 (02-04-2025) diff --git a/librespeed/config.json b/librespeed/config.json index 2b83a8fdb..6d4afe86a 100644 --- a/librespeed/config.json +++ b/librespeed/config.json @@ -68,49 +68,38 @@ "/dev/nvme1", "/dev/nvme2" ], - "environment": { - "PGID": "0", - "PUID": "0" - }, "image": "ghcr.io/alexbelgium/librespeed-{arch}", "init": false, "ingress": true, + "ingress_port": 80, "ingress_stream": true, "map": [ "addon_config:rw" ], "name": "LibreSpeed", "options": { - "PGID": 0, - "PUID": 0 + "IPINFO_APIKEY": "", + "CUSTOM_RESULTS": false, + "PGID": 1000, + "PUID": 1000 }, "panel_admin": false, "panel_icon": "mdi:speedometer", "ports": { - "8096/tcp": 8096 + "80/tcp": 8096 }, "ports_description": { - "8096/tcp": "web interface (Not required for Ingress)" + "80/tcp": "web interface (Not required for Ingress)" }, - "privileged": [ - "SYS_ADMIN", - "DAC_READ_SEARCH" - ], "schema": { - "PGID": "int", - "PUID": "int", - "TZ": "str?", "IPINFO_APIKEY": "str?", - "PASSWORD": "str?", "CUSTOM_RESULTS": "bool?", - "cifsdomain": "str?", - "cifspassword": "str?", - "cifsusername": "str?", - "localdisks": "str?", - "networkdisks": "str?" + "PASSWORD": "str?", + "TZ": "str?", + "PGID": "int", + "PUID": "int" }, "slug": "librespeed", - "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", - "version": "5.4.1a" + "version": "5.4.1b" }