Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions docs/release-notes/v1.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Quill v1.1.1

**Two fixes from live use.**

A small patch on top of 1.1.0, both straight from real sessions: resolving a comment now actually clears its highlight, and closing the window with unsaved changes reliably prompts to save.

## Fixes

- **Resolving a comment clears its highlight.** Previously, resolving a comment could leave the in-text highlight behind — most visibly after Claude edited the commented span with track changes and those changes were accepted, since the freshly-inserted text inherited the comment mark. Resolving now strips the comment mark outright, so the text goes plain; unresolving restores the highlight over the original range.
- **Closing with unsaved changes prompts to save.** Hardened the window-close path so clicking the red close button on a document with unsaved changes reliably brings up the Save / Don't Save / Cancel dialog instead of appearing to do nothing.

Documents and sidecars remain fully compatible with every previous release in both directions.

## Install

| Platform | Asset |
| --------------------- | --------------- |
| macOS (Apple Silicon) | `…_aarch64.dmg` |
| macOS (Intel) | `…_x64.dmg` |

Builds are **unsigned**: right-click **Quill.app** → **Open** → **Open** on first launch.

The `@claude` features require the [Claude Code](https://claude.com/claude-code) CLI on the same machine. See the [User Guide](https://github.com/sam-powers/quill/blob/main/docs/USER_GUIDE.md) for a walkthrough.

## Known limitations

- macOS only for now. The `@claude` integration finds the Claude CLI via Unix paths; rather than ship a partial experience, Windows and Linux installers are deferred (both platforms can [build from source](https://github.com/sam-powers/quill#building-from-source)).
- No code signing yet (Gatekeeper warning above).
- Single document per window; no multi-user collaboration or cloud sync.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quill",
"private": true,
"version": "1.1.0",
"version": "1.1.1",
"description": "The document editor that can hold a conversation — tracked changes, inline comments, and Claude replies for plain Markdown files.",
"author": "Sam Powers <samueldarinpowers@gmail.com>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quill"
version = "1.1.0"
version = "1.1.1"
description = "The document editor that can hold a conversation — tracked changes, inline comments, and Claude replies for plain Markdown files."
authors = ["Sam Powers <samueldarinpowers@gmail.com>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Quill",
"version": "1.1.0",
"version": "1.1.1",
"identifier": "io.github.sam-powers.quill",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down
Loading