diff --git a/custom_components.json b/custom_components.json index 58dea86..01172f6 100644 --- a/custom_components.json +++ b/custom_components.json @@ -1,6 +1,6 @@ { "sensor.afvalbeheer": { - "version": "5.3.5", + "version": "5.3.6", "local_location": "/custom_components/afvalbeheer/__init__.py", "remote_location": "https://raw.githubusercontent.com/pippyn/Home-Assistant-Sensor-Afvalbeheer/master/custom_components/afvalbeheer/__init__.py", "visit_repo": "https://github.com/pippyn/Home-Assistant-Sensor-Afvalbeheer", diff --git a/custom_components/afvalbeheer/API.py b/custom_components/afvalbeheer/API.py index dd58471..75ab9fb 100644 --- a/custom_components/afvalbeheer/API.py +++ b/custom_components/afvalbeheer/API.py @@ -1148,6 +1148,7 @@ class XimmioCollector(WasteCollector): 'BRANCHES': WASTE_TYPE_BRANCHES, 'BULKLITTER': WASTE_TYPE_BULKLITTER, 'BULKYGARDENWASTE': WASTE_TYPE_BULKYGARDENWASTE, + 'BULKYRESTWASTE': WASTE_TYPE_PMD_GREY, 'GLASS': WASTE_TYPE_GLASS, 'GREENGREY': WASTE_TYPE_GREENGREY, 'GREEN': WASTE_TYPE_GREEN, diff --git a/custom_components/afvalbeheer/__init__.py b/custom_components/afvalbeheer/__init__.py index b34b5b9..860ad99 100644 --- a/custom_components/afvalbeheer/__init__.py +++ b/custom_components/afvalbeheer/__init__.py @@ -1,7 +1,7 @@ """ Sensor component for waste pickup dates from dutch and belgium waste collectors Original Author: Pippijn Stortelder -Current Version: 5.3.5 20240605 +Current Version: 5.3.6 20240711 20230705 - Added support for Afval3xBeter 20230822 - Fix icon for papier-pmd 20230927 - Fix ZRD API @@ -24,6 +24,7 @@ 20240414 - Fix deprecation warning for discovery 20240531 - Sort output of upcomming sensors 20240605 - Fix for RWM API +20240711 - Add mapping for PMD-Rest in Ximmio Example config: Configuration.yaml: @@ -60,7 +61,7 @@ from .API import get_wastedata_from_config -__version__ = "5.3.5" +__version__ = "5.3.6" _LOGGER = logging.getLogger(__name__) diff --git a/custom_components/afvalbeheer/manifest.json b/custom_components/afvalbeheer/manifest.json index 60e63d4..34d19c6 100644 --- a/custom_components/afvalbeheer/manifest.json +++ b/custom_components/afvalbeheer/manifest.json @@ -8,5 +8,5 @@ "rsa", "pycryptodome" ], - "version": "5.3.5" + "version": "5.3.6" }