release v1.11.7
This commit is contained in:
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.11.7] - 2026-05-27
|
||||
|
||||
- Git: commit history now includes a branch graph and commit-row actions in the history modal (thanks to @ermanhavuc).
|
||||
- Desktop: added a launch-at-startup setting, and collapsed browser windows now keep their webview state.
|
||||
- UI/Localization: added Traditional Chinese interface translations (thanks to @Jia35).
|
||||
- Chat/Input: selecting an agent now switches to that agent's configured model, and malformed tool diffs no longer break chat rendering (thanks to @Adrian-Eckardt).
|
||||
- Sessions: inline session renaming no longer exits immediately after focus changes (thanks to @youfch).
|
||||
- Notes/Todos: completed todos stay at the end of the list, and the send-to-session dialog has a cleaner model picker (thanks to @kostazol, @rghamilton3).
|
||||
- Usage: added a setting to hide prediction rows on usage cards (thanks to @ermanhavuc).
|
||||
- VSCode: restored live streaming in the extension.
|
||||
|
||||
## [1.11.6] - 2026-05-25
|
||||
|
||||
- Settings/Plugins: added a Plugins page for managing opencode plugins, with npm update checks and user/project scopes (thanks to @Quat3rnion).
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||
[](https://discord.gg/ZYRSdnwwKA)
|
||||
[](https://ko-fi.com/G2G41SAWNS)
|
||||
|
||||
> [!IMPORTANT]
|
||||
> 🏖️ I’m on vacation from 28 May to 02 Jun. All issues and PRs will continue being reviewed after that. Thanks for the patience.
|
||||
|
||||
## **OpenCode, everywhere.** Desktop. Browser. Phone.
|
||||
|
||||
### A rich interface for [OpenCode](https://opencode.ai). Review diffs, manage agents, run dev servers, and keep the big picture while your AI codes.
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openchamber-monorepo",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/desktop",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"desktopPrerequisites": [
|
||||
|
||||
Generated
+1
-1
@@ -2684,7 +2684,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.11.6"
|
||||
version = "1.11.7"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64 0.22.1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.11.6"
|
||||
version = "1.11.7"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
||||
"productName": "OpenChamber",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"identifier": "ai.opencode.openchamber",
|
||||
"build": {
|
||||
"beforeDevCommand": "node ./scripts/dev-web-server.mjs",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/electron",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"private": true,
|
||||
"description": "Electron desktop runtime for OpenChamber",
|
||||
"author": "OpenChamber",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/ui",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/main.tsx",
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
## [1.11.7] - 2026-05-27
|
||||
|
||||
- Chat/Input: selecting an agent now switches to that agent's configured model, and malformed tool diffs no longer break chat rendering (thanks to @Adrian-Eckardt).
|
||||
- Usage: added a setting to hide prediction rows on usage cards (thanks to @ermanhavuc).
|
||||
- Reliability/Streaming: restored live streaming in the extension.
|
||||
|
||||
## [1.11.6] - 2026-05-25
|
||||
|
||||
- Settings/Plugins: added a Plugins page for managing opencode plugins, with npm update checks and user/project scopes (thanks to @Quat3rnion).
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "openchamber",
|
||||
"displayName": "OpenChamber",
|
||||
"description": "AI coding assistant powered by OpenCode",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"publisher": "fedaykindev",
|
||||
"private": true,
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/web",
|
||||
"version": "1.11.6",
|
||||
"version": "1.11.7",
|
||||
"private": false,
|
||||
"type": "module",
|
||||
"main": "./server/index.js",
|
||||
|
||||
Reference in New Issue
Block a user