From 79a001baae34b52a73df85d51d9d666ddff1a416 Mon Sep 17 00:00:00 2001 From: Sebastian Waldvogel Date: Fri, 9 Jan 2026 19:07:29 +0100 Subject: [PATCH] Copyright 2026 --- LICENSE | 2 +- README.md | 11 ++++------- src/e3dc_cli/__main__.py | 2 +- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/LICENSE b/LICENSE index d40764a..153bbbf 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2025 Sebastian Waldvogel +Copyright (c) 2022-2026 Sebastian Waldvogel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index edbbc12..7036dbe 100644 --- a/README.md +++ b/README.md @@ -264,12 +264,9 @@ Extended configuration settings (see [chapter 'configuration' of python-e3dc](ht ### All Available Parameters and Configuration Options Details about all available options: ``` -Usage: e3dc-cli [-h] [--version] [-c CONFIG] [-o OUTPUT] [--connection.type {local,web}] [--connection.address ADDRESS] - [--connection.user USER] [--connection.password PASSWORD] [--connection.rscp_password RSCP_PASSWORD] - [--connection.serial_number SERIAL_NUMBER] - [-q [{static_system,live,live_system,live_powermeter,live_battery,live_inverter,live_wallbox,history_today, - history_yesterday,history_week,history_previous_week,history_month,history_previous_month,history_year, - history_previous_year,history_total} ...]] +Usage: e3dc-cli [-h] [--version] [-c CONFIG] [-o OUTPUT] [--connection.type {local,web}] [--connection.address ADDRESS] [--connection.user USER] + [--connection.password PASSWORD] [--connection.rscp_password RSCP_PASSWORD] [--connection.serial_number SERIAL_NUMBER] + [-q [{static_system,live,live_system,live_powermeter,live_battery,live_inverter,live_wallbox,history_today,history_yesterday,history_week,history_previous_week,history_month,history_previous_month,history_year,history_previous_year,history_total} ...]] [--set.power_limits.enable {true,false}] [--set.power_limits.max_charge MAX_CHARGE] [--set.power_limits.max_discharge MAX_DISCHARGE] [--set.power_limits.discharge_start DISCHARGE_START] [--set.powersave {true,false}] [--set.weather_regulated_charge {true,false}] @@ -277,7 +274,7 @@ Usage: e3dc-cli [-h] [--version] [-c CONFIG] [-o OUTPUT] [--connection.type {loc [--extended_config.pvis { EXTENDED SOLAR INVERTERS CONFIG HIERARCHY }] [--extended_config.batteries { EXTENDED BATTERIES CONFIG HIERARCHY }] -Query E3/DC solar inverter systems | Version 1.0.4 | Copyright 2022-2025 +Query E3/DC solar inverter systems | Version 1.0.5 | Copyright 2022-2026 Default Config File Locations: ['./config.json'], Note: default values below are the ones overridden by the contents of: ./config.json diff --git a/src/e3dc_cli/__main__.py b/src/e3dc_cli/__main__.py index 66dcb18..b60036a 100755 --- a/src/e3dc_cli/__main__.py +++ b/src/e3dc_cli/__main__.py @@ -13,7 +13,7 @@ # ---- Module Meta-Data ------------------------------------------------------------------------------------------------ __prog__ = "e3dc-cli" __dist_name__ = "e3dc_cli" -__copyright__ = "Copyright 2022-2025" +__copyright__ = "Copyright 2022-2026" __author__ = "Sebastian Waldvogel" __dist_metadata__ = importlib.metadata.metadata("e3dc_cli")