Rename updateLog.ts

This commit is contained in:
kwaroran
2024-01-15 13:01:28 +09:00
parent 31724901d2
commit 5239423582
2 changed files with 1 additions and 1 deletions

26
src/etc/patchNote.ts Normal file
View File

@@ -0,0 +1,26 @@
export const patchNote = {
version: "1.75",
content:
`
# Update 1.75
- Added @@move_top and @@move_bottom in regex script
- Added @@end, @@assistant, @@user, @@system
- depercated @@@end, @@@assistant, @@@user, @@@system for consistency
- Use newly added two @ version instead
- deprecated commands could be removed in future update
- Added {{br}}, used for line break
- sendChat error message changed
- fix AWS claude (by @bangonicdd)
- fix TTS replace error when empty string
`
}
export function getPatchNote(version: string){
if(patchNote.version.split(".")[1] === version.split(".")[1] && patchNote.version.split(".")[0] === version.split(".")[0]){
return patchNote
}
return {
version: version.split(".")[0] + "." + version.split(".")[1],
content: ""
}
}