Skip to content

Commit

Permalink
Bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daveiano committed Aug 3, 2022
1 parent cc4740e commit 26d0218
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 21 deletions.
7 changes: 5 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,12 @@

For more info about installing and uninstalling extensions in weewx, see https://www.weewx.com/docs/utilities.htm#wee_extension_utility.

# Next
# 2.0.1

- Bugfix: Only working when generated into webservers root [GH-35]
- Bugfix: Pressure diagram with inHg unit. Updated rounding and yScale for pressure/barometer diagram in inHg. [GH-37]
- Forecast Min/Max - Updated forecast table typography. [GH-43]
- Bugfix: Time is Not Correct In All Data - Show stop instead of start date of interval, 1hr interval for daily table values. [GH-40]
- Forecast Min/Max - Updated forecast table typography. [GH-43]
- Bugfix: Rain Rate Graph in/h Intruding on Amount Values [GH-44]

# Next
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def loader():
class BasicInstaller(ExtensionInstaller):
def __init__(self):
super(BasicInstaller, self).__init__(
version="2.0.0",
version="2.0.1",
name="weewx-wdc",
description="Weather Data Center skin for weewx.",
author="David Baetge",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "weewx-wdc",
"version": "2.0.0",
"version": "2.0.1",
"description": "Weather Data Center skin for weewx.",
"author": "David Baetge <[email protected]>",
"license": "MIT",
Expand Down
12 changes: 4 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ If you like the look and feel of the skin please consider having a look into the

**Requires weewx >= 4.5**

**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v1.3.3/weewx-wdc-v1.3.3.zip.
**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v2.0.1/weewx-wdc-v2.0.1.zip.
Don't download the repository directly and don't use the GitHub generated zip and tar.gz archives that come alongside the release. Always use the zip archive named **weewx-wdc-vX.X.X.zip**

Background: The files in the src/ directory are the source files (TypeScript, SCSS). When creating a release, these source files get transformed and optimized, and the output location of these transformed files is the location which matches the location in the install.py script. The weewx-wdc-vX.X.X.zip should contain all these transformed files (like service-worker.js), but if you download the current state of the repo, these files are not included and this will throw multiple `FileNotFoundError` errors while installing. For manual building these files, see [Development](#development).
Expand All @@ -141,7 +141,7 @@ The default skin.conf looks like this:
```
# configuration file for the weewx-wdc skin
SKIN_NAME = Weather Data Center
SKIN_VERSION = 2.0.0
SKIN_VERSION = 2.0.1
[Extras]
# Show a link to the GitHub respository of this skin. Set to False to hide.
Expand Down Expand Up @@ -176,14 +176,14 @@ SKIN_VERSION = 2.0.0
show_obvis = 0
[DisplayOptions]
layout = 'classic'
layout = 'alternative'
climatological_days = rainDays, summerDays, hotDays, desertDays, tropicalNights, stormDays, iceDays, frostDays
table_tile_observations = outTemp, outHumidity, barometer, windSpeed, windGust, windDir, rain, rainRate, snowDepth, dewpoint, windchill, heatindex, UV, ET, radiation, appTemp, cloudbase, extraTemp1, extraHumid1, extraTemp2, extraHumid2, extraTemp3, extraHumid3, extraTemp4, extraHumid4, extraTemp5, extraHumid5, extraTemp6, extraHumid6, extraTemp7, extraHumid7, extraTemp8, extraHumid8
stat_tile_observations = outTemp, outHumidity, barometer, windSpeed, windGust, windDir, rain, rainRate, snowDepth, dewpoint, windchill, heatindex, UV, ET, radiation, appTemp, cloudbase, extraTemp1, extraHumid1, extraTemp2, extraHumid2, extraTemp3, extraHumid3, extraTemp4, extraHumid4, extraTemp5, extraHumid5, extraTemp6, extraHumid6, extraTemp7, extraHumid7, extraTemp8, extraHumid8
diagram_tile_observations = temp_min_max_avg, tempdew, outHumidity, barometer, windchill_heatindex, wind, windDir, windRose, rain, rainRate, snowDepth, UV, ET, radiation, cloudbase, appTemp
stat_tile_winddir_ordinal = True
diagram_tile_winddir_ordinal = True
windRose_colors = "rgb(243, 206, 201)", "#e7a4b6", "#cd7eaf", "#a262a9", "#6f4d96", "#3d3b72"
windRose_colors = "#f3cec9", "#e7a4b6", "#cd7eaf", "#a262a9", "#6f4d96", "#3d3b72"
[[diagrams]]
[[[combined_observations]]]
[[[[temp_min_max_avg]]]]
Expand Down Expand Up @@ -248,10 +248,6 @@ SKIN_VERSION = 2.0.0
curve = "step"
[[[rainRate]]]
curve = "linear"
[[[windSpeed]]]
curve = "linear"
[[[windGust]]]
curve = "linear"
[[[heights]]]
[[[[classic]]]]
Expand Down
4 changes: 2 additions & 2 deletions skins/weewx-wdc/about.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<p class="bx--type-body-long-02">
<b>Please note:</b> For installation, please use the generated
zip archive from a release, eg.
https://github.com/Daveiano/weewx-wdc/releases/download/v2.0.0/weewx-wdc-v2.0.0.zip.
https://github.com/Daveiano/weewx-wdc/releases/download/v2.0.1/weewx-wdc-v2.0.1.zip.
Don't download the repository directly and don't use the GitHub
generated zip and tar.gz archives that come alongside the
release. Always use the zip archive named
Expand Down Expand Up @@ -146,7 +146,7 @@
Unzip to that folder:
<!--prettier-ignore-->
<bx-code-snippet type="inline"
>unzip weewx-wdc-v2.0.0.zip -d /tmp/weewx-wdc/</bx-code-snippet
>unzip weewx-wdc-v2.0.1.zip -d /tmp/weewx-wdc/</bx-code-snippet
>
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion skins/weewx-wdc/skin.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# configuration file for the weewx-wdc skin
SKIN_NAME = Weather Data Center
SKIN_VERSION = 2.0.0
SKIN_VERSION = 2.0.1

[Extras]
# Show a link to the GitHub respository of this skin. Set to False to hide.
Expand Down
8 changes: 2 additions & 6 deletions test/test_install_report/src/skin.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# configuration file for the weewx-wdc skin
SKIN_NAME = Weather Data Center
SKIN_VERSION = 2.0.0
SKIN_VERSION = 2.0.1

[Extras]
# Show a link to the GitHub respository of this skin. Set to False to hide.
Expand Down Expand Up @@ -42,7 +42,7 @@ SKIN_VERSION = 2.0.0
diagram_tile_observations = temp_min_max_avg, tempdew, outHumidity, barometer, windchill_heatindex, wind, windDir, windRose, rain, rainRate, snowDepth, UV, ET, radiation, cloudbase, appTemp
stat_tile_winddir_ordinal = True
diagram_tile_winddir_ordinal = True
windRose_colors = "rgb(243, 206, 201)", "#e7a4b6", "#cd7eaf", "#a262a9", "#6f4d96", "#3d3b72"
windRose_colors = "#f3cec9", "#e7a4b6", "#cd7eaf", "#a262a9", "#6f4d96", "#3d3b72"
[[diagrams]]
[[[combined_observations]]]
[[[[temp_min_max_avg]]]]
Expand Down Expand Up @@ -107,10 +107,6 @@ SKIN_VERSION = 2.0.0
curve = "step"
[[[rainRate]]]
curve = "linear"
[[[windSpeed]]]
curve = "linear"
[[[windGust]]]
curve = "linear"

[[[heights]]]
[[[[classic]]]]
Expand Down

0 comments on commit 26d0218

Please sign in to comment.