Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Sowen committed Nov 26, 2021
1 parent 180b60d commit 654a825
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.6.0 (2021-11-26)

### Improvements

- **Elgato EVE history service**: Support for graphical temperature/humidity plots when using EVE app. The history is
stored on the filesystem of the server running this plugin (e.g. your Raspberry Pi). Many thanks to @dmalch for
implementing this feature.
- **General**: Clean-up and version bumps.

## 0.5.2 (2021-10-07)

### New devices
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,11 @@ button and note the "auth_token" that is being generated, add it to your config.
- Implement more devices
- Implement META-Group (Homematic IP rooms) to HomeKit room-Mapping
- Implement custom characteristics (Actuator) for Radiator Thermostats (e.g. to be used in Eve App)
- Implement custom EVE logging (https://github.com/simont77/fakegato-history)

## Many thanks to coreGreenberet
## Many thanks to our contributors

https://github.com/coreGreenberet/homematicip-rest-api
- @coreGreenberet for reverse-engineering and implementation of the first HomematicIP-API client using Python
(https://github.com/coreGreenberet/homematicip-rest-api)
- @dmalch for adding fakegato-history support (https://github.com/simont77/fakegato-history)

## Help needed!
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-homematicip",
"version": "0.5.2",
"version": "0.6.0",
"description": "Homematic IP plugin for homebridge",
"license": "Apache-2.0",
"author": "Marc Sowen <[email protected]>",
Expand Down
12 changes: 0 additions & 12 deletions src/devices/HmIPWallMountedThermostat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,6 @@ export class HmIPWallMountedThermostat extends HmIPGenericDevice implements Upda
length: 1000,
});

const temperatureService = this.accessory.getService(this.platform.Service.TemperatureSensor);
if (temperatureService !== undefined) {
this.platform.log.info('Removing obsolete temperature service from %s', accessory.context.device.label);
this.accessory.removeService(temperatureService);
}

const humidityService = this.accessory.getService(this.platform.Service.HumiditySensor);
if (humidityService !== undefined) {
this.platform.log.info('Removing obsolete humidity service from %s', accessory.context.device.label);
this.accessory.removeService(humidityService);
}

this.service = this.accessory.getService(this.platform.Service.Thermostat) ||
this.accessory.addService(this.platform.Service.Thermostat);
this.service.setCharacteristic(this.platform.Characteristic.Name, accessory.context.device.label);
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export const PLUGIN_NAME = 'homebridge-homematicip';
/**
* Version to be used in protocol communication
*/
export const PLUGIN_VERSION = '0.5.2';
export const PLUGIN_VERSION = '0.6.0';

0 comments on commit 654a825

Please sign in to comment.