diff --git a/README.md b/README.md index 2c75296..1182258 100644 --- a/README.md +++ b/README.md @@ -35,21 +35,21 @@ The *Realtime gauge-data* extension can be installed manually or automatically u 1. Download the latest *Realtime gauge-data* extension from the *Realtime gauge-data* extension [releases page](https://github.com/gjr80/weewx-realtime_gauge-data/releases) into a directory accessible from the WeeWX machine. - $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data/releases/download/v0.5.0/rtgd-0.5.0.tar.gz + $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data/releases/download/v0.5.1/rtgd-0.5.1.tar.gz where $DOWNLOAD_ROOT is the path to the directory where the *Realtime gauge-data* extension is to be downloaded. 2. Install the *Realtime gauge-data* extension downloaded at step 1 using the *wee_extension* utility: - $ wee_extension --install=$DOWNLOAD_ROOT/rtgd-0.5.0.tar.gz + $ wee_extension --install=$DOWNLOAD_ROOT/rtgd-0.5.1.tar.gz This will result in output similar to the following: - Request to install '/var/tmp/rtgd-0.5.0.tar.gz' - Extracting from tar archive /var/tmp/rtgd-0.5.0.tar.gz + Request to install '/var/tmp/rtgd-0.5.1.tar.gz' + Extracting from tar archive /var/tmp/rtgd-0.5.1.tar.gz Saving installer file to /home/weewx/bin/user/installer/Rtgd Saved configuration dictionary. Backup copy at /home/weewx/weewx.conf.20190101124410 - Finished installing extension '/var/tmp/rtgd-0.5.0.tar.gz' + Finished installing extension '/var/tmp/rtgd-0.5.1.tar.gz' 3. Restart WeeWX: @@ -69,13 +69,13 @@ This will result in the *gauge-data.txt* file being generated on receipt of each 1. Download the latest *Realtime gauge-data* extension from the Realtime gauge-data [releases page](https://github.com/gjr80/weewx-realtime_gauge-data/releases) into a directory accessible from the WeeWX machine. - $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data/releases/download/v0.5.0/rtgd-0.5.0.tar.gz + $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data/releases/download/v0.5.1/rtgd-0.5.1.tar.gz where $DOWNLOAD_ROOT is the path to the directory where the *Realtime gauge-data* extension is to be downloaded. 2. Unpack the extension as follows: - $ tar xvfz rtgd-0.5.0.tar.gz + $ tar xvfz rtgd-0.5.1.tar.gz 3. Copy files from within the resulting directory as follows: diff --git a/bin/user/rtgd.py b/bin/user/rtgd.py index 6da9936..c06966a 100644 --- a/bin/user/rtgd.py +++ b/bin/user/rtgd.py @@ -17,9 +17,12 @@ You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. -Version: 0.5.0 Date: 15 September 2021 +Version: 0.5.0 Date: 17 October 2021 Revision History + 17 October 2021 v0.5.1 + - fixed bug where the default metric rain rate units used cm per hour + rather than mm per hour 15 September 2021 v0.5.0 - added ability to rsync gauge-data.txt to an rsync capable server, thanks to John Kline @@ -614,7 +617,7 @@ log = logging.getLogger(__name__) # version number of this script -RTGD_VERSION = '0.5.0' +RTGD_VERSION = '0.5.1' # version number (format) of the generated gauge-data.txt GAUGE_DATA_VERSION = '14' diff --git a/changelog b/changelog index 9e86317..89c2da5 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +v0.5.1 +- fixed bug where the default metric rain rate units used cm per hour rather + than mm per hour v0.5.0 - added ability to rsync gauge-data.txt to an rsync capable server, thanks to John Kline diff --git a/install.py b/install.py index ab14acf..2b29a09 100644 --- a/install.py +++ b/install.py @@ -10,10 +10,12 @@ Installer for Realtime gauge-data -Version: 0.5.0 Date: 15 September 2021 +Version: 0.5.1 Date: 17 October 2021 Revision History + 17 October 2021 v0.5.1 + - bumped version only 15 September 2021 v0.5.0 - fix incorrect date format - changed WeeWX required version to 4.0.0 @@ -91,7 +93,7 @@ import weewx REQUIRED_VERSION = "4.0.0" -RTGD_VERSION = "0.5.0" +RTGD_VERSION = "0.5.1" # define our config as a multiline string so we can preserve comments rtgd_config = """ diff --git a/readme.txt b/readme.txt index 2772e2c..f329436 100644 --- a/readme.txt +++ b/readme.txt @@ -58,7 +58,7 @@ gauge-data releases page (https://github.com/gjr80/weewx-realtime_gauge-data /releases) into a directory accessible from the WeeWX machine. $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data -/releases/download/v0.5.0/rtgd-0.5.0.tar.gz +/releases/download/v0.5.1/rtgd-0.5.1.tar.gz where $DOWNLOAD_ROOT is the path to the directory where the Realtime gauge-data extension is to be downloaded. @@ -66,15 +66,15 @@ gauge-data releases page (https://github.com/gjr80/weewx-realtime_gauge-data 2. Install the Realtime gauge-data extension downloaded at step 1 using the wee_extension utility: - $ wee_extension --install=$DOWNLOAD_ROOT/rtgd-0.5.0.tar.gz + $ wee_extension --install=$DOWNLOAD_ROOT/rtgd-0.5.1.tar.gz This will result in output similar to the following: - Request to install '/var/tmp/rtgd-0.5.0.tar.gz' - Extracting from tar archive /var/tmp/rtgd-0.5.0.tar.gz + Request to install '/var/tmp/rtgd-0.5.1.tar.gz' + Extracting from tar archive /var/tmp/rtgd-0.5.1.tar.gz Saving installer file to /home/weewx/bin/user/installer/Rtgd Saved configuration dictionary. Backup copy at /home/weewx/weewx.conf.20190101124410 - Finished installing extension '/var/tmp/rtgd-0.5.0.tar.gz' + Finished installing extension '/var/tmp/rtgd-0.5.1.tar.gz' 3. Restart WeeWX: @@ -102,14 +102,14 @@ gauge-data releases page (https://github.com/gjr80/weewx-realtime_gauge-data /releases) into a directory accessible from the WeeWX machine. $ wget -P $DOWNLOAD_ROOT https://github.com/gjr80/weewx-realtime_gauge-data -/releases/download/v0.5.0/rtgd-0.5.0.tar.gz +/releases/download/v0.5.1/rtgd-0.5.1.tar.gz where $DOWNLOAD_ROOT is the path to the directory where the Realtime gauge-data extension is to be downloaded. 2. Unpack the extension as follows: - $ tar xvfz rtgd-0.5.0.tar.gz + $ tar xvfz rtgd-0.5.1.tar.gz 3. Copy files from within the resulting directory as follows: