diff --git a/MANIFEST b/MANIFEST index 151c541a..8369320a 100644 --- a/MANIFEST +++ b/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 diff --git a/bin/weewx/__init__.py b/bin/weewx/__init__.py index cc82d0e4..601e04f4 100644 --- a/bin/weewx/__init__.py +++ b/bin/weewx/__init__.py @@ -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.' diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 85ae0c91..6c68b514 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -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! diff --git a/setup.py b/setup.py index d390d681..72d1bdfa 100755 --- a/setup.py +++ b/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', diff --git a/weewx.conf b/weewx.conf index 5be17010..e8699b0b 100644 --- a/weewx.conf +++ b/weewx.conf @@ -29,7 +29,7 @@ debug = 0 socket_timeout = 20 # Current version -version = 1.14.0b3 +version = 1.14.0 ############################################################################################