From bf43733fae7ec49e3036a830772f697cbee19812 Mon Sep 17 00:00:00 2001 From: StableLlama Date: Thu, 7 May 2026 19:10:15 +0200 Subject: [PATCH 1/2] Trying to fix GH release action --- .github/workflows/create-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 392dc72f..f7021935 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -61,6 +61,7 @@ jobs: pip install -e . pip install pyinstaller uvicorn - name: Set frontend package version + shell: bash run: | VERSION="${{ env.RELEASE_VERSION }}" VERSION_CLEAN="${VERSION#v}" @@ -159,6 +160,7 @@ jobs: pip install -e . pip install pyinstaller uvicorn - name: Set frontend package version + shell: bash run: | VERSION="${{ env.RELEASE_VERSION }}" VERSION_CLEAN="${VERSION#v}" From 2084ccb9a049b7d3a73bce5b78b3455f63d9418c Mon Sep 17 00:00:00 2001 From: StableLlama Date: Thu, 7 May 2026 19:14:34 +0200 Subject: [PATCH 2/2] update chagelog Co-authored-by: Copilot --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31f5ef6c..9f00073b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [0.9.2] - 2026-05-07 + +### Added + +- Added undo support for writing-model interactions with a new LLM undo tool +- Added improved story-content tools: `read_story_content` now supports reading from the end of a story +- Added a `get_project_overview` default view that shows project notes more clearly + +### Changed + +- Improved LLM tool integration: `call_writing_llm` now accepts sourcebook entry context, is documented as stateless, and no longer exposes filenames to tools +- Refreshed chat context automatically when the user changes entries that an LLM function call previously looked up +- Improved toolbar responsiveness and undo/redo button styling +- Optimized startup experience and main editor auto-scroll behavior +- Improved Gemma 4 handling when the model is not thinking + +### Fixed + +- Fixed streaming content error messaging and WRITING stream failure handling +- Fixed diff view and mutation-tag display for multi-modification chat flows +- Fixed LLM replacement behavior and update chapter/story metadata handling +- Fixed stopping chat/LLM generation, including preserving edited text when stopping CHAPTER AI +- Fixed provider API key UI disabling, and removed gating that blocked the Debug button + +### Maintenance + +- Removed deprecated LLM tools and unneeded internal content payloads +- Cleaned up code, addressed lint warnings, and increased allowed zip package size + +## [0.9.1] - 2026-04-27 + +- fix the build system + ## [0.9.0] - 2026-04-27 ### Added