home-assistant-custom-components.better_thermostat: 1.5.0 -> 1.6.0 (#337385)

This commit is contained in:
Martin Weinelt 2024-08-26 15:23:24 +02:00 committed by GitHub
commit 5f4e8f3ebe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,24 +1,26 @@
{ lib, fetchFromGitHub, buildHomeAssistantComponent }:
{
buildHomeAssistantComponent,
fetchFromGitHub,
lib,
}:
buildHomeAssistantComponent rec {
owner = "KartoffelToby";
domain = "better_thermostat";
version = "1.5.0";
version = "1.6.0";
src = fetchFromGitHub {
owner = "KartoffelToby";
repo = "better_thermostat";
rev = "refs/tags/${version}";
hash = "sha256-noo96Uks+MHtTbwIoU5gnekp/IwMry0U18X4I1qe4LQ=";
hash = "sha256-9iwrGKk3/m38ghDVGzKODWo9vzzZxJ91413/KWnULJU=";
};
meta = with lib; {
changelog =
"https://github.com/KartoffelToby/better_thermostat/releases/tag/${version}";
description =
"Smart TRV control integrates room-temp sensors, window/door sensors, weather forecasts, and ambient probes for efficient heating and calibration, enhancing energy savings and comfort.";
meta = {
changelog = "https://github.com/KartoffelToby/better_thermostat/releases/tag/${version}";
description = "Smart TRV control integrates room-temp sensors, window/door sensors, weather forecasts, and ambient probes for efficient heating and calibration, enhancing energy savings and comfort";
homepage = "https://better-thermostat.org/";
maintainers = with maintainers; [ mguentner ];
license = licenses.agpl3Only;
maintainers = with lib.maintainers; [ mguentner ];
license = lib.licenses.agpl3Only;
};
}