Skip to content

Commit

Permalink
## [2.12.4] - 20.03.2024
Browse files Browse the repository at this point in the history
- Bugikorjaus: Korjattu `vain muuttuessa` -ohjausasetus
  - Ohjaus saatettiin ylikirjoittaa vaikka ei pitänyt
  - Historiaan kirjoitettiin tuplarivejä
  • Loading branch information
jisotalo committed Mar 20, 2024
1 parent fc1a79b commit a088f33
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

# Suomeksi
## [2.12.4] - 20.03.2024
- Bugikorjaus: Korjattu `vain muuttuessa` -ohjausasetus
- Ohjaus saatettiin ylikirjoittaa vaikka ei pitänyt
- Historiaan kirjoitettiin tuplarivejä

## [2.12.3] - 09.03.2024
- Lisätty mahdollisuus pyytää `USER_OVERRIDE`-funktiosta logiikan uudelleen suoritusta (palauttamalla `null` takaisinkutsulla)
- Lisätty uusi esimerkki: **Ulkolämpötilan hakeminen sääpalvelusta ja sen hyödyntäminen** (`shelly-porssisahko-open-meteo-api.js`)
Expand Down Expand Up @@ -155,6 +160,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Versio 2 julkaistu (tehty täysin uusiksi)

# In English
## [2.12.4] - 20.03.2024
- Bugfix: Fixed issues with `only on change` output setting

## [2.12.3] - 09.03.2024
- Added option for `USER_OVERRIDE` to request a re-run of logic by returning `null` with the callback
- New example: `shelly-porssisahko-open-meteo-api.js`
Expand Down
2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-addon-temp-hours.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-addon-temp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-ht-sensor-temp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-open-meteo-api.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-override-avg-price.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko-user-config.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shelly-porssisahko.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/shelly-porssisahko.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ let C_DEF = {
let _ = {
s: {
/** version number */
v: "2.12.3",
v: "2.12.4",
/** Device name */
dn: '',
/** status as number */
Expand Down Expand Up @@ -804,6 +804,7 @@ function logic() {
_.s.cmd = cmd ? 1 : 0;
_.s.chkTs = epoch();
loopRunning = false;
return;
}

let cnt = 0;
Expand Down

0 comments on commit a088f33

Please sign in to comment.