release v1.7.2
This commit is contained in:
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.7.2] - 2026-02-20
|
||||
|
||||
- Chat: question prompts now guide you to unanswered items before submit, making tool-question flows faster.
|
||||
- Chat: fixed auto-send queue to wait for the active session to be idle before sending, reducing misfires during agent messages.
|
||||
- Chat: improved streaming activity rendering and session attention indicators, so active progress and unread signals stay more consistent.
|
||||
- UI: added Plan view in the context sidebar panel for quicker access to plan content while you work (thanks to @nelsonPires5).
|
||||
- Settings: model variant options now refresh correctly in draft/new-session flows, avoiding stale selections.
|
||||
- Reliability: provider auth failures now show clearer re-auth guidance when tokens expire, making recovery faster (thanks to @yulia-ivashko).
|
||||
|
||||
|
||||
## [1.7.1] - 2026-02-18
|
||||
|
||||
- Chat: slash commands now follow server command semantics (including multiline arguments), so command behavior is more consistent with OpenCode CLI.
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openchamber-monorepo",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/desktop",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"desktopPrerequisites": [
|
||||
|
||||
Generated
+1
-1
@@ -2670,7 +2670,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.7.1"
|
||||
version = "1.7.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64 0.22.1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.7.1"
|
||||
version = "1.7.2"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
||||
"productName": "OpenChamber",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"identifier": "ai.opencode.openchamber",
|
||||
"build": {
|
||||
"beforeDevCommand": "node ./scripts/dev-web-server.mjs",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/ui",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/main.tsx",
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
## [1.7.2] - 2026-02-20
|
||||
|
||||
- Chat: question prompts now guide you to unanswered items before submit, making tool-question flows faster.
|
||||
- Chat: fixed auto-send queue to wait for the active session to be idle before sending, reducing misfires during agent messages.
|
||||
- Chat: improved streaming activity rendering and session attention indicators, so active progress and unread signals stay more consistent.
|
||||
- UI: added Plan view in the context sidebar panel for quicker access to plan content while you work (thanks to @nelsonPires5).
|
||||
- Settings: model variant options now refresh correctly in draft/new-session flows, avoiding stale selections.
|
||||
- Reliability: provider auth failures now show clearer re-auth guidance when tokens expire, making recovery faster (thanks to @yulia-ivashko).
|
||||
|
||||
## [1.7.1] - 2026-02-18
|
||||
|
||||
- Chat: slash commands now follow server command semantics (including multiline arguments), so command behavior is more consistent with OpenCode CLI.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "openchamber",
|
||||
"displayName": "OpenChamber",
|
||||
"description": "AI coding assistant powered by OpenCode",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"publisher": "fedaykindev",
|
||||
"private": true,
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/web",
|
||||
"version": "1.7.1",
|
||||
"version": "1.7.2",
|
||||
"private": false,
|
||||
"type": "module",
|
||||
"main": "./server/index.js",
|
||||
|
||||
Reference in New Issue
Block a user