Skip to content

Commit e5787d8

Browse files
authored
Merge pull request LykosAI#1201 from ionite34/backport-escape-fix
backport escape sequence fix in inference prompts & shoutout chagenlog
2 parents ab0cf39 + 53c4e87 commit e5787d8

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
2020
- Updated gfx110X Windows ROCm nightly index - thanks to @NeuralFault!
2121
- Updated ComfyUI-Zluda install to more closely match the author's intended installation method - thanks to @NeuralFault!
2222
- Updated Forge Classic installs/updates to use the upstream install script for better version compatibility with torch/sage/triton/nunchaku
23+
- Backslashes can now be escaped in Inference prompts via `\\`
2324
### Fixed
2425
- Fixed [#1541](https://github.com/LykosAI/StabilityMatrix/issues/1541), [#1518](https://github.com/LykosAI/StabilityMatrix/issues/1518), [#1513](https://github.com/LykosAI/StabilityMatrix/issues/1513), [#1488](https://github.com/LykosAI/StabilityMatrix/issues/1488) - Forge Neo update breaking things
2526
- Fixed [#1529](https://github.com/LykosAI/StabilityMatrix/issues/1529) - "Selected commit is null" error when installing packages and rate limited by GitHub
@@ -30,6 +31,11 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
3031
- Fixed [#1476](https://github.com/LykosAI/StabilityMatrix/issues/1476) - Incorrect shared output folder for Forge Classic/Neo
3132
- Fixed [#1466](https://github.com/LykosAI/StabilityMatrix/issues/1466) - crash after moving portable install
3233
- Fixed [#1445](https://github.com/LykosAI/StabilityMatrix/issues/1445) - Linux app updates not actually updating - thanks to @NeuralFault!
34+
### Supporters
35+
#### 🌟 Visionaries
36+
To our stellar Visionaries: **Waterclouds**, **JungleDragon**, **bluepopsicle**, **Bob S**, and **whudunit**! Your generosity keeps this project thriving and gives us the confidence to tackle the big challenges. Thank you for being the foundation that makes it all possible!
37+
#### 🚀 Pioneers
38+
Shoutout to our incredible Pioneer crew for keeping the momentum going! Thank you to: **Szir777**, **Noah M**, **[USA]TechDude**, **Thom**, **SeraphOfSalem**, **Desert Viber**, **Adam**, **Droolguy**, **ACTUALLY_the_Real_Willem_Dafoe**, **takyamtom**, **robek**, **Ghislain G**, **Phil R**, **Tundra Everquill**, and a warm welcome to our newest Pioneers: **Andrew B**, **snotty**, **Miguel A**, and **SinthCore**!
3339

3440
## v2.15.5
3541
### Added

StabilityMatrix.Avalonia/Assets/ImagePrompt.tmLanguage.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"name": "constant.character.escape.prompt"
2727
}
2828
},
29-
"end": "[-+.!(){}\\[\\]<\\>:]",
29+
"end": "[-+.!(){}\\[\\]<\\>:|\\\\]",
3030
"endCaptures": {
3131
"0": {
3232
"name": "constant.character.escape.target.prompt"
@@ -35,7 +35,7 @@
3535
"name": "meta.structure.escape.prompt",
3636
"patterns": [
3737
{
38-
"match": "[^-+.!(){}\\[\\]<\\>:]",
38+
"match": "[^-+.!(){}\\[\\]<\\>:|\\\\]",
3939
"name": "invalid.illegal.escape.prompt"
4040
}
4141
]
@@ -147,7 +147,7 @@
147147
"4": {
148148
"name": "punctuation.separator.variable.prompt"
149149
},
150-
"5" : {
150+
"5": {
151151
"name": "constant.numeric"
152152
}
153153
}
@@ -214,7 +214,7 @@
214214
"match": "[^#,:\\[\\]\\(\\)\\<\\> \\\\]+",
215215
"name": "meta.embedded"
216216
},
217-
"invalid_reserved" : {
217+
"invalid_reserved": {
218218
"name": "invalid.illegal.reserved.prompt",
219219
"patterns": [
220220
{

0 commit comments

Comments
 (0)