Просмотр исходного кода

Update project name and readme

Nik Rolls 6 лет назад
Родитель
Сommit
0be1e63fb6

+ 4 - 3
README.md

@@ -35,7 +35,8 @@ Work is in progress to support Goldair WiFi dehumidifiers.
 Installation
 ------------
 The preferred installation method is via [HACS](https://hacs.xyz/). Once you have HACS set up, simply follow the
-[instructions for adding a custom repository](https://hacs.xyz/docs/navigation/settings#custom-repositories).
+[instructions for adding a custom repository](https://hacs.xyz/docs/navigation/settings#custom-repositories) and then
+the integration will be available to install like any other.
 
 You can also use [Custom Updater](https://github.com/custom-components/custom_updater). Once you have Custom Updater set
 up, simply go to the dev-service page
@@ -81,7 +82,7 @@ goldair_climate:
 #### type
     *(string) (Required)* The type of Goldair device. Currently `heater` is the only option; a 
                                               future update will add support for dehumidifiers and other devices, so
-                                              setting the type now will prevent the component breaking when this
+                                              setting the type now will prevent the integration breaking when this
                                               functionality is released.
 
 #### climate
@@ -125,7 +126,7 @@ taking effect.
 
 Finding your device ID and local key 
 ------------------------------------
-You can find these keys the same way as you would for any Tuya local component. You'll need the Tuya Smart app rather 
+You can find these keys the same way as you would for any Tuya local integration. You'll need the Tuya Smart app rather
 than the Goldair app (the Goldair app is just a re-branded clone of Tuya Smart).
 
 * [Instructions for iOS](https://github.com/codetheweb/tuyapi/blob/master/docs/SETUP.md)

+ 1 - 1
custom_components/goldair_climate/__init__.py

@@ -15,7 +15,7 @@ import homeassistant.helpers.config_validation as cv
 from homeassistant.const import (CONF_NAME, CONF_HOST, TEMP_CELSIUS)
 from homeassistant.helpers.discovery import load_platform
 
-VERSION = '0.0.3'
+VERSION = '0.0.5'
 
 _LOGGER = logging.getLogger(__name__)
 

+ 1 - 1
custom_components/goldair_climate/manifest.json

@@ -1,6 +1,6 @@
 {
   "domain": "goldair_climate",
-  "name": "goldair_climate",
+  "name": "Goldair WiFi climate devices",
   "documentation": "https://github.com/nikrolls/homeassistant-goldair-climate",
   "dependencies": [],
   "codeowners": ["@nikrolls"],

+ 1 - 1
custom_updater.json

@@ -1,6 +1,6 @@
 {
     "goldair_climate": {
-        "version": "0.0.4",
+        "version": "0.0.5",
         "local_location": "/custom_components/goldair_climate/__init__.py",
         "remote_location": "https://raw.githubusercontent.com/nikrolls/homeassistant-goldair-climate/master/custom_components/goldair_climate/__init__.py",
         "visit_repo": "https://github.com/nikrolls/homeassistant-goldair-climate",