diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a75c09264..5dd32dd60 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,16 +1,16 @@ Did you read the FAQ? -https://koenkk.github.io/zigbee2mqtt/information/FAQ.md +https://www.zigbee2mqtt.io/information/FAQ.md Unsupported device? -https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html +https://www.zigbee2mqtt.io/how_tos/how_to_support_new_devices.html A question? -Read the documentation: https://koenkk.github.io/zigbee2mqtt/ +Read the documentation: https://www.zigbee2mqtt.io/ Bug report: - First make sure your on the latest version of zigbee2mqtt. - Make sure you are running the latest CC253X firmware from https://github.com/koenkk/z-stack-firmware. - Provide a clear description of the problem. - If applicable, provide steps how to reproduce the problem. -- Provide a log with `log_level` set to `debug`, see https://koenkk.github.io/zigbee2mqtt/configuration/configuration.html +- Provide a log with `log_level` set to `debug`, see https://www.zigbee2mqtt.io/configuration/configuration.html - DON'T copy logs directly here, post a link to https://hastebin.com/ or https://pastebin.com/. diff --git a/README.md b/README.md index b57784732..5505813b0 100644 --- a/README.md +++ b/README.md @@ -27,19 +27,19 @@

-## [Getting started](https://koenkk.github.io/zigbee2mqtt/#getting-started) -The [documentation](https://koenkk.github.io/zigbee2mqtt/) provides you all the information needed to get up and running! Make sure you don't skip sections if this is your first visit, as there might be important details in there for you. +## [Getting started](https://www.zigbee2mqtt.io/#getting-started) +The [documentation](https://www.zigbee2mqtt.io/) provides you all the information needed to get up and running! Make sure you don't skip sections if this is your first visit, as there might be important details in there for you. -If you aren't familiar with **Zigbee** terminology make sure you [read this](https://koenkk.github.io/zigbee2mqtt/information/zigbee_network.html) to help you out. +If you aren't familiar with **Zigbee** terminology make sure you [read this](https://www.zigbee2mqtt.io/information/zigbee_network.html) to help you out. -## [Integrations](https://koenkk.github.io/zigbee2mqtt/#integration) +## [Integrations](https://www.zigbee2mqtt.io/#integration) Zigbee2mqtt integrates well with (almost) every home automation solution because it uses MQTT. However the following integrations are worth mentioning: ### [Home Assistant](https://www.home-assistant.io/) - [Hassio](https://www.home-assistant.io/hassio/): Using [the official addon](https://github.com/danielwelch/hassio-zigbee2mqtt) from [danielwelch](https://github.com/danielwelch) -- Generic install or Hassbian: Using instructions [here](https://koenkk.github.io/zigbee2mqtt/integration/home_assistant.html) +- Generic install or Hassbian: Using instructions [here](https://www.zigbee2mqtt.io/integration/home_assistant.html) @@ -52,9 +52,9 @@ Zigbee2mqtt integrates well with (almost) every home automation solution because ![Architecture](images/architecture.png) ## Supported devices -See [Supported devices](https://koenkk.github.io/zigbee2mqtt/information/supported_devices.html) to check whether your device is supported. There is quite an extensive list, including devices from vendors like Xiaomi, Ikea, Philips, OSRAM and more. +See [Supported devices](https://www.zigbee2mqtt.io/information/supported_devices.html) to check whether your device is supported. There is quite an extensive list, including devices from vendors like Xiaomi, Ikea, Philips, OSRAM and more. -If it's not listed in [Supported devices](https://koenkk.github.io/zigbee2mqtt/information/supported_devices.html), support can be added (fairly) easy, see [How to support new devices](https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html). +If it's not listed in [Supported devices](https://www.zigbee2mqtt.io/information/supported_devices.html), support can be added (fairly) easy, see [How to support new devices](https://www.zigbee2mqtt.io/how_tos/how_to_support_new_devices.html). ## Support & help If you need assistance you can check [opened issues](https://github.com/Koenkk/zigbee2mqtt/issues). Feel free to help with Pull Requests when you were able to fix things or add new devices or just share the love on social media. diff --git a/lib/extension/devicePublish.js b/lib/extension/devicePublish.js index 715c95ed3..54fff962f 100644 --- a/lib/extension/devicePublish.js +++ b/lib/extension/devicePublish.js @@ -101,7 +101,7 @@ class DevicePublish { const model = zigbeeShepherdConverters.findByZigbeeModel(device.modelId); if (!model) { logger.warn(`Device with modelID '${device.modelId}' is not supported.`); - logger.warn(`Please see: https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html`); + logger.warn(`Please see: https://www.zigbee2mqtt.io/how_tos/how_to_support_new_devices.html`); return; } diff --git a/lib/extension/deviceReceive.js b/lib/extension/deviceReceive.js index 633292e10..c8b5d446c 100644 --- a/lib/extension/deviceReceive.js +++ b/lib/extension/deviceReceive.js @@ -54,7 +54,7 @@ class DeviceReceive { if (!mappedDevice) { logger.warn(`Device with modelID '${device.modelId}' is not supported.`); - logger.warn(`Please see: https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html`); + logger.warn(`Please see: https://www.zigbee2mqtt.io/how_tos/how_to_support_new_devices.html`); return; } @@ -90,7 +90,7 @@ class DeviceReceive { ); } - logger.warn(`Please see: https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html.`); + logger.warn(`Please see: https://www.zigbee2mqtt.io/how_tos/how_to_support_new_devices.html.`); return; } diff --git a/lib/util/settings.js b/lib/util/settings.js index ff96760e6..91c054a43 100644 --- a/lib/util/settings.js +++ b/lib/util/settings.js @@ -30,7 +30,7 @@ const defaults = { * * Therefore zigbee2mqtt BY DEFAULT caches all values and resend it with every message. * advanced.cache_state in configuration.yaml allows to configure this. - * https://koenkk.github.io/zigbee2mqtt/configuration/configuration.html + * https://www.zigbee2mqtt.io/configuration/configuration.html */ cache_state: true,