steamloop 1.2.0__tar.gz → 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {steamloop-1.2.0 → steamloop-1.2.1}/PKG-INFO +1 -1
  2. {steamloop-1.2.0 → steamloop-1.2.1}/pyproject.toml +1 -1
  3. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/__init__.py +1 -1
  4. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/cli.py +2 -2
  5. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/PKG-INFO +1 -1
  6. {steamloop-1.2.0 → steamloop-1.2.1}/LICENSE +0 -0
  7. {steamloop-1.2.0 → steamloop-1.2.1}/README.md +0 -0
  8. {steamloop-1.2.0 → steamloop-1.2.1}/setup.cfg +0 -0
  9. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/__main__.py +0 -0
  10. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/certs.py +0 -0
  11. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/connection.py +0 -0
  12. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/const.py +0 -0
  13. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/exceptions.py +0 -0
  14. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/models.py +0 -0
  15. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop/py.typed +0 -0
  16. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/SOURCES.txt +0 -0
  17. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/dependency_links.txt +0 -0
  18. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/entry_points.txt +0 -0
  19. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/requires.txt +0 -0
  20. {steamloop-1.2.0 → steamloop-1.2.1}/src/steamloop.egg-info/top_level.txt +0 -0
  21. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_certs.py +0 -0
  22. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_cli.py +0 -0
  23. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_connection.py +0 -0
  24. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_const.py +0 -0
  25. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_dunder_main.py +0 -0
  26. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_exceptions.py +0 -0
  27. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_models.py +0 -0
  28. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_pairing.py +0 -0
  29. {steamloop-1.2.0 → steamloop-1.2.1}/tests/test_protocol.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steamloop
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Local control for choochoo based thermostats
5
5
  Author-email: "J. Nick Koston" <nick@koston.org>
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ requires = [ "setuptools>=77.0.3" ]
4
4
 
5
5
  [project]
6
6
  name = "steamloop"
7
- version = "1.2.0"
7
+ version = "1.2.1"
8
8
  description = "Local control for choochoo based thermostats"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  """Local control for thermostat devices over mTLS."""
2
2
 
3
- __version__ = "1.2.0"
3
+ __version__ = "1.2.1"
4
4
 
5
5
  from .connection import ThermostatConnection, load_pairing, save_pairing
6
6
  from .const import DEFAULT_PORT, FanMode, HoldType, ZoneMode
@@ -19,8 +19,8 @@ if TYPE_CHECKING:
19
19
 
20
20
  _LOGGER = logging.getLogger(__name__)
21
21
 
22
- _EHEAT_LABELS = {"": "N/A", "1": "On", "2": "Off"}
23
- _ACTIVE_LABELS = {"": "N/A", "1": "Inactive", "2": "Active"}
22
+ _EHEAT_LABELS = {"": "N/A", "0": "Off", "1": "On"}
23
+ _ACTIVE_LABELS = {"": "N/A", "0": "Inactive", "1": "Idle", "2": "Active"}
24
24
 
25
25
  _HOLD_MAP: dict[str, HoldType] = {
26
26
  "manual": HoldType.MANUAL,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steamloop
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Local control for choochoo based thermostats
5
5
  Author-email: "J. Nick Koston" <nick@koston.org>
6
6
  License-Expression: Apache-2.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes