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
7 changes: 0 additions & 7 deletions .announcements/git-no-remote.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/background-subagent-resume.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/bump-bundled-agents.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/git-no-remote-support.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hide-inert-slash-commands.md

This file was deleted.

17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.44.0

### Minor Changes

- [#896](https://github.com/dohooo/helmor/pull/896) [`d172b5b`](https://github.com/dohooo/helmor/commit/d172b5bbb37270f3e9bb2eb8251011d057076b91) Thanks [@natllian](https://github.com/natllian)! - Support local git repositories that have no remote, including worktree workspaces.

- Open a git repo with no remote configured — branches, diffs, commits, and worktrees all work, with the default branch read from local HEAD.
- Push, pull, fetch, pull requests, and the forge Connect prompts are hidden for these local-only repos; repo settings show a "Local-only repository" notice and a local-branch picker.

### Patch Changes

- [#897](https://github.com/dohooo/helmor/pull/897) [`fe6108d`](https://github.com/dohooo/helmor/commit/fe6108d1ca42b7b637234e698c25b83aae62da7a) Thanks [@natllian](https://github.com/natllian)! - Fix Claude turns ending prematurely after a subagent is moved to the background — the main agent now stays paused and resumes once the background task completes.

- [#900](https://github.com/dohooo/helmor/pull/900) [`ba5cee8`](https://github.com/dohooo/helmor/commit/ba5cee89b44ce0f3edf98dcdf4da561c9bcd3b7b) Thanks [@dohooo](https://github.com/dohooo)! - Update the bundled Claude Code, Cursor, OpenCode, and Kimi coding agents to their latest versions.

- [#898](https://github.com/dohooo/helmor/pull/898) [`ebf63e4`](https://github.com/dohooo/helmor/commit/ebf63e4c534bf1f9a74c1235f7161d1b3436b09c) Thanks [@natllian](https://github.com/natllian)! - Hide the `/compact` (Claude) and `/clear` (all agents) slash commands, which showed up in the command menu but did nothing when run.

## 0.43.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "helmor",
"description": "The local-first IDE for coding agent orchestration.",
"private": true,
"version": "0.43.0",
"version": "0.44.0",
"packageManager": "bun@1.3.2",
"type": "module",
"workspaces": [
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 = "helmor"
version = "0.43.0"
version = "0.44.0"
description = "The local-first IDE for coding agent orchestration."
authors = ["Caspian Zhao", "Nathan Lian"]
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": "Helmor",
"version": "0.43.0",
"version": "0.44.0",
"identifier": "ai.helmor.desktop",
"build": {
"beforeDevCommand": "bun x vite",
Expand Down
8 changes: 8 additions & 0 deletions src/features/announcements/release-announcement-catalog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"_readme": "AUTO-GENERATED from .announcements during `bun run release:version`. Each item is one released version's in-app announcement. Do not edit released entries by hand.",
"items": [
{
"releaseVersion": "0.44.0",
"items": [
{
"text": "Open project now works on local git repositories with no remote."
}
]
},
{
"releaseVersion": "0.43.0",
"items": [
Expand Down
Loading