mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-08-29 01:59:16 +02:00
0.37.1
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -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"}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
__all__ = ["VERSION"]
|
||||
|
||||
VERSION = "0.37.0"
|
||||
VERSION = "0.37.1"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "talemate_frontend",
|
||||
"version": "0.37.0",
|
||||
"version": "0.37.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
||||
@@ -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": [
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user