Skip to content

Commit

Permalink
Bump version to 1.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daveiano committed Jul 8, 2022
1 parent c220034 commit 685b070
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@
- Added thunderstorm logic and icon to forecast table
- Fullscreen display for diagrams [GH-6]

# Next
# 1.3.1

- Typo fixes for de
- Bugfix: Month navigation only visible for current year when inside a month archive page [GH-24]
- Bugfix: Encoding issues in Data tables [GH-26]

# 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="1.3.0",
version="1.3.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": "1.3.0",
"version": "1.3.1",
"description": "Weather Data Center skin for weewx.",
"author": "David Baetge <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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.0/weewx-wdc-v1.3.0.zip.
**Please note:** For installation, please use the generated zip archive from a release, eg. https://github.com/Daveiano/weewx-wdc/releases/download/v1.3.1/weewx-wdc-v1.3.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.
Expand All @@ -112,7 +112,7 @@ The default skin.conf looks like this:
```
# configuration file for the weewx-wdc skin
SKIN_NAME = Weather Data Center
SKIN_VERSION = 1.3.0
SKIN_VERSION = 1.3.1
[Extras]
# Show a link to the GitHub respository of this skin. Set to False to hide.
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 = 1.3.0
SKIN_VERSION = 1.3.1

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

[Extras]
# Show a link to the GitHub respository of this skin. Set to False to hide.
github_link = True

# This radar image would be available as $Extras.radar_img
radar_img = https://www.dwd.de/DWD/wetter/radar/radfilm_sac_akt.gif
#radar_img = https://www.dwd.de/DWD/wetter/radar/radfilm_sac_akt.gif
# This URL will be used as the image hyperlink:
radar_url = https://www.dwd.de/DE/leistungen/radarbild_film/radarbild_film.html
#radar_url = https://www.dwd.de/DE/leistungen/radarbild_film/radarbild_film.html

[[forecast_table_settings]]
source = WU
Expand Down Expand Up @@ -59,7 +59,7 @@ SKIN_VERSION = 1.3.0

[CheetahGenerator]
encoding = html_entities
search_list_extensions = user.general_util.GeneralUtil, user.stats_util.StatsUtil, user.diagram_util.DiagramUtil, user.celestial_util.CelestialUtil, user.archive_util.ArchiveUtil, user.table_util.TableUtil, user.forecast_util.ForecastUtil, user.forecast.ForecastVariables
search_list_extensions = user.general_util.GeneralUtil, user.stats_util.StatsUtil, user.diagram_util.DiagramUtil, user.celestial_util.CelestialUtil, user.archive_util.ArchiveUtil, user.table_util.TableUtil, user.forecast_util.ForecastUtil

[[SummaryByMonth]]
# Reports that summarize "by month"
Expand Down Expand Up @@ -95,7 +95,7 @@ SKIN_VERSION = 1.3.0

[[[year]]]
template = year.html.tmpl
#stale_age = 3600 # Every hour
stale_age = 3600 # Every hour

[[[statistics]]]
template = statistics.html.tmpl
Expand Down

0 comments on commit 685b070

Please sign in to comment.