Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
cfe916ec72 | |||
01b9644243 | |||
![]() |
52b83d05bb | ||
![]() |
a09d50af2c | ||
![]() |
c92d9aae0d |
7 changed files with 26 additions and 12 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -28,3 +28,4 @@ coverage
|
|||
*.sw?
|
||||
|
||||
*.tsbuildinfo
|
||||
*~
|
||||
|
|
|
@ -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.
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "myweather",
|
||||
"version": "0.1.9",
|
||||
"version": "0.1.11",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -28,12 +28,13 @@ import appsettings from '../appsettings'
|
|||
</p>
|
||||
|
||||
<p class="block">
|
||||
Source code is not currently browseable online but you can get it with:
|
||||
</p>
|
||||
|
||||
<p class="block is-family-monospace"
|
||||
style="padding-left: 4rem;">
|
||||
git clone https://git.edbob.org/readonly/myweather.git
|
||||
Source code is available at
|
||||
<a href="https://forgejo.wuttaproject.org/lance/myweather" target="_blank">
|
||||
<span class="icon-text">
|
||||
<o-icon icon="external-link" />
|
||||
<span>https://forgejo.wuttaproject.org/lance/myweather</span>
|
||||
</span>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p class="block">
|
||||
|
|
|
@ -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}`
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
|
2
tasks.py
2
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} *')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue