Skip to content

Commit

Permalink
Release v2.10. Bugfix: assign proper weight when adding to accumulators.
Browse files Browse the repository at this point in the history
  • Loading branch information
chaunceygardiner committed Feb 19, 2022
1 parent c7ccfce commit 0ee9d2b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ This extension was inspired by [weewx-realtime_gauge_data](https://github.com/gj

# Installation Instructions

1. Download the lastest release, weewx-loopdata-2.9.zip, from the
1. Download the lastest release, weewx-loopdata-2.10.zip, from the
[GitHub Repository](https://github.com/chaunceygardiner/weewx-loopdata).

1. Run the following command.

`sudo /home/weewx/bin/wee_extension --install weewx-loopdata-2.9.zip`
`sudo /home/weewx/bin/wee_extension --install weewx-loopdata-2.10.zip`

Note: this command assumes weewx is installed in /home/weewx. If it's installed
elsewhere, adjust the path of wee_extension accordingly.
Expand Down
2 changes: 1 addition & 1 deletion bin/user/loopdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# get a logger object
log = logging.getLogger(__name__)

LOOP_DATA_VERSION = '2.9'
LOOP_DATA_VERSION = '2.10'

if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 7):
raise weewx.UnsupportedFeature(
Expand Down
4 changes: 4 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
loopdata change history
-----------------------

2.10 Release 2022/02/18
1. Bugfix. Use loop frequency as the weight when adding to the accumulators.


2.9 Release 13 February 2022
1. Fix to work with WeeWX 4.6

Expand Down
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def loader():
class LoopDataInstaller(ExtensionInstaller):
def __init__(self):
super(LoopDataInstaller, self).__init__(
version = "2.9",
version = "2.10",
name = 'loopdata',
description = 'Loop statistics for real time reporting.',
author = "John A Kline",
Expand Down

0 comments on commit 0ee9d2b

Please sign in to comment.