-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor fix: possibility of incorrect labels. bump v0.7.3
- Loading branch information
1 parent
dec5d0a
commit 7b9bffd
Showing
5 changed files
with
55 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2017 -2020 Glenn McKechnie <[email protected]> | ||
# Copyright (c) 2017-2020 Glenn McKechnie <[email protected]> | ||
# Credit to Tom Keffer <[email protected]>, Matthew Wall and the core | ||
# weewx team, all from whom I've borrowed heavily. | ||
# Mistakes are mine, corrections and or improvements welcomed | ||
|
@@ -22,7 +22,7 @@ | |
from weeutil.weeutil import to_bool | ||
from weewx.cheetahgenerator import SearchList | ||
|
||
wxobs_version = "0.7.2" | ||
wxobs_version = "0.7.3" | ||
|
||
try: | ||
# weewx4 logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,24 @@ def loader(): | |
class wxobsInstaller(ExtensionInstaller): | ||
def __init__(self): | ||
super(wxobsInstaller, self).__init__( | ||
version="0.7.2", | ||
version="0.7.3", | ||
name='wxobs', | ||
description='Generates a php report to show daily summaries', | ||
author="Glenn McKechnie", | ||
author_email="[email protected]", | ||
config={ | ||
'StdReport': { | ||
'wxobs': { | ||
'skin': 'wxobs', | ||
'HTML_ROOT': 'wxobs' | ||
}}}, | ||
'wxobs': { | ||
'skin': 'wxobs', | ||
'HTML_ROOT': 'wxobs', | ||
'Units': { | ||
'Groups': { | ||
'group_percent': 'percent', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
files=[('bin/user', | ||
['bin/user/wxobs.py']), | ||
('skins/wxobs', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
## in Latin-1, then you should replace the string "UTF-8" with "latin-1". If | ||
## you do this, you should also change the charset in 'Content-Type' as well. | ||
#encoding UTF-8 | ||
## Copyright 2017-2020 Glenn McKechnie | ||
## php inclusion to create wxobs.php.tmpl by [email protected] | ||
## available at https://github.com/glennmckechnie/weewx-wxobs | ||
## 06-09-2017 initial releas @0.01 | ||
|
@@ -34,9 +35,13 @@ | |
## index.php. Use dest_dir as switch. | ||
## 14-01-2020 Python3 tweaks. Work around missing /usr/share/php directory. Fix mode | ||
## on os.mkdir | ||
## 00-01-2020 Runs with python2.7 or python3 ie:- runs under weewx4 | ||
## 00-06-2020 Available as release 0.7.2 Add weewx4 style logging | ||
## 07-08-2020 Minor change to remedy missing labels when units other than defaults are used. | ||
## Available as release 0.7.3 | ||
## | ||
## | ||
## Version 0.7.1 | ||
## Version 0.7.3 | ||
|
||
<!-- wxobs version $wxobs_version --> | ||
<!-- This weewx extension is available at github: https://github.com/glennmckechnie/weewx-wxobs --> | ||
|