Skip to content

Commit

Permalink
Bump version to v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daveiano committed Mar 12, 2023
1 parent 240d6d4 commit 5e8f6e4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
9 changes: 6 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -547,12 +547,15 @@ This update contains like a rewrite of the skin.conf file, a complete diff can b

https://github.com/Daveiano/weewx-wdc/compare/v2.3.3...7da0c421941c8e61e5aaf2b6d236ae7cf231009b#diff-ba225fb627dcbf577d0d1fde0f18d93e8e2cf2097c37086cd28ef23e8e7bd820

# Next
# 3.0.1

- Bugfix: Some built-in fields require adding an entry to [[Icons]] GH-124
- Added icon for no2, pm1_0, pm2_5 and pm10_0
- Bugfix: Unexpected IndexError in get_unit_label GH-123
- Bugfix: Resolved a caching issue for radar images (service worker was caching too much here)
- Bugfix: Resolved encoding issues with Python 2. GH-122

## Changes made to skin.conf since 3.0.0
## No changes made to skin.conf since 3.0.0

# Next

## Changes made to skin.conf since 3.0.1
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="3.0.0",
version="3.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": "3.0.0",
"version": "3.0.1",
"description": "Weather Data Center skin for weewx.",
"author": "David Baetge <[email protected]>",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ If you like the look and feel of the skin please consider having a look at the o

## Installation

**Requires WeeWX >= 4.9**
**Requires WeeWX >= 4.9 and Python 3**

1. Download the [latest version](https://github.com/Daveiano/weewx-wdc/releases)

```
wget -O "/tmp/weewx-wdc.zip" https://github.com/Daveiano/weewx-wdc/releases/download/v3.0.0/weewx-wdc-v3.0.0.zip
wget -O "/tmp/weewx-wdc.zip" https://github.com/Daveiano/weewx-wdc/releases/download/v3.0.1/weewx-wdc-v3.0.1.zip
```

2. Create a new folder and unzip to that folder
Expand All @@ -94,7 +94,7 @@ unzip /tmp/weewx-wdc.zip -d /tmp/weewx-wdc/

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

**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v3.0.0/weewx-wdc-v3.0.0.zip.
**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v3.0.1/weewx-wdc-v3.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 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).
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 = 3.0.0
SKIN_VERSION = 3.0.1

[ObservationBindings]
[[custom_obs_1]]
Expand Down

0 comments on commit 5e8f6e4

Please sign in to comment.