Skip to content

Commit c30805b

Browse files
committed
v0.2.0 release
1 parent ffccc14 commit c30805b

File tree

7 files changed

+25
-15
lines changed

7 files changed

+25
-15
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
with:
4444
tagName: v__VERSION__ # tauri-action replaces \_\_VERSION\_\_ with the app version
45-
releaseName: 'Seismic v__VERSION__'
45+
releaseName: 'v__VERSION__'
4646
releaseBody: 'See the assets to download this version and install.'
4747
releaseDraft: true
4848
prerelease: false

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3+
## 0.2.0
4+
## Features
5+
* Fetch the feed on startup.
6+
37
## 0.1.0
48
### Initial Release 🚀
5-
* system tray icon
6-
* click the logo to fetch earthquake events
9+
* System tray icon.
10+
* Click the logo to fetch earthquake events.

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,25 @@ cargo tauri dev
3131
cargo tauri build
3232
```
3333

34+
[](#wishlist)
35+
3436
## Wishlist
3537

3638
Note that I may not implement all of these.
3739

38-
- Fetch the feed on startup.
39-
- Fetch the feed periodically.
40-
- Configurable fetch frequency.
41-
- Desktop notifications for significant events.
42-
- Configurable notification threshold.
43-
- Dark mode.
44-
- Display more event parameters from the feed (such as tsunami warning).
40+
- <label><input type="checkbox" checked />Fetch the feed on startup.</label>
41+
- <label><input type="checkbox" />Fetch the feed periodically.</label>
42+
- <label><input type="checkbox" />Configurable fetch frequency.</label>
43+
- <label><input type="checkbox" />Desktop notifications for significant events.</label>
44+
- <label><input type="checkbox" />Configurable notification threshold.</label>
45+
- <label><input type="checkbox" />Dark mode.</label>
46+
- <label><input type="checkbox" />Display more event parameters from the feed (such as tsunami warning).</label>
47+
48+
[](#known_issues)
4549

4650
## Known issues
4751

52+
- Currently the GitHub action fails to build with an incomprehensible error.
4853
- I have only tested this app on Mac. While I can make GitHub Actions generate builds for Windows and Linux, I can't guarantee they will work properly, especially the taskbar stuff. Feel free to contribute to those builds.
4954

5055
## Contributing
@@ -53,9 +58,10 @@ Contributing is welcome, but I keep in mind that I might be slow to respond.
5358

5459
Contribution priority:
5560

61+
- [known issues](#known_issues)
5662
- bug fixes
5763
- platform-specific builds (make it work great on Windows and Linux!)
58-
- features on the Wishlist
64+
- features on the [wishlist](#wishlist)
5965
- everything else (including new ideas)
6066

6167
## License

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "seismic",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "seismic"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "USGS earthquake tracker"
55
authors = ["breadthe"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"package": {
99
"productName": "seismic",
10-
"version": "0.1.0"
10+
"version": "0.2.0"
1111
},
1212
"tauri": {
1313
"allowlist": {

0 commit comments

Comments
 (0)