Skip to content
Merged

sync #252

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
2 changes: 2 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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}"
Expand Down
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading