Skip to content

Commit 9846b91

Browse files
committed
Bump version to 3.1.1
1 parent eb2f372 commit 9846b91

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,12 +627,12 @@ Line 567:
627627
+ copy_once = dist/main.js, dist/main.css, plotly-custom-build.min.js, dist/live-updates.js, favicon.ico, manifest.json, icon-192x192.png, icon-256x256.png, icon-384x384.png, icon-512x512.png, service-worker.js, offline.html, dist/assets
628628
```
629629

630-
# Next
630+
# 3.1.1
631631

632632
- Bugfix: Visual padding bug in single radar tile on front page
633633
- Bugfix: Not working tabs for radar/webcams when used with enabled forecast extension
634634
- Bugfix: (MQTT) Handle observations with underscores GH-139
635-
- Allow user to set complete "Forecast & Radar" heading GH-141 **Note** `radar_heading` is replaced by `forecast_radar_heading`
635+
- Allow user to set complete "Forecast & Radar" heading GH-141, **Note:** `radar_heading` is replaced by `forecast_radar_heading`
636636

637637
## Changes made to skin.conf since 3.1.0
638638

@@ -643,3 +643,7 @@ Line 27:
643643
+# The Foreacst/Radar/Webcam section heading.
644644
+#forecast_radar_heading = "Forecast & Recent radar"
645645
```
646+
647+
# Next
648+
649+
## Changes made to skin.conf since 3.1.1

install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def loader():
1111
class BasicInstaller(ExtensionInstaller):
1212
def __init__(self):
1313
super(BasicInstaller, self).__init__(
14-
version="3.1.0",
14+
version="3.1.1",
1515
name="weewx-wdc",
1616
description="Weather Data Center skin for WeeWX.",
1717
author="David Baetge",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "weewx-wdc",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Weather Data Center skin for weewx.",
55
"author": "David Baetge <david.baetge@gmail.com>",
66
"license": "MIT",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If you like the look and feel of the skin please consider having a look at the o
7878
1. Download the [latest version](https://github.com/Daveiano/weewx-wdc/releases)
7979

8080
```
81-
wget -O "/tmp/weewx-wdc.zip" https://github.com/Daveiano/weewx-wdc/releases/download/v3.1.0/weewx-wdc-v3.1.0.zip
81+
wget -O "/tmp/weewx-wdc.zip" https://github.com/Daveiano/weewx-wdc/releases/download/v3.1.1/weewx-wdc-v3.1.1.zip
8282
```
8383

8484
2. Create a new folder and unzip to that folder
@@ -96,7 +96,7 @@ unzip /tmp/weewx-wdc.zip -d /tmp/weewx-wdc/
9696

9797
For help, please have a look at the [official weewx documentation](https://weewx.com/docs/utilities.htm#wee_extension_utility).
9898

99-
**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v3.1.0/weewx-wdc-v3.1.0.zip.
99+
**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v3.1.1/weewx-wdc-v3.1.1.zip.
100100
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**
101101

102102
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 or main.css), 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 of these files, see [Development](#development).

skins/weewx-wdc/skin.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# configuration file for the weewx-wdc skin
22
SKIN_NAME = Weather Data Center
3-
SKIN_VERSION = 3.1.0
3+
SKIN_VERSION = 3.1.1
44

55
[ObservationBindings]
66
[[custom_obs_1]]

0 commit comments

Comments
 (0)