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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,33 @@ separately under `connector-v*` tags.

## [Unreleased]

The macOS desktop app is released separately under `desktop-v*` tags; the
entries below marked **(desktop)** ship in `desktop-v0.1.1`.

### Added
- **iOS: channel management.** The native client gained a members sheet, a
channel settings sheet, and the Viewboards surface (plan / cost / sessions /
audit / activity), bringing it in line with the web client.
- **Bot creation parity.** Creating a bot now follows the same onboarding flow
on web, macOS and iOS instead of three divergent paths.
- **(desktop) "Open in …" split button.** The workspace opener collapses into a
split button with per-app tiles (VS Code / Cursor / Zed / JetBrains / Finder)
rather than a flat list.
- **Landing page: a client section.** `website/` now documents all four clients
— Web, macOS, iOS, Android — with download and web-app entry points surfaced
in the hero and at the top of the README.

### Fixed
- **(desktop) Connector restarts dropped `--config`.** A restarted connector
daemon came back up without its config file, silently losing its configured
workspace roots and adapter settings.
- **(desktop) Onboarding is now zero-prep** — it creates the workspace
directories itself instead of failing when they don't already exist.
- **Bot token minting for opencode.** The gateway now resolves the opencode
adapter before minting an Agent Bridge token, so token creation no longer
succeeds against an unresolved adapter.
- **iOS: stuck touch input and runaway auto-scroll** in the chat view.

### Changed (breaking, security defaults)
- **`OPEN_REGISTRATION` now defaults to `false`** — public self-service sign-up
(`POST /auth/register`) is disabled unless explicitly enabled. Existing
Expand Down
2 changes: 1 addition & 1 deletion apps/macos/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cheers-macos",
"private": true,
"version": "0.1.0",
"version": "0.1.1",
"description": "Cheers desktop shell for macOS (Tauri): hosts the web frontend and manages local connector daemons.",
"scripts": {
"tauri": "tauri",
Expand Down
2 changes: 1 addition & 1 deletion apps/macos/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 apps/macos/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cheers-desktop"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Cheers desktop shell for macOS: hosts the web frontend and manages local connector daemons."

Expand Down
2 changes: 1 addition & 1 deletion apps/macos/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": "Cheers",
"version": "0.1.0",
"version": "0.1.1",
"identifier": "com.tocheers.desktop",
"build": {
"beforeDevCommand": "npm --prefix ../../frontend run dev",
Expand Down
Loading