diff --git a/knxd-wg/translations/en.yaml b/knxd-wg/translations/en.yaml index c14e3a7..49489d6 100644 --- a/knxd-wg/translations/en.yaml +++ b/knxd-wg/translations/en.yaml @@ -36,6 +36,9 @@ configuration: dest_port: name: Interface port description: network port the IP based interface should use (only for tpuart-ip, ncn5120-ip and ipt) + connect_device: + name: connect_device + description: Device to use for connection,After setting this option, the device option becomes invalid, mainly to solve the problem that the device can only select/dev/ttyUSB0 when there are multiple USBs baudrate: name: baudrate description: baudrate(only for tpuart、ft12、ft12cemi、ncn5120) diff --git a/knxd-wg/translations/zh-Hans.yaml b/knxd-wg/translations/zh-Hans.yaml index 2fb2f44..e783698 100644 --- a/knxd-wg/translations/zh-Hans.yaml +++ b/knxd-wg/translations/zh-Hans.yaml @@ -37,6 +37,9 @@ configuration: dest_port: name: 接口端口 description: 基于IP的接口应使用的网络端口(仅适用于tpuart IP、ncn5120 IP和ipt) + connect_device: + name: connect_device + description: 连接设备,设置此项后device项失效,主要解决多个usb时device只能选择/dev/ttyUSB0的问题 baudrate: name: 波特率 description: 波特率(仅适用于tpuart、ft12、ft12cemi、ncn5120) \ No newline at end of file diff --git a/zigbee2mqtt/CHANGELOG.md b/zigbee2mqtt/CHANGELOG.md index 50fbd6c..3a379c3 100644 --- a/zigbee2mqtt/CHANGELOG.md +++ b/zigbee2mqtt/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.42.0-2 +- 尝试修复 https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/issues/664 ## 1.41.0-1 - 升级Zigbee2MQTT最新版本 [`1.41.0`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.41.0) - 将插件特定配置挂载到插件容器 (/addon_config) diff --git a/zigbee2mqtt/config.json b/zigbee2mqtt/config.json index ae114d5..0ab7078 100644 --- a/zigbee2mqtt/config.json +++ b/zigbee2mqtt/config.json @@ -1,10 +1,11 @@ { "name": "Zigbee2MQTT", - "version": "1.41.0-1", + "version": "1.42.0-2", "slug": "zigbee2mqtt", "description": "可以自定义ZigBee的接收连接器", "uart": true, - "url": "https://gitcode.com/waxgourd/addons", + "udev": true, + "url": "https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/tree/master/zigbee2mqtt", "startup": "application", "services": [ "mqtt:need" @@ -19,8 +20,20 @@ "timeout": 30, "panel_icon": "mdi:zigbee", "map": [ - "share:rw", - "config:rw" + { + "type": "share", + "read_only": false + }, + { + "type": "homeassistant_config", + "read_only": false, + "path": "/config" + }, + { + "type": "addon_config", + "read_only": false, + "path": "/addon_config" + } ], "ports": { "8485/tcp": 8485, @@ -62,7 +75,7 @@ }, "serial": { "port": "str?", - "adapter": "match(zstack|deconz|zigate|ezsp|ember)?", + "adapter": "match(zstack|deconz|zigate|ezsp|ember|zboss)?", "baudrate": "int?", "rtscts": "bool?" },