diff --git a/.gitignore b/.gitignore index 8ee54e8..9f860c6 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ coverage *.sw? *.tsbuildinfo +*~ diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b69173..db28db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.1.11 - 2025-10-06 +### Changed +- update source code info for about page + +## 0.1.10 - 2024-06-09 +### Changed +- Fix URL bug when refreshing weather radar. + ## 0.1.9 - 2024-06-09 ### Changed - Warning notification should not butt up against forecast panel. diff --git a/package-lock.json b/package-lock.json index f422668..8dc30e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "myweather", - "version": "0.1.9", + "version": "0.1.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "myweather", - "version": "0.1.9", + "version": "0.1.11", "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/free-solid-svg-icons": "^6.5.2", diff --git a/package.json b/package.json index 599f21b..46a5d15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "myweather", - "version": "0.1.9", + "version": "0.1.11", "private": true, "type": "module", "scripts": { diff --git a/src/views/AboutView.vue b/src/views/AboutView.vue index 277e41c..c1deb33 100644 --- a/src/views/AboutView.vue +++ b/src/views/AboutView.vue @@ -28,12 +28,13 @@ import appsettings from '../appsettings'
- Source code is not currently browseable online but you can get it with: -
- -
- git clone https://git.edbob.org/readonly/myweather.git
+ Source code is available at
+
+
+
diff --git a/src/views/WeatherView.vue b/src/views/WeatherView.vue index a76eb96..54f5423 100644 --- a/src/views/WeatherView.vue +++ b/src/views/WeatherView.vue @@ -26,12 +26,16 @@ const panelHeadingTitle = computed(() => { const radarLatestURL = computed(() => { - return `${weatherStore.radarLatestURL}?t=${timestamp.value}` + if (weatherStore.weather) { + return `${weatherStore.radarLatestURL}?t=${timestamp.value}` + } }) const radarLoopURL = computed(() => { - return `${weatherStore.radarLoopURL}?t=${timestamp.value}` + if (weatherStore.weather) { + return `${weatherStore.radarLoopURL}?t=${timestamp.value}` + } }) diff --git a/tasks.py b/tasks.py index a33596f..d6b57ab 100644 --- a/tasks.py +++ b/tasks.py @@ -24,7 +24,7 @@ def release(c): version = js['version'] # build the app, create zip archive - c.run('npm run build') + c.run("bash -lc 'nvm use lts/iron; npm run build'") os.chdir('dist') filename = f'myweather-{version}.zip' c.run(f'zip --recurse-paths {filename} *')