Skip to content

Commit

Permalink
Fix change-log links, moved consts to right place
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-bar committed Apr 25, 2020
1 parent b5fa29b commit f8b9c98
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

**Fixed bugs:**

- Fix [\#39](https://github.com/elad-bar/ha-edgeos/issues/39) [\#46](https://github.com/elad-bar/ha-edgeos/issues/46) missing labels
- Fix [\#44](https://github.com/elad-bar/ha-edgeos/issues/44) by removing dependency on logger component
- Fix [\#39](https://github.com/elad-bar/ha-hpprinter/issues/39) [\#46](https://github.com/elad-bar/ha-hpprinter/issues/46) missing labels
- Fix [\#44](https://github.com/elad-bar/ha-hpprinter/issues/44) by removing dependency on logger component

## 2020-04-24 #5

Expand All @@ -15,13 +15,13 @@

**Fixed bugs:**

- Fix [\#42](https://github.com/elad-bar/ha-edgeos/issues/42) printer sensor
- Fix [\#42](https://github.com/elad-bar/ha-hpprinter/issues/42) printer sensor

## 2020-04-24 #4

**Fixed bugs:**

- Fix [\#41](https://github.com/elad-bar/ha-edgeos/issues/41) error while loading entities
- Fix [\#41](https://github.com/elad-bar/ha-hpprinter/issues/41) error while loading entities

## 2020-04-24 #3

Expand All @@ -33,22 +33,22 @@

**Fixed bugs:**

- Fix [\#40](https://github.com/elad-bar/ha-edgeos/issues/40) returned previous logic of extracting printer status
- Fix [\#40](https://github.com/elad-bar/ha-hpprinter/issues/40) returned previous logic of extracting printer status

## 2020-04-24 #1

**Implemented enhancements:**

- Added changelog
- Added ability to configure update entities interval in seconds (Integrations -> Integration Name -> Options) [\#31](https://github.com/elad-bar/ha-edgeos/issues/31)
- Added validation to add new integration, display error in case printer is unreachable or unsupported [\#15](https://github.com/elad-bar/ha-edgeos/issues/15) [\#11](https://github.com/elad-bar/ha-edgeos/issues/11)
- Added ability to configure update entities interval in seconds (Integrations -> Integration Name -> Options) [\#31](https://github.com/elad-bar/ha-hpprinter/issues/31)
- Added validation to add new integration, display error in case printer is unreachable or unsupported [\#15](https://github.com/elad-bar/ha-hpprinter/issues/15) [\#11](https://github.com/elad-bar/ha-hpprinter/issues/11)
- Moved code to new file structure
- More logs added for easier debugging
- Removed service `hpprinter.save_debug_data`
- Added option to store debug files from Integration UI -> Option (more details in README)

**Fixed bugs:**

- Fix entities / device / device's area changing names is being reset after restart [\#24](https://github.com/elad-bar/ha-edgeos/issues/24) [\#28](https://github.com/elad-bar/ha-edgeos/issues/28) [\#39](https://github.com/elad-bar/ha-edgeos/issues/39)
- Moved [Updating 2020-04-14 09:21...] to DEBUG [\#39](https://github.com/elad-bar/ha-edgeos/issues/39)
- Fix entities / device / device's area changing names is being reset after restart [\#24](https://github.com/elad-bar/ha-hpprinter/issues/24) [\#28](https://github.com/elad-bar/ha-hpprinter/issues/28) [\#39](https://github.com/elad-bar/ha-hpprinter/issues/39)
- Moved [Updating 2020-04-14 09:21...] to DEBUG [\#39](https://github.com/elad-bar/ha-hpprinter/issues/39)

3 changes: 0 additions & 3 deletions custom_components/hpprinter/helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@

_LOGGER = logging.getLogger(__name__)

DOMAIN_LOGGER = "logger"
SERVICE_SET_LEVEL = "set_level"


def clear_ha(hass: HomeAssistant, name):
if DATA_HP_PRINTER not in hass.data:
Expand Down
2 changes: 2 additions & 0 deletions custom_components/hpprinter/models/config_data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from homeassistant.const import CONF_HOST, CONF_NAME, CONF_PORT, CONF_SSL

from ..helpers.const import *


Expand Down

0 comments on commit f8b9c98

Please sign in to comment.