Updated Change log.

Corrected package error in setup.py (for daemon.py).
Version 1.14.0
This commit is contained in:
Tom Keffer
2012-06-18 23:42:24 +00:00
parent 64373a147b
commit ced3934f05
5 changed files with 23 additions and 19 deletions

View File

@@ -5,6 +5,7 @@ setup.cfg
setup.py
weewx.conf
bin/configure.py
bin/daemon.py
bin/runreports.py
bin/weewxd.py
bin/examples/__init__.py
@@ -70,18 +71,18 @@ skins/Standard/backgrounds/drops.gif
skins/Standard/backgrounds/flower.jpg
skins/Standard/backgrounds/leaf.jpg
skins/Standard/backgrounds/night.gif
skins/Standard/mobile/barometer.html.tmpl
skins/Standard/mobile/custom.js
skins/Standard/mobile/humidity.html.tmpl
skins/Standard/mobile/index.html.tmpl
skins/Standard/mobile/radar.html.tmpl
skins/Standard/mobile/rain.html.tmpl
skins/Standard/mobile/temp_outside.html.tmpl
skins/Standard/mobile/wind.html.tmpl
skins/Standard/mobile/icons/icon_ipad_x1.png
skins/Standard/mobile/icons/icon_ipad_x2.png
skins/Standard/mobile/icons/icon_iphone_x1.png
skins/Standard/mobile/icons/icon_iphone_x2.png
skins/Standard/smartphone/barometer.html.tmpl
skins/Standard/smartphone/custom.js
skins/Standard/smartphone/humidity.html.tmpl
skins/Standard/smartphone/index.html.tmpl
skins/Standard/smartphone/radar.html.tmpl
skins/Standard/smartphone/rain.html.tmpl
skins/Standard/smartphone/temp_outside.html.tmpl
skins/Standard/smartphone/wind.html.tmpl
skins/Standard/smartphone/icons/icon_ipad_x1.png
skins/Standard/smartphone/icons/icon_ipad_x2.png
skins/Standard/smartphone/icons/icon_iphone_x1.png
skins/Standard/smartphone/icons/icon_iphone_x2.png
start_scripts/BSD/weewx
start_scripts/Debian/weewx
start_scripts/SuSE/weewx

View File

@@ -12,7 +12,7 @@
"""
import time
__version__="1.14.0b3"
__version__="1.14.0"
# Holds the program launch time in unix epoch seconds:
# Useful for calculating 'uptime.'

View File

@@ -4,15 +4,17 @@ CHANGE HISTORY
For complete documentation, see http://www.weewx.com/docs
1.14.0 06/15/12
1.14.0 06/18/12
Added smartphone formatted mobile webpage, contributed by user Torbjörn Einarsson.
It is generated by default. If you have custom templates, see the upgrade guide
on how to have these webpages generated. Thanks, Tobbe!
If you are doing a fresh install, then these pages will be generated automatically.
If you are doing an upgrade, then see the upgrade guide on how to have these webpages
generated. Thanks, Tobbe!
Three changes suggested by user Charlie Spirakis:
o Changed umask in daemon.py to 0022.
o Allow location of process ID file to be specified on the command line.
o Changed umask in daemon.py to 0022;
o Allow location of process ID file to be specified on the command line
of weewx;
o Start script allows daemon to be run as a specific user.
Thanks, Charlie!

View File

@@ -352,6 +352,7 @@ setup(name='weewx',
url='http://www.weewx.com',
package_dir = {'' : 'bin'},
packages = ['weewx', 'weeplot', 'weeutil', 'examples', 'user'],
py_modules = ['daemon'],
scripts = ['bin/configure.py', 'bin/weewxd.py', 'bin/runreports.py'],
data_files = [('', ['LICENSE.txt', 'README', 'weewx.conf']),
('docs', ['docs/CHANGES.txt', 'docs/customizing.htm',

View File

@@ -29,7 +29,7 @@ debug = 0
socket_timeout = 20
# Current version
version = 1.14.0b3
version = 1.14.0
############################################################################################