mirror of
https://github.com/weewx/weewx.git
synced 2026-04-22 10:37:06 -04:00
Updated Change log.
Corrected package error in setup.py (for daemon.py). Version 1.14.0
This commit is contained in:
25
MANIFEST
25
MANIFEST
@@ -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
|
||||
|
||||
@@ -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.'
|
||||
|
||||
@@ -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!
|
||||
|
||||
|
||||
1
setup.py
1
setup.py
@@ -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',
|
||||
|
||||
@@ -29,7 +29,7 @@ debug = 0
|
||||
socket_timeout = 20
|
||||
|
||||
# Current version
|
||||
version = 1.14.0b3
|
||||
version = 1.14.0
|
||||
|
||||
############################################################################################
|
||||
|
||||
|
||||
Reference in New Issue
Block a user