This commit is contained in:
vegu-ai-tools
2026-05-21 16:04:18 +03:00
parent 1934594aa3
commit d4573303c9
8 changed files with 29 additions and 6 deletions

View File

@@ -2,6 +2,14 @@
_Auto-generated. Do not edit by hand._
## 0.37.1
### Bug Fixes
**Scene History**
- Fixed a crash when generating dialogue in long scenes that combine layered history with pre-established history entries. The scene could become unplayable until its layered history was manually edited.
## 0.37.0
### Upgrade Notes

View File

@@ -1,3 +1,6 @@
0.37.1:
fixes:
- "Scene History: Fixed a crash when generating dialogue in long scenes that combine layered history with pre-established (static) history entries. The affected scene could become unplayable until its layered history was manually edited."
0.37.0:
features:
- "System Prompt Template Variable: Added {{ system_prompt }} template variable for system prompt overrides. Use it to include the default system prompt within a custom override, at both the app and client level."

View File

@@ -1,6 +1,6 @@
[project]
name = "talemate"
version = "0.37.0"
version = "0.37.1"
description = "AI-backed roleplay and narrative tools"
authors = [{name = "VeguAITools"}]
license = {text = "GNU Affero General Public License v3.0"}

View File

@@ -1,3 +1,3 @@
__all__ = ["VERSION"]
VERSION = "0.37.0"
VERSION = "0.37.1"

View File

@@ -1,6 +1,6 @@
{
"name": "talemate_frontend",
"version": "0.37.0",
"version": "0.37.1",
"private": true,
"type": "module",
"scripts": {

View File

@@ -95,8 +95,20 @@ export default {
data() {
return {
dialog: false,
selected: "0.37.0",
selected: "0.37.1",
whatsNew: [
{
version: '0.37.1',
items: [
{
title: "Bugfix release",
description: "Fixes a crash affecting some long scenes that use layered history.",
items: [
"Fixed a crash when generating dialogue in long scenes that combine layered history with pre-established history entries. The scene could become unplayable until its layered history was manually edited."
]
}
]
},
{
"version": "0.37.0",
"items": [

View File

@@ -1,4 +1,4 @@
export const FRONTEND_VERSION = "0.37.0";
export const FRONTEND_VERSION = "0.37.1";
export function versionsMatch(backendVersion) {
return FRONTEND_VERSION === backendVersion;

2
uv.lock generated
View File

@@ -5694,7 +5694,7 @@ wheels = [
[[package]]
name = "talemate"
version = "0.37.0"
version = "0.37.1"
source = { editable = "." }
dependencies = [
{ name = "aiofiles" },