Skip to content

Commit 00d4e5b

Browse files
committed
Release v0.0.11
## What's New in v0.0.11 ### Changes - Renamed app from Agents to 1Code - Fixed appId to dev.21st.agents for auto-update compatibility - Prevent todo list flickering and improve streaming UX - Handle stale lock files from crashed instances - Show Open PR button when no uncommitted changes - Improved auto-update UX
1 parent f0c51dc commit 00d4e5b

35 files changed

Lines changed: 651 additions & 569 deletions

README.md

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,53 @@
11
# 1Code
22

3-
Best UI for Claude Code with Local and Remote agent execution.
3+
Best UI for Claude Code with local and remote agent execution.
44

55
By [21st.dev](https://21st.dev)
66

7+
## Features
8+
9+
- **Plan & Agent Modes** - Read-only analysis or full code execution permissions
10+
- **Project Management** - Link local folders with automatic Git remote detection
11+
- **Real-time Tool Execution** - See bash commands, file edits, and web searches as they happen
12+
- **Git Worktree Isolation** - Each chat session runs in its own isolated worktree
13+
- **Integrated Terminal** - Full terminal access within the app
14+
- **Change Tracking** - Visual diffs and PR management
15+
16+
## Installation
17+
18+
Download the latest release for your platform from the [Releases](https://github.com/21st-dev/21st/releases) page.
19+
20+
- **macOS**: `.dmg` (Intel & Apple Silicon)
21+
- **Windows**: `.exe` installer or portable
22+
- **Linux**: `.AppImage` or `.deb`
23+
24+
## Development
25+
26+
### Prerequisites
27+
28+
- [Bun](https://bun.sh) package manager
29+
- Python (for native module building)
30+
- Xcode Command Line Tools (macOS)
31+
32+
### Setup
33+
34+
```bash
35+
cd apps/desktop
36+
bun install
37+
bun run dev
38+
```
39+
40+
### Scripts
41+
42+
| Command | Description |
43+
|---------|-------------|
44+
| `bun run dev` | Start with hot reload |
45+
| `bun run build` | Compile TypeScript |
46+
| `bun run package` | Package for current platform |
47+
| `bun run package:mac` | Build macOS (DMG + ZIP) |
48+
| `bun run package:win` | Build Windows |
49+
| `bun run package:linux` | Build Linux |
50+
751
## Feedback & Community
852

953
Join our [Discord](https://discord.gg/Qx4rFunqvY) for support and discussions.

bun.lock

Lines changed: 3 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

electron.vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
plugins: [
1010
externalizeDepsPlugin({
1111
// Don't externalize these - bundle them instead
12-
exclude: ["superjson", "trpc-electron"],
12+
exclude: ["superjson", "trpc-electron", "gray-matter"],
1313
}),
1414
],
1515
build: {

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "21st-desktop",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"private": true,
5-
"description": "21st Agents - Local-First Desktop Application",
5+
"description": "1Code - UI for parallel work with AI agents",
66
"author": "21st.dev",
77
"main": "out/main/index.js",
88
"scripts": {
@@ -114,11 +114,11 @@
114114
},
115115
"build": {
116116
"appId": "dev.21st.agents",
117-
"productName": "Agents",
117+
"productName": "1Code",
118118
"npmRebuild": true,
119119
"protocols": [
120120
{
121-
"name": "21st Agents",
121+
"name": "1Code",
122122
"schemes": [
123123
"twentyfirst-agents"
124124
]

scripts/upload-release-wrangler.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ else
156156

157157
# Create release with assets (not draft, mark as latest)
158158
gh release create "$TAG" \
159-
--title "Agents $TAG" \
159+
--title "1Code $TAG" \
160160
--latest \
161161
--notes "## What's New
162162

0 commit comments

Comments
 (0)