diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index b8c9f5a..eb3ba0a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itsgoin-cli" -version = "0.5.0" +version = "0.5.1" edition = "2021" [[bin]] diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 43bac21..984b20b 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itsgoin-core" -version = "0.5.0" +version = "0.5.1" edition = "2021" [dependencies] diff --git a/crates/tauri-app/Cargo.toml b/crates/tauri-app/Cargo.toml index 974d870..521ba2f 100644 --- a/crates/tauri-app/Cargo.toml +++ b/crates/tauri-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itsgoin-desktop" -version = "0.5.0" +version = "0.5.1" edition = "2021" [lib] diff --git a/crates/tauri-app/tauri.conf.json b/crates/tauri-app/tauri.conf.json index 6b055ed..98e3f4a 100644 --- a/crates/tauri-app/tauri.conf.json +++ b/crates/tauri-app/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "itsgoin", - "version": "0.5.0", + "version": "0.5.1", "identifier": "com.itsgoin.app", "build": { "frontendDist": "../../frontend", diff --git a/website/design.html b/website/design.html index 27d164d..fe8f3f6 100644 --- a/website/design.html +++ b/website/design.html @@ -39,7 +39,7 @@
- v0.5.0-beta — 2026-04-05 + v0.5.1-beta — 2026-04-16

Design Document

This is the canonical technical reference for ItsGoin. It describes the vision, the architecture, and the current state of every subsystem — with full implementation detail. This document is versioned; each update records what changed.

diff --git a/website/download.html b/website/download.html index c5d8d5a..ae75948 100644 --- a/website/download.html +++ b/website/download.html @@ -41,21 +41,21 @@

Beta Release

-

Version 0.5.0-beta — April 5, 2026

+

Version 0.5.1-beta — April 16, 2026

Multi-identity, export/import, post merge with decryption key. May contain bugs — stable release recommended for daily use.

@@ -105,6 +105,18 @@

Changelog

+
v0.5.1-beta — April 16, 2026
+
    +
  • AppImage video fix — Bundled full GStreamer media framework. Video and audio now play correctly in AppImage builds (previously caused WebKit freeze due to missing plugins).
  • +
  • Import fix — Imported posts now create proper BlobHeaders, visibility intents, and pinned blobs. Imported posts are indistinguishable from locally created ones.
  • +
  • First-run chooser — New installs show “Start Fresh” or “Import an Identity” dialog instead of a blank profile setup.
  • +
  • File pickers — Native Browse buttons on export (folder picker) and import (ZIP file picker) dialogs.
  • +
  • Identity switch fix — Old node properly shut down before starting new one. Prevents zombie background tasks after multiple identity switches.
  • +
  • Export path fix — Relative output paths (e.g. “Downloads”) resolve to home directory instead of process working directory.
  • +
  • Lightbox fix — Clicking form elements inside wizards no longer closes the overlay.
  • +
  • Lock contention — Three remaining handlers (pull request, address request, session relay) converted to brief-lock pattern.
  • +
+
v0.5.0-beta — April 5, 2026
  • Multi-identity — Create, switch, and delete multiple identities on one device. Per-identity data directories with hot-swap switching (~3s). Legacy flat layout auto-migrates on first launch.