Prepare for 1.8.0 release

This commit is contained in:
2022-04-17 10:47:56 -05:00
parent c95c9f8ce5
commit b2faf57d09
3 changed files with 19 additions and 3 deletions

View File

@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## v1.8.0 - 2022-04-17
### Added
* Added support for reading ScreenLogic time packets.
* Added support for getting system history data. This includes temperature readings over time as well as circuit on/off changes over time.
### Fixed
* Updated dependencies to safer versions of some packages.
* Fixed day-of-week conversion from Javascript Date objects to ScreenLogic times (SLTimes are 1-based starting on Sunday).
### Changed
* Alphabetized the readme.
## v1.7.0 - 2021-10-13 ## v1.7.0 - 2021-10-13
### Added ### Added

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "node-screenlogic", "name": "node-screenlogic",
"version": "1.7.0", "version": "1.8.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "node-screenlogic", "name": "node-screenlogic",
"version": "1.7.0", "version": "1.8.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"debug": "^4.3.2", "debug": "^4.3.2",

View File

@ -1,7 +1,7 @@
{ {
"name": "node-screenlogic", "name": "node-screenlogic",
"description": "Tool for connecting to Pentair ScreenLogic systems on the local network", "description": "Tool for connecting to Pentair ScreenLogic systems on the local network",
"version": "1.7.0", "version": "1.8.0",
"main": "index.js", "main": "index.js",
"license": "MIT", "license": "MIT",
"repository": "https://github.com/parnic/node-screenlogic.git", "repository": "https://github.com/parnic/node-screenlogic.git",