diff --git a/backend/apps/help/changelog.py b/backend/apps/help/changelog.py index eac75fa6..4c1f2ef1 100644 --- a/backend/apps/help/changelog.py +++ b/backend/apps/help/changelog.py @@ -22,18 +22,20 @@ P_RELEASES: List[ReleaseNote] = [ # GitHub body AND the Help agent's context, so a line written for a planned feature becomes the # agent confidently describing something that does not exist. ReleaseNote( - version="1.7.10-exp.1", + version="1.7.10-exp.2", headline="Browser research follows links instead of guessing, and long runs finish what they start.", highlights=[ "A browsing task that spans several pages now actually walks them. Asking an agent to start somewhere and follow links through to another page no longer answers from the first page alone.", "Long jobs hold together. A run that reads, edits and re-runs tests over a hundred steps keeps its place and finishes with the detail intact.", "Panning the canvas no longer snags when the pointer crosses Settings or the Marketplace, and scrolling a settings row scrolls the row instead of dragging the whole board.", + "A board full of streaming agents stays responsive. Each card now watches only the line of text it paints instead of every character of the reply.", ], fixes=[ "The dictation notice no longer claims the fn key is broken when you simply have not pressed a key yet. It only says so once there is real evidence the key is not getting through.", "Text boxes inside agent cards are readable in light mode again. The free text field on a question could previously render dark on dark.", "A blocked or refused request no longer leaves the chat unusable, and the provider's wording is never stored as if the agent had said it.", "If security software quarantines the bundled agent runtime, the app puts it back itself instead of leaving you to find the file.", + "A message typed while an agent is still working now says it is waiting, and tells you that Stop sends it straight away, instead of sitting there looking ignored.", ], ), ReleaseNote( diff --git a/electron/package-lock.json b/electron/package-lock.json index aea26e51..f9f27f16 100644 --- a/electron/package-lock.json +++ b/electron/package-lock.json @@ -1,12 +1,12 @@ { "name": "openswarm", - "version": "1.7.10-exp.1", + "version": "1.7.10-exp.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "openswarm", - "version": "1.7.10-exp.1", + "version": "1.7.10-exp.2", "hasInstallScript": true, "license": "AGPL-3.0-only", "dependencies": { diff --git a/electron/package.json b/electron/package.json index 1756ce7b..ec8a50ba 100644 --- a/electron/package.json +++ b/electron/package.json @@ -1,6 +1,6 @@ { "name": "openswarm", - "version": "1.7.10-exp.1", + "version": "1.7.10-exp.2", "license": "AGPL-3.0-only", "description": "OpenSwarm \u2014 AI Agent Orchestrator", "author": "openswarm-ai",