Skip to content

Commit 0c82566

Browse files
committed
chore(release): prepare v0.0.6
1 parent 9a0838f commit 0c82566

6 files changed

Lines changed: 111 additions & 9 deletions

File tree

.claude/commands/update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ git fetch origin && git rebase origin/${branch}
66

77
Where `${branch}` is the current git branch (run `git branch --show-current` to determine it).
88

9-
Report the result to the user.
9+
Report the result to the user.

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- CLI npm package name is `okcodes`. Install with `npm install -g okcodes`; the `okcode` binary name is unchanged.
1313

14+
## [0.0.6] - 2026-03-28
15+
16+
See [docs/releases/v0.0.6.md](docs/releases/v0.0.6.md) for full notes and [docs/releases/v0.0.6/assets.md](docs/releases/v0.0.6/assets.md) for release asset inventory.
17+
18+
### Added
19+
20+
- Add PR-specific actions to the git menu.
21+
- Add preview navigation, favorites, and encrypted environment persistence.
22+
- Add workspace search filters and CamelCase ranking.
23+
- Add YouTube player drawer with playlist slots.
24+
25+
### Changed
26+
27+
- Rework the OK Code landing page and simplify workspace search.
28+
- Redesign the plan sidebar and follow-up banner.
29+
- Restructure the PR review workspace layout.
30+
- Improve merge conflict guidance and error UX.
31+
- Require mac signing/notarization secrets during release builds.
32+
33+
### Fixed
34+
35+
- Harden git status fallback handling.
36+
- Fix right-panel exclusivity with preview open.
37+
- Resolve the encrypted env var merge-conflict path for current mainline.
38+
39+
### Removed
40+
41+
- Remove alpha branding from production surfaces.
42+
- Remove unsupported Spotify volume slider.
43+
1444
## [0.0.5] - 2026-03-28
1545

1646
See [docs/releases/v0.0.5.md](docs/releases/v0.0.5.md) for full notes and [docs/releases/v0.0.5/assets.md](docs/releases/v0.0.5/assets.md) for release asset inventory.
@@ -122,3 +152,4 @@ First public version tag. See [docs/releases/v0.0.1.md](docs/releases/v0.0.1.md)
122152
[0.0.2]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.2
123153
[0.0.1]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.1
124154
[0.0.5]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.5
155+
[0.0.6]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.6

apps/web/src/components/chat/ChatHeader.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ export const ChatHeader = memo(function ChatHeader({
125125
onImportScripts={onImportProjectScripts}
126126
/>
127127
)}
128-
{activeProjectName && hasCodeViewerTabs && <OpenInPicker onToggleCodeViewer={onToggleCodeViewer} />}
128+
{activeProjectName && hasCodeViewerTabs && (
129+
<OpenInPicker onToggleCodeViewer={onToggleCodeViewer} />
130+
)}
129131
{!isMobileCompanion && activeProjectName && (
130132
<GitActionsControl gitCwd={gitCwd} activeThreadId={activeThreadId} />
131133
)}

docs/releases/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
Human-readable notes and asset inventories for tagged releases.
44

5-
| Version | Notes | Assets |
6-
| ------------------ | ------------------------------------------- | ---------------------------- |
7-
| [0.0.5](v0.0.5.md) | Git workflows, PR review, mobile shell | [manifest](v0.0.5/assets.md) |
8-
| [0.0.4](v0.0.4.md) | PR review, desktop preview, release tooling | [manifest](v0.0.4/assets.md) |
9-
| [0.0.3](v0.0.3.md) | Onboarding, code viewer, PRs | [manifest](v0.0.3/assets.md) |
10-
| [0.0.2](v0.0.2.md) | Patch release | [manifest](v0.0.2/assets.md) |
11-
| [0.0.1](v0.0.1.md) | First public tag | [manifest](v0.0.1/assets.md) |
5+
| Version | Notes | Assets |
6+
| ------------------ | ---------------------------------------------------------- | ---------------------------- |
7+
| [0.0.6](v0.0.6.md) | PR + preview polish, env persistence, search, landing page | [manifest](v0.0.6/assets.md) |
8+
| [0.0.5](v0.0.5.md) | Git workflows, PR review, mobile shell | [manifest](v0.0.5/assets.md) |
9+
| [0.0.4](v0.0.4.md) | PR review, desktop preview, release tooling | [manifest](v0.0.4/assets.md) |
10+
| [0.0.3](v0.0.3.md) | Onboarding, code viewer, PRs | [manifest](v0.0.3/assets.md) |
11+
| [0.0.2](v0.0.2.md) | Patch release | [manifest](v0.0.2/assets.md) |
12+
| [0.0.1](v0.0.1.md) | First public tag | [manifest](v0.0.1/assets.md) |
1213

1314
The repository root [CHANGELOG.md](../../CHANGELOG.md) summarizes versions in Keep a Changelog form.
1415

docs/releases/v0.0.6.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# OK Code v0.0.6
2+
3+
**Date:** 2026-03-28
4+
**Tag:** [`v0.0.6`](https://github.com/OpenKnots/okcode/releases/tag/v0.0.6)
5+
6+
## Summary
7+
8+
OK Code v0.0.6 sharpens the core workspace with a redesigned landing page, stronger PR review and merge-conflict UX, preview navigation and encrypted environment persistence, new git/PR actions, and better search and planning flows.
9+
10+
## Highlights
11+
12+
- **Add PR-specific actions to the git menu.**
13+
- **Add preview navigation, favorites, and encrypted environment persistence.**
14+
- **Add workspace search filters and CamelCase ranking.**
15+
- **Rework the OK Code landing page and simplify workspace search.**
16+
- **Redesign the plan sidebar and follow-up banner.**
17+
- **Restructure the PR review workspace layout.**
18+
- **Improve merge conflict guidance and error UX.**
19+
- **Require signed + notarized macOS release prerequisites.**
20+
21+
## Breaking changes
22+
23+
- None.
24+
25+
## Upgrade and install
26+
27+
- **CLI:** `npm install -g okcodes@0.0.6` (after the package is published to npm manually).
28+
- **Desktop:** Download from [GitHub Releases](https://github.com/OpenKnots/okcode/releases/tag/v0.0.6). Filenames are listed in [assets.md](v0.0.6/assets.md).
29+
30+
## Known limitations
31+
32+
OK Code remains early work in progress. Expect rough edges around session recovery, streaming edge cases, and platform-specific desktop behavior. Report issues on GitHub.

docs/releases/v0.0.6/assets.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# v0.0.6 — Release assets (manifest)
2+
3+
Binaries are **not** stored in this git repository; they are attached to the [GitHub Release for `v0.0.6`](https://github.com/OpenKnots/okcode/releases/tag/v0.0.6) by the [Release Desktop workflow](../../.github/workflows/release.yml).
4+
5+
The GitHub Release also includes **documentation attachments** (same content as in-repo, stable filenames for download):
6+
7+
| File | Source in repo |
8+
| --------------------------- | ------------------------------------- |
9+
| `okcode-CHANGELOG.md` | [CHANGELOG.md](../../../CHANGELOG.md) |
10+
| `okcode-RELEASE-NOTES.md` | [v0.0.6.md](../v0.0.6.md) |
11+
| `okcode-ASSETS-MANIFEST.md` | This file |
12+
13+
After the workflow completes, expect **installer and updater** artifacts similar to the following (exact names may include the product name `OK Code` and version `0.0.6`).
14+
15+
## Desktop installers and payloads
16+
17+
| Platform | Kind | Typical pattern |
18+
| ------------------- | -------------- | --------------- |
19+
| macOS Apple Silicon | DMG | `*.dmg` (arm64) |
20+
| macOS Intel | DMG | `*.dmg` (x64) |
21+
| macOS | ZIP (updater) | `*.zip` |
22+
| Linux x64 | AppImage | `*.AppImage` |
23+
| Windows x64 | NSIS installer | `*.exe` |
24+
25+
## Electron updater metadata
26+
27+
| File | Purpose |
28+
| ------------------ | --------------------------------------------------------- |
29+
| `latest-mac.yml` | macOS update manifest (merged from per-arch builds in CI) |
30+
| `latest-linux.yml` | Linux update manifest |
31+
| `latest.yml` | Windows update manifest |
32+
| `*.blockmap` | Differential download block maps |
33+
34+
## Checksums
35+
36+
SHA-256 checksums are not committed here; verify downloads via GitHub's release UI or `gh release download` if you use the GitHub CLI.

0 commit comments

Comments
 (0)