Compare commits

..

No commits in common. "master" and "v0.1.9" have entirely different histories.

7 changed files with 12 additions and 26 deletions

1
.gitignore vendored
View file

@ -28,4 +28,3 @@ coverage
*.sw? *.sw?
*.tsbuildinfo *.tsbuildinfo
*~

View file

@ -7,14 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## 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 ## 0.1.9 - 2024-06-09
### Changed ### Changed
- Warning notification should not butt up against forecast panel. - Warning notification should not butt up against forecast panel.

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "myweather", "name": "myweather",
"version": "0.1.11", "version": "0.1.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "myweather", "name": "myweather",
"version": "0.1.11", "version": "0.1.9",
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2", "@fortawesome/free-solid-svg-icons": "^6.5.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "myweather", "name": "myweather",
"version": "0.1.11", "version": "0.1.9",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -28,13 +28,12 @@ import appsettings from '../appsettings'
</p> </p>
<p class="block"> <p class="block">
Source code is available at Source code is not currently browseable online but you can get it with:
<a href="https://forgejo.wuttaproject.org/lance/myweather" target="_blank"> </p>
<span class="icon-text">
<o-icon icon="external-link" /> <p class="block is-family-monospace"
<span>https://forgejo.wuttaproject.org/lance/myweather</span> style="padding-left: 4rem;">
</span> git clone https://git.edbob.org/readonly/myweather.git
</a>
</p> </p>
<p class="block"> <p class="block">

View file

@ -26,16 +26,12 @@ const panelHeadingTitle = computed(() => {
const radarLatestURL = computed(() => { const radarLatestURL = computed(() => {
if (weatherStore.weather) { return `${weatherStore.radarLatestURL}?t=${timestamp.value}`
return `${weatherStore.radarLatestURL}?t=${timestamp.value}`
}
}) })
const radarLoopURL = computed(() => { const radarLoopURL = computed(() => {
if (weatherStore.weather) { return `${weatherStore.radarLoopURL}?t=${timestamp.value}`
return `${weatherStore.radarLoopURL}?t=${timestamp.value}`
}
}) })

View file

@ -24,7 +24,7 @@ def release(c):
version = js['version'] version = js['version']
# build the app, create zip archive # build the app, create zip archive
c.run("bash -lc 'nvm use lts/iron; npm run build'") c.run('npm run build')
os.chdir('dist') os.chdir('dist')
filename = f'myweather-{version}.zip' filename = f'myweather-{version}.zip'
c.run(f'zip --recurse-paths {filename} *') c.run(f'zip --recurse-paths {filename} *')