Skip to content

Commit 659264f

Browse files
Stephan Smolaclaude
andcommitted
release: v0.2.0
Bump version to 0.2.0 and add CHANGELOG. Highlights: real app icon, Windows/Linux frameless chrome, a batch of Windows fixes, report-issue image paste, and single-release-per-tag CI. Co-Authored-By: Claude Opus 4.8 <[email protected]>
1 parent 3aabdb6 commit 659264f

5 files changed

Lines changed: 46 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Changelog
2+
3+
All notable changes to gello are documented here. The format follows
4+
[Keep a Changelog](https://keepachangelog.com/), and this project adheres to
5+
[Semantic Versioning](https://semver.org/).
6+
7+
## [0.2.0] - 2026-07-17
8+
9+
Windows hardening, a real app icon, and release-pipeline fixes.
10+
11+
### Added
12+
13+
- **App icon** — a real gello mark (three kanban columns on a dark tile)
14+
across macOS, Windows, and Linux, plus a matching web favicon, replacing
15+
the default Tauri placeholder (c0071).
16+
- **Frameless window on Windows/Linux** — custom title-bar chrome with
17+
drawn minimize/maximize/close controls; macOS keeps its native traffic
18+
lights (i0017).
19+
20+
### Fixed
21+
22+
- **Windows: quick capture created the card twice** on Cmd/Ctrl+Enter — now
23+
submits once (i0016).
24+
- **Windows: the title bar showed the full path** instead of the project
25+
folder name (i0018).
26+
- **Windows: the project picker** now shows the short project name (i0019)
27+
and never surfaces the internal `.gello` folder in recent paths (i0020);
28+
general project-picker robustness fixes.
29+
- **Windows: card files with CRLF/BOM line endings** now parse correctly.
30+
- **Pasting an image into the "report issue" popup** now works, saving the
31+
image under the new issue and linking it at the correct path (i0022).
32+
33+
### Changed
34+
35+
- **Release workflow** now cuts a single GitHub release per tag instead of
36+
racing the build matrix into duplicate releases (i0021).
37+
38+
## [0.1.0]
39+
40+
Initial release — Markdown-native Kanban board (Tauri + React): the `.gello/`
41+
file tree as the source of truth, drag-and-drop board, card detail, live file
42+
sync, per-column sorting, card types, and multi-project support.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gello",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gello"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "gello",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"identifier": "com.stephan.gello",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)