From cb5954034a301cc46b90609997871c2dfeff2be6 Mon Sep 17 00:00:00 2001 From: Suyog Tandel Date: Fri, 9 Jan 2026 13:52:27 +0530 Subject: [PATCH] chore: rename app binary name and fix readme.md --- README.md | 3 +-- package.json | 2 +- src-tauri/Cargo.lock | 4 ++-- src-tauri/Cargo.toml | 6 +++--- src-tauri/src/main.rs | 2 +- src-tauri/tauri.conf.json | 6 +++--- src/routes/+page.svelte | 2 +- 7 files changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 50ca785..aff784f 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ **An open source commissioning tool for Pico FIDO security keys** -> [!NOTE] -> +> [!NOTE] > PicoForge is an independent, community-developed tool and is not affiliated with or endorsed by the official Pico FIDO project. This software does not share any code with the official closed-source Pico FIDO commissioning application. [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL%203.0-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) diff --git a/package.json b/package.json index 44d12ea..8251349 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "pico-forge", + "name": "picoforge", "version": "0.1.1", "description": "", "type": "module", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d311ec9..7db87ec 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2939,8 +2939,8 @@ dependencies = [ ] [[package]] -name = "pico-forge" -version = "0.1.0" +name = "picoforge" +version = "0.1.1" dependencies = [ "anyhow", "byteorder", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 68dc7f0..2a0f369 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "pico-forge" -version = "0.1.0" +name = "picoforge" +version = "0.1.1" description = "An open source commissioning tool for Pico FIDO security keys. Developed with Rust, Tauri, and Svelte." authors = ["Suyog Tandel"] license = "AGPL-3.0" @@ -12,7 +12,7 @@ edition = "2024" # The `_lib` suffix may seem redundant but it is necessary # to make the lib name unique and wouldn't conflict with the bin name. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 -name = "pico_forge_lib" +name = "picoforge_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 9cc8e41..4fa7551 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -2,5 +2,5 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] fn main() { - pico_forge_lib::run() + picoforge_lib::run() } diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 680dda2..b98b8b6 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,8 +1,8 @@ { "$schema": "https://schema.tauri.app/config/2", - "productName": "pico-forge", - "version": "0.1.0", - "identifier": "in.suyogtandel.pico-forge", + "productName": "picoforge", + "version": "0.1.1", + "identifier": "in.suyogtandel.picoforge", "build": { "beforeDevCommand": "deno task dev", "devUrl": "http://localhost:1420", diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 50a1c1d..753d1b0 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -737,7 +737,7 @@

PicoForge

- v0.1.0-Alpha + v0.1.1-Alpha

An open source commissioning tool for Pico FIDO security keys. Developed with Rust, Tauri, and Svelte.