From d48ea94bd90df735c4146c02b06c4a845f3f793f Mon Sep 17 00:00:00 2001 From: ww8l Date: Tue, 25 Aug 2026 15:50:24 -0600 Subject: [PATCH] Release 26.8.25 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All four version files: package.json, Cargo.toml, tauri.conf.json and our own entry in Cargo.lock. The frontend reads it through vite's `__APP_VERSION__` define, so the sidebar footer follows automatically. Shipping since v26.8.22 (2026-08-22): * Import any CSV by mapping its columns (#115). A CHIRP export, a club spreadsheet, another programmer's dump — anything with channels in it can now be tied to channel fields in a dialog. Also closes a silent failure: a CSV that merely had a `Frequency` column used to be handed to the RepeaterBook parser and imported nameless, toneless channels. * Find microSD cards on Linux, through the mount table (#106). * The sidebar wears the app's own icon instead of a generic glyph. * Dependency majors: TypeScript 7, Vite 8, plugin-react 6, md-5 0.11, reqwest 0.13, plus the grouped npm and cargo updates. Not in this release: the Kenwood TM-D710 (#113/PR #114) is still on its branch, and still owes four readings off the radio's screen. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01B5mjGBPZBanM8VnpmuECUh --- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 0eefb17..dc53c48 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ww8l-codeplug-magic", "private": true, - "version": "26.8.22", + "version": "26.8.25", "license": "GPL-3.0-only", "repository": { "type": "git", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index fcdb0ef..43ffbe0 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -5894,7 +5894,7 @@ dependencies = [ [[package]] name = "ww8l-codeplug-magic" -version = "26.8.22" +version = "26.8.25" dependencies = [ "chrono", "csv", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 9fe743d..ca26a74 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ww8l-codeplug-magic" -version = "26.8.22" +version = "26.8.25" description = "WW8L Codeplug Magic - master codeplug database for amateur radio operators" authors = ["WW8L"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index bde8b29..35d95e1 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "WW8L Codeplug Magic", - "version": "26.8.22", + "version": "26.8.25", "identifier": "com.ww8l.codeplugmagic", "build": { "beforeDevCommand": "npm run dev",