From 71ad72d4daeabe04972f25ebaca8eedbad3a04a6 Mon Sep 17 00:00:00 2001 From: Suyog Tandel Date: Tue, 28 Jul 2026 16:52:23 +0530 Subject: [PATCH] chore: bump app ver to 0.8 --- Cargo.lock | 2 +- Cargo.toml | 3 +-- README.md | 2 +- data/in.suyogtandel.picoforge.metainfo.xml | 17 +++++++++++++++++ src/ui/screens/about/view.rs | 2 +- 5 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ca05b9..365a0cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4256,7 +4256,7 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "picoforge" -version = "0.7.1" +version = "0.8.0" dependencies = [ "aes 0.9.1", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 6863c84..cf694d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "picoforge" -version = "0.7.1" +version = "0.8.0" description = "An open source commissioning tool for pico-fido and rs-key security keys. Developed with Rust and GPUI." authors = ["Suyog Tandel", "PicoForge Contributers"] license = "AGPL-3.0" @@ -86,4 +86,3 @@ generate_desktop_entry = false [package.metadata.packager.appimage] excluded_libraries = ["libpcsclite*.so*"] files = { "data/in.suyogtandel.picoforge.desktop" = "usr/share/applications/in.suyogtandel.picoforge.desktop", "static/appIcons/in.suyogtandel.picoforge-symbolic.svg" = "usr/share/icons/hicolor/symbolic/apps/in.suyogtandel.picoforge-symbolic.svg", "static/appIcons/in.suyogtandel.picoforge.svg" = "usr/share/icons/hicolor/scalable/apps/in.suyogtandel.picoforge.svg" } - diff --git a/README.md b/README.md index c5b94cf..7d6f1f3 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ > **RP2350 (Pico2) Notice:** If you are using an RP2350-based device (Pico2, etc.), please switch to [RS-Key](https://github.com/TheMaxMur/RS-Key) firmware instead of pico-fido for better support while using picoforge. > > **Supported Firmwares:** -> - **[RS-Key](https://github.com/TheMaxMur/RS-Key)**: v0.3.X +> - **[RS-Key](https://github.com/TheMaxMur/RS-Key)**: v0.3.X, 0.4.X > - **[pico-fido](https://github.com/polhenarejos/pico-fido)**: v7.0, v7.2, v7.4, v7.6 > - **[LibreKeys One](https://github.com/librekeys/pico-fido-firmwares/releases)**: v7.4.2 > diff --git a/data/in.suyogtandel.picoforge.metainfo.xml b/data/in.suyogtandel.picoforge.metainfo.xml index 47356d5..6964d49 100644 --- a/data/in.suyogtandel.picoforge.metainfo.xml +++ b/data/in.suyogtandel.picoforge.metainfo.xml @@ -59,6 +59,23 @@ + + https://github.com/librekeys/picoforge/releases/tag/v0.8.0 + +

Release 0.8.0

+
    +
  • Full RS-Key firmware support with CCID applet management: OATH (accounts/2FA TOTP), PIV certificates, OpenPGP card, and OTP slot programming
  • +
  • FIDO seed backup — export RS-Key recovery seed as a BIP39 mnemonic phrase
  • +
  • Device offboarding and factory reset screen
  • +
  • Device lock/unlock screen for managing PIN and device access
  • +
  • Audit log viewer to inspect security events stored on the device
  • +
  • Attestation certificate viewer for FIDO attestation certificates
  • +
  • Native CCID (PC/SC) transport layer with APDU/TLV codec for smart card applets
  • +
  • Containerized AppImage builds with auto-update support
  • +
  • Reorganized sidebar with entries for all new management screens
  • +
+
+
https://github.com/librekeys/picoforge/releases/tag/v0.7.1 diff --git a/src/ui/screens/about/view.rs b/src/ui/screens/about/view.rs index 75b009d..d476988 100644 --- a/src/ui/screens/about/view.rs +++ b/src/ui/screens/about/view.rs @@ -36,7 +36,7 @@ impl Render for AboutViewModel { .text_color(theme.foreground) .child("PicoForge"), ) - .child(Tag::new("v0.7.1")) + .child(Tag::new("v0.8.0")) .child( div() .text_color(theme.muted_foreground)