From b765b979edcee177022266fb1e3bf7d4a41abb78 Mon Sep 17 00:00:00 2001 From: breadthe Date: Thu, 2 Mar 2023 15:31:42 -1000 Subject: [PATCH] Bump to v1.2.0 --- .github/workflows/main.yml | 8 ++++---- CHANGELOG.md | 10 ++++++++++ README.md | 5 +++-- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 811687a..e7810e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,10 +16,10 @@ jobs: include: - os: macos-latest name: macos - # - os: ubuntu-latest - # name: linux - # - os: windows-latest - # name: windows + - os: ubuntu-latest + name: linux + - os: windows-latest + name: windows # runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.os }} env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4940270..65bd22d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.2.0 +### Features +* Tsunami warning indicator. +* Open event details on [earthquake.usgs.gov](https://earthquake.usgs.gov/). +* Windows & Linux builds (untested). + +## 1.1.0 +### Features +* Optional color-coded magnitude scale that can be toggled in Settings. + ## 1.0.0 ### Features * Display the app version in Settings. diff --git a/README.md b/README.md index a94bdc6..2238c26 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,10 @@ Download the latest release for your platform [here](https://github.com/breadthe - Desktop notifications for significant events (Mac only) - Configurable notification threshold. - Dark mode. -- Open location in geojson.io map. +- Open location in [geojson.io](geojson.io) map. +- Open event details on [earthquake.usgs.gov](https://earthquake.usgs.gov/). - Optional color coding of events according to severity. +- Tsunami warning indicator. ## Stack @@ -53,7 +55,6 @@ cargo tauri build All the [features](#features) intended for v1.0 are complete. The following are potential embellishments that may or may not happen. - [ ] Timestamp for last feed refresh. -- [ ] Display more event parameters from the feed (such as tsunami warning). [](#known_issues) diff --git a/package.json b/package.json index 3fd014d..3d46e66 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "seismic", "private": true, - "version": "1.1.0", + "version": "1.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index fa5f613..069e893 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2231,7 +2231,7 @@ dependencies = [ [[package]] name = "seismic" -version = "1.1.0" +version = "1.2.0" dependencies = [ "cocoa", "objc", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c46cad1..3dd05eb 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seismic" -version = "1.1.0" +version = "1.2.0" description = "USGS earthquake tracker (unofficial)" authors = ["breadthe"] license = "MIT"