diff --git a/eweLink-smart-home/CHANGELOG.md b/eweLink-smart-home/CHANGELOG.md new file mode 100644 index 0000000..9f13dc9 --- /dev/null +++ b/eweLink-smart-home/CHANGELOG.md @@ -0,0 +1,3 @@ +### 1.0.0 (2024-09-09) + +- 首次推出 \ No newline at end of file diff --git a/eweLink-smart-home/DOCS.md b/eweLink-smart-home/DOCS.md new file mode 100644 index 0000000..8a11c21 --- /dev/null +++ b/eweLink-smart-home/DOCS.md @@ -0,0 +1,52 @@ +# eWeLink Smart Home + +--- + +## 疑难解答 + +- 解决“调用服务xxxxx/xxxxxxxx失败”的问题。找不到服务。`问题,使用“文件编辑器”编辑“configuration.yaml”。将以下信息附加到文件末尾: + +``` +switch: + - platform: template + switches: + ewelink_virtual_switch: + turn_on: + service: switch.turn_on + turn_off: + service: switch.turn_off + +cover: + - platform: template + covers: + ewelink_virtual_cover: + open_cover: + service: cover.open_cover + close_cover: + service: cover.close_cover + stop_cover: + service: cover.stop_cover + set_cover_position: + service: cover.set_cover_position + +fan: + - platform: template + fans: + ewelink_virtual_fan: + value_template: "{{ states('input_boolean.state') }}" + turn_on: + service: fan.turn_on + turn_off: + service: fan.turn_off + set_preset_mode: + service: fan.set_preset_mode + +light: + - platform: template + lights: + ewelink_virtual_light: + turn_on: + service: light.turn_on + turn_off: + service: light.turn_off +``` \ No newline at end of file diff --git a/eweLink-smart-home/README.md b/eweLink-smart-home/README.md new file mode 100644 index 0000000..ed2d6c4 --- /dev/null +++ b/eweLink-smart-home/README.md @@ -0,0 +1,12 @@ +# 冬瓜甄选:eWeLink Smart Home + +--- +## 关于 + +将eWeLink与家庭助理连接 + +## 来源 + +https://github.com/CoolKit-Technologies/ha-addon + + diff --git a/eweLink-smart-home/config.json b/eweLink-smart-home/config.json new file mode 100644 index 0000000..9c0ddc9 --- /dev/null +++ b/eweLink-smart-home/config.json @@ -0,0 +1,27 @@ +{ + "name": "eWeLink Smart Home", + "version": "1.0.0", + "slug": "ewelink_smart_home_slug", + "description": "将 eWeLink 与家庭助理连接", + "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"], + "init": false, + "startup": "application", + "boot": "auto", + "url": "https://www.facebook.com/ewelink.support", + "image":"wghaos/ewelink", + "host_network": false, + "ports": { + "3000/tcp": 3000 + }, + "ports_description": { + "3000/tcp": "Web interface" + }, + "panel_icon": "mdi:earth", + "panel_title": "eWeLink Smart Home", + "hassio_api": true, + "webui": "[PROTO:http]://[HOST]:[PORT:3000]", + "homeassistant_api": true, + "ingress": true, + "ingress_port": 3000, + "ingress_entry": "" +} diff --git a/eweLink-smart-home/icon.png b/eweLink-smart-home/icon.png new file mode 100644 index 0000000..20b744a Binary files /dev/null and b/eweLink-smart-home/icon.png differ diff --git a/get-hacs/CHANGELOG.md b/get-hacs/CHANGELOG.md new file mode 100644 index 0000000..db65437 --- /dev/null +++ b/get-hacs/CHANGELOG.md @@ -0,0 +1,28 @@ +# 1.3.1 + +- 首次推出 + +# 1.3.0 + +- Dynamically get the version again + +# 1.2.1 + +- Create custom_components directory if it does not exist + +# 1.2.0 + +- Set dev version to 2.0.0 + +# 1.1.1 + +- Fix version format for development build + +# 1.1.0 + +- Added option to get development builds +- Change base images to `*-base-python:3.12-alpine3.20` + +# 1.0.0 + +Initial release diff --git a/get-hacs/DOCS.md b/get-hacs/DOCS.md new file mode 100644 index 0000000..0337a98 --- /dev/null +++ b/get-hacs/DOCS.md @@ -0,0 +1,9 @@ +# Get HACS + +## 使用方法 + +1. 使用上面的安装按钮构建插件。 + +1. 启动插件。 + +1. 导航到附加组件日志并按照其中给出的说明进行操作。 diff --git a/get-hacs/README.md b/get-hacs/README.md new file mode 100644 index 0000000..7a7baff --- /dev/null +++ b/get-hacs/README.md @@ -0,0 +1,11 @@ +# 冬瓜甄选addons:Get HACS + +## 关于 + +获取家庭助理HACS的最简单方法。 + +> **此插件不运行HACS。此插件仅提供下载HACS的最简单方法** + +## 源 + +https://github.com/hacs/addons \ No newline at end of file diff --git a/get-hacs/config.yaml b/get-hacs/config.yaml new file mode 100644 index 0000000..16699bd --- /dev/null +++ b/get-hacs/config.yaml @@ -0,0 +1,19 @@ +name: Get HACS +version: "1.3.1" +slug: get +image: "ghcr.io/hacs/{arch}-addon-get" +description: 获取家庭助理HACS的最简单方法 +startup: once +boot: manual +url: "https://github.com/hacs/addons/tree/main/get" +image: wghaos/addons-get-hacs +# image: ghcr.io/hacs/{arch}-addon-get +arch: + - armv7 + - aarch64 + - amd64 +init: false +schema: + channel: list(current|development)? +map: + - homeassistant_config:rw diff --git a/get-hacs/icon.png b/get-hacs/icon.png new file mode 100644 index 0000000..0ab93b5 Binary files /dev/null and b/get-hacs/icon.png differ diff --git a/get-hacs/logo.png b/get-hacs/logo.png new file mode 100644 index 0000000..0ab93b5 Binary files /dev/null and b/get-hacs/logo.png differ diff --git a/xiaoya-tvbox/CHANGELOG.md b/xiaoya-tvbox/CHANGELOG.md index a984ddc..2e54c7c 100644 --- a/xiaoya-tvbox/CHANGELOG.md +++ b/xiaoya-tvbox/CHANGELOG.md @@ -1,3 +1,10 @@ +### latest-2024091809(2024-09-18) + +- 版本升级 + +### 1.1 (2024-09-06) + +- 版本升级 ### latest (2024-03-23) diff --git a/xiaoya-tvbox/config.yaml b/xiaoya-tvbox/config.yaml index 15e3fa9..b61cdab 100644 --- a/xiaoya-tvbox/config.yaml +++ b/xiaoya-tvbox/config.yaml @@ -1,9 +1,9 @@ name: "小雅-TvBox" -description: "AList代理,支持xiaoya版AList界面管理。" -version: "latest" +description: "AList代理,支持xiaoya版AList界面管理" +version: "latest-2024091809" slug: "xiaoya-tvbox" -url: https://github.com/power721/alist-tvbox -image: haroldli/xiaoya-tvbox +url: https://gitcode.com/waxgourd/addons +image: wghaos/xiaoya-tvbox init: false arch: - aarch64