v0.5.1-beta: version bump, changelog, download page update
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
cba30a1bb3
commit
c40e093d01
6 changed files with 24 additions and 12 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "itsgoin-cli"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
edition = "2021"
|
||||
|
||||
[[bin]]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "itsgoin-core"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "itsgoin-desktop"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"productName": "itsgoin",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"identifier": "com.itsgoin.app",
|
||||
"build": {
|
||||
"frontendDist": "../../frontend",
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
<div class="container wide">
|
||||
<section>
|
||||
<span class="version-badge">v0.5.0-beta — 2026-04-05</span>
|
||||
<span class="version-badge">v0.5.1-beta — 2026-04-16</span>
|
||||
<h1 style="font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem;">Design Document</h1>
|
||||
<p>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.</p>
|
||||
<div class="card" style="margin-top: 1rem;">
|
||||
|
|
|
|||
|
|
@ -41,21 +41,21 @@
|
|||
</div>
|
||||
|
||||
<h2 style="margin-top: 2rem;">Beta Release</h2>
|
||||
<p style="color: var(--text-muted); font-size: 0.85rem;">Version 0.5.0-beta — April 5, 2026</p>
|
||||
<p style="color: var(--text-muted); font-size: 0.85rem;">Version 0.5.1-beta — April 16, 2026</p>
|
||||
<p style="color: var(--text-muted); font-size: 0.85rem;">Multi-identity, export/import, post merge with decryption key. May contain bugs — stable release recommended for daily use.</p>
|
||||
|
||||
<div class="downloads">
|
||||
<a href="itsgoin-0.5.0-beta.apk" class="download-btn btn-android" style="border-color: var(--accent);">
|
||||
<a href="itsgoin-0.5.1-beta.apk" class="download-btn btn-android" style="border-color: var(--accent);">
|
||||
Android APK
|
||||
<span class="sub">v0.5.0-beta</span>
|
||||
<span class="sub">v0.5.1-beta</span>
|
||||
</a>
|
||||
<a href="itsgoin_0.5.0-beta_amd64.AppImage" class="download-btn btn-linux" style="border-color: var(--accent);">
|
||||
<a href="itsgoin_0.5.1-beta_amd64.AppImage" class="download-btn btn-linux" style="border-color: var(--accent);">
|
||||
Linux AppImage
|
||||
<span class="sub">v0.5.0-beta</span>
|
||||
<span class="sub">v0.5.1-beta</span>
|
||||
</a>
|
||||
<a href="itsgoin-cli-0.5.0-beta-linux-amd64" class="download-btn btn-linux" style="border-color: var(--accent);">
|
||||
<a href="itsgoin-cli-0.5.1-beta-linux-amd64" class="download-btn btn-linux" style="border-color: var(--accent);">
|
||||
Linux CLI / Anchor
|
||||
<span class="sub">v0.5.0-beta</span>
|
||||
<span class="sub">v0.5.1-beta</span>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -105,6 +105,18 @@
|
|||
<section>
|
||||
<h2>Changelog</h2>
|
||||
<div class="changelog">
|
||||
<div class="changelog-date">v0.5.1-beta — April 16, 2026</div>
|
||||
<ul>
|
||||
<li><strong>AppImage video fix</strong> — Bundled full GStreamer media framework. Video and audio now play correctly in AppImage builds (previously caused WebKit freeze due to missing plugins).</li>
|
||||
<li><strong>Import fix</strong> — Imported posts now create proper BlobHeaders, visibility intents, and pinned blobs. Imported posts are indistinguishable from locally created ones.</li>
|
||||
<li><strong>First-run chooser</strong> — New installs show “Start Fresh” or “Import an Identity” dialog instead of a blank profile setup.</li>
|
||||
<li><strong>File pickers</strong> — Native Browse buttons on export (folder picker) and import (ZIP file picker) dialogs.</li>
|
||||
<li><strong>Identity switch fix</strong> — Old node properly shut down before starting new one. Prevents zombie background tasks after multiple identity switches.</li>
|
||||
<li><strong>Export path fix</strong> — Relative output paths (e.g. “Downloads”) resolve to home directory instead of process working directory.</li>
|
||||
<li><strong>Lightbox fix</strong> — Clicking form elements inside wizards no longer closes the overlay.</li>
|
||||
<li><strong>Lock contention</strong> — Three remaining handlers (pull request, address request, session relay) converted to brief-lock pattern.</li>
|
||||
</ul>
|
||||
|
||||
<div class="changelog-date">v0.5.0-beta — April 5, 2026</div>
|
||||
<ul>
|
||||
<li><strong>Multi-identity</strong> — 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.</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue